/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, 173 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 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 (44) QDP (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] (46) YES (47) QDP (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] (49) YES (50) QDP (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] (52) YES (53) QDP (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] (55) YES (56) QDP (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] (58) YES ---------------------------------------- (0) 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; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin 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 (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> 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; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; vv2 = findMax fm1; vv3 = findMin fm2; }; 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 b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } 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 "\(_,mid_elt2)->mid_elt2" is transformed to "mid_elt20 (_,mid_elt2) = mid_elt2; " The following Lambda expression "\(mid_key2,_)->mid_key2" is transformed to "mid_key20 (mid_key2,_) = mid_key2; " The following Lambda expression "\(mid_key1,_)->mid_key1" is transformed to "mid_key10 (mid_key1,_) = mid_key1; " The following Lambda expression "\(_,mid_elt1)->mid_elt1" is transformed to "mid_elt10 (_,mid_elt1) = mid_elt1; " 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 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; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap b a; 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 fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> 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; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (_,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (_,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,_) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,_) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; 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 b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin 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 a b -> (a,b); 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 :: (a -> b -> c -> c) -> c -> FiniteMap a b -> 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; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (_,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (_,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,_) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,_) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; 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 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 b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } 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; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap b a; 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 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> 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; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (_,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (_,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,_) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,_) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; 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 a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } 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 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; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r | key == del_key = glueBal fm_l fm_r; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = 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 vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; mid_elt10 (vyw,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (vyv,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,vyx) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,vyy) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; 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 vxv (Branch key_rl elt_rl vxw 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 vww fm_ll (Branch key_lr elt_lr vwx 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 vxx vxy vxz 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 vwy vwz vxu 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 vyu 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 vwv 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 vuv vuw vux vuy) = 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 vuz vvu vvv vvw) = 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 vzu vzv size vzw vzx) = size; } 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 wuy = gcd'2 x wuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wuy = x; gcd'1 wuz wvu wvv = gcd'0 wvu wvv; " "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; gcd'2 wvw wvx = gcd'0 wvw wvx; " 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 wvy wvz = gcd3 wvy wvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wuy = gcd'2 x wuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wuy = x; gcd'1 wuz wvu wvv = gcd'0 wvu wvv; ; gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; gcd'2 wvw wvx = gcd'0 wvw wvx; } ; " "gcd1 True wvy wvz = error []; gcd1 wwu wwv www = gcd0 wwv www; " "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; gcd2 wwx wwy wwz = gcd0 wwy wwz; " "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; gcd3 wxu wxv = gcd0 wxu wxv; " 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; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu 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 vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz 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 vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz 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 vxv (Branch key_rl elt_rl vxw 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 vww fm_ll (Branch key_lr elt_lr vwx 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 vxx vxy vxz 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 vwy vwz vxu 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 vyu 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 vwv 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 vxv (Branch key_rl elt_rl vxw 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 vww fm_ll (Branch key_lr elt_lr vwx 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 vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu 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 vyu 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 vwv 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; } ; " The following Function with conditions "glueBal EmptyFM fm2 = fm2; glueBal fm1 EmptyFM = fm1; glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { mid_elt1 = mid_elt10 vv2; ; mid_elt10 (vyw,mid_elt1) = mid_elt1; ; mid_elt2 = mid_elt20 vv3; ; mid_elt20 (vyv,mid_elt2) = mid_elt2; ; mid_key1 = mid_key10 vv2; ; mid_key10 (mid_key1,vyx) = mid_key1; ; mid_key2 = mid_key20 vv3; ; mid_key20 (mid_key2,vyy) = mid_key2; ; vv2 = findMax fm1; ; vv3 = findMin fm2; } ; " is transformed to "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; " "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; ; glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; ; mid_elt1 = mid_elt10 vv2; ; mid_elt10 (vyw,mid_elt1) = mid_elt1; ; mid_elt2 = mid_elt20 vv3; ; mid_elt20 (vyv,mid_elt2) = mid_elt2; ; mid_key1 = mid_key10 vv2; ; mid_key10 (mid_key1,vyx) = mid_key1; ; mid_key2 = mid_key20 vv3; ; mid_key20 (mid_key2,vyy) = mid_key2; ; vv2 = findMax fm1; ; vv3 = findMin fm2; } ; " "glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; " "glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; " The following Function with conditions "delFromFM EmptyFM del_key = emptyFM; delFromFM (Branch key elt size fm_l fm_r) del_key|del_key > keymkBalBranch key elt fm_l (delFromFM fm_r del_key)|del_key < keymkBalBranch key elt (delFromFM fm_l del_key) fm_r|key == del_keyglueBal fm_l fm_r; " is transformed to "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; " "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); " "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; " "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); " "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); " "delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; " ---------------------------------------- (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; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = 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 vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; mid_elt1 = mid_elt10 vv2; mid_elt10 (vyw,mid_elt1) = mid_elt1; mid_elt2 = mid_elt20 vv3; mid_elt20 (vyv,mid_elt2) = mid_elt2; mid_key1 = mid_key10 vv2; mid_key10 (mid_key1,vyx) = mid_key1; mid_key2 = mid_key20 vv3; mid_key20 (mid_key2,vyy) = mid_key2; vv2 = findMax fm1; vv3 = findMin fm2; }; glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; 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 = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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 vww fm_ll (Branch key_lr elt_lr vwx 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 vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu 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 vyu 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 vwv 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 vuv vuw vux vuy) = 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 vuz vvu vvv vvw) = 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 vzu vzv size vzw vzx) = size; } 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 wuy = gcd'2 x wuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wuy = x; gcd'1 wuz wvu wvv = gcd'0 wvu wvv; ; gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; gcd'2 wvw wvx = gcd'0 wvw wvx; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x wuy = x; gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; " 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 "reduce2Reduce1 wzw wzx x y True = error []; reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; " "reduce2D wzw wzx = gcd wzw wzx; " "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); " 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 vxv (Branch key_rl elt_rl vxw 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 vww fm_ll (Branch key_lr elt_lr vwx 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 vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu 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 vyu 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 vwv 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 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); " "mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); " "mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); " "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; " "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; " "mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; " "mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; " "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; " "mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; " "mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; " "mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); " "mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); " "mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); " "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L 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 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 vuv vuw vux vuy) = 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 vuz vvu vvv vvw) = 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_size xuw xux xuy = sizeFM xuw; " "mkBranchUnbox xuw xux xuy x = x; " "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xux xuy xux; " "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchRight_size xuw xux xuy = sizeFM xux; " "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xuy xuw; " "mkBranchBalance_ok xuw xux xuy = True; " 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 xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xvw xuz (1 + mkBranchLeft_size xvv xvw xuz + mkBranchRight_size xvv xvw xuz)) xvv xvw; " The bindings of the following Let/Where expression "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; ; glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; ; mid_elt1 = mid_elt10 vv2; ; mid_elt10 (vyw,mid_elt1) = mid_elt1; ; mid_elt2 = mid_elt20 vv3; ; mid_elt20 (vyv,mid_elt2) = mid_elt2; ; mid_key1 = mid_key10 vv2; ; mid_key10 (mid_key1,vyx) = mid_key1; ; mid_key2 = mid_key20 vv3; ; mid_key20 (mid_key2,vyy) = mid_key2; ; vv2 = findMax fm1; ; vv3 = findMin fm2; } " are unpacked to the following functions on top level "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; " "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; " "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); " "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; " "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; " "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); " "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); " "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; " "glueBal2Vv2 xvx xvy = findMax xvx; " "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); " "glueBal2Vv3 xvx xvy = findMin xvy; " "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; " 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 xvz = fst (findMax xvz); " 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 xwu = fst (findMin xwu); " ---------------------------------------- (12) 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; } delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = 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 vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; glueBal2Vv2 xvx xvy = findMax xvx; glueBal2Vv3 xvx xvy = findMin xvy; glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; 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 < 2); mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 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 xuw xux xuy = True; mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xuy xuw; mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); mkBranchLeft_size xuw xux xuy = sizeFM xuw; mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xvw xuz (1 + mkBranchLeft_size xvv xvw xuz + mkBranchRight_size xvv xvw xuz)) xvv xvw; mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xux xuy xux; mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); mkBranchRight_size xuw xux xuy = sizeFM xux; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); mkBranchUnbox xuw xux xuy x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vzu vzv size vzw vzx) = size; } 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); delFromFM4 EmptyFM del_key = emptyFM; delFromFM4 wzu wzv = delFromFM3 wzu wzv; deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); findMin (Branch key elt wuw fm_l wux) = 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 vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; glueBal fm1 fm2 = glueBal2 fm1 fm2; glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; glueBal2Vv2 xvx xvy = findMax xvx; glueBal2Vv3 xvx xvy = findMin xvy; glueBal3 fm1 EmptyFM = fm1; glueBal3 wxz wyu = glueBal2 wxz wyu; glueBal4 EmptyFM fm2 = fm2; glueBal4 wyw wyx = glueBal3 wyw wyx; 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 wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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))))))) wzy wzz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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))))))))))))) wzy wzz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wzy wzz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv 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)))))))))) wzy wzz fm_lr fm_r); mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuu; mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuv; 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 xuw xux xuy = True; mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xuy xuw; mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); mkBranchLeft_size xuw xux xuy = sizeFM xuw; mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xvw xuz (Pos (Succ Zero) + mkBranchLeft_size xvv xvw xuz + mkBranchRight_size xvv xvw xuz)) xvv xvw; mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xux xuy xux; mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); mkBranchRight_size xuw xux xuy = sizeFM xux; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); mkBranchUnbox xuw xux xuy x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vzu vzv size vzw vzx) = size; } 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.delFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.delFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];3768[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 5[label="",style="solid", color="burlywood", weight=3]; 3769[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10 -> 12[label="",style="dashed", color="red", weight=0]; 10[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (xwv4 > xwv30)",fontsize=16,color="magenta"];10 -> 13[label="",style="dashed", color="magenta", weight=3]; 10 -> 14[label="",style="dashed", color="magenta", weight=3]; 10 -> 15[label="",style="dashed", color="magenta", weight=3]; 10 -> 16[label="",style="dashed", color="magenta", weight=3]; 10 -> 17[label="",style="dashed", color="magenta", weight=3]; 10 -> 18[label="",style="dashed", color="magenta", weight=3]; 10 -> 19[label="",style="dashed", color="magenta", weight=3]; 11[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];13[label="xwv30",fontsize=16,color="green",shape="box"];14[label="xwv32",fontsize=16,color="green",shape="box"];15[label="xwv34",fontsize=16,color="green",shape="box"];16[label="xwv4",fontsize=16,color="green",shape="box"];17[label="xwv31",fontsize=16,color="green",shape="box"];18[label="xwv33",fontsize=16,color="green",shape="box"];19[label="xwv4 > xwv30",fontsize=16,color="blue",shape="box"];3770[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3770[label="",style="solid", color="blue", weight=9]; 3770 -> 20[label="",style="solid", color="blue", weight=3]; 3771[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 21[label="",style="solid", color="blue", weight=3]; 3772[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 22[label="",style="solid", color="blue", weight=3]; 3773[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 23[label="",style="solid", color="blue", weight=3]; 3774[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 24[label="",style="solid", color="blue", weight=3]; 3775[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 25[label="",style="solid", color="blue", weight=3]; 3776[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 26[label="",style="solid", color="blue", weight=3]; 3777[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 27[label="",style="solid", color="blue", weight=3]; 3778[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 28[label="",style="solid", color="blue", weight=3]; 3779[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 29[label="",style="solid", color="blue", weight=3]; 3780[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 30[label="",style="solid", color="blue", weight=3]; 3781[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 31[label="",style="solid", color="blue", weight=3]; 3782[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 32[label="",style="solid", color="blue", weight=3]; 3783[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 33[label="",style="solid", color="blue", weight=3]; 12[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 xwv19",fontsize=16,color="burlywood",shape="triangle"];3784[label="xwv19/False",fontsize=10,color="white",style="solid",shape="box"];12 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 34[label="",style="solid", color="burlywood", weight=3]; 3785[label="xwv19/True",fontsize=10,color="white",style="solid",shape="box"];12 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 35[label="",style="solid", color="burlywood", weight=3]; 20[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];20 -> 36[label="",style="solid", color="black", weight=3]; 21[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];21 -> 37[label="",style="solid", color="black", weight=3]; 22[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];22 -> 38[label="",style="solid", color="black", weight=3]; 23[label="xwv4 > xwv30",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 24[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];24 -> 40[label="",style="solid", color="black", weight=3]; 25[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];25 -> 41[label="",style="solid", color="black", weight=3]; 26[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];26 -> 42[label="",style="solid", color="black", weight=3]; 27[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="xwv4 > xwv30",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 False",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.delFromFM2 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 True",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 36 -> 180[label="",style="dashed", color="red", weight=0]; 36[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];36 -> 181[label="",style="dashed", color="magenta", weight=3]; 37 -> 180[label="",style="dashed", color="red", weight=0]; 37[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];37 -> 182[label="",style="dashed", color="magenta", weight=3]; 38 -> 180[label="",style="dashed", color="red", weight=0]; 38[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];38 -> 183[label="",style="dashed", color="magenta", weight=3]; 39 -> 180[label="",style="dashed", color="red", weight=0]; 39[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];39 -> 184[label="",style="dashed", color="magenta", weight=3]; 40 -> 180[label="",style="dashed", color="red", weight=0]; 40[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];40 -> 185[label="",style="dashed", color="magenta", weight=3]; 41 -> 180[label="",style="dashed", color="red", weight=0]; 41[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];41 -> 186[label="",style="dashed", color="magenta", weight=3]; 42 -> 180[label="",style="dashed", color="red", weight=0]; 42[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];42 -> 187[label="",style="dashed", color="magenta", weight=3]; 43 -> 180[label="",style="dashed", color="red", weight=0]; 43[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];43 -> 188[label="",style="dashed", color="magenta", weight=3]; 44 -> 180[label="",style="dashed", color="red", weight=0]; 44[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];44 -> 189[label="",style="dashed", color="magenta", weight=3]; 45 -> 180[label="",style="dashed", color="red", weight=0]; 45[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];45 -> 190[label="",style="dashed", color="magenta", weight=3]; 46 -> 180[label="",style="dashed", color="red", weight=0]; 46[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];46 -> 191[label="",style="dashed", color="magenta", weight=3]; 47 -> 180[label="",style="dashed", color="red", weight=0]; 47[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];47 -> 192[label="",style="dashed", color="magenta", weight=3]; 48 -> 180[label="",style="dashed", color="red", weight=0]; 48[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];48 -> 193[label="",style="dashed", color="magenta", weight=3]; 49 -> 180[label="",style="dashed", color="red", weight=0]; 49[label="compare xwv4 xwv30 == GT",fontsize=16,color="magenta"];49 -> 194[label="",style="dashed", color="magenta", weight=3]; 50 -> 67[label="",style="dashed", color="red", weight=0]; 50[label="FiniteMap.delFromFM1 xwv13 xwv14 xwv15 xwv16 xwv17 xwv18 (xwv18 < xwv13)",fontsize=16,color="magenta"];50 -> 68[label="",style="dashed", color="magenta", weight=3]; 50 -> 69[label="",style="dashed", color="magenta", weight=3]; 50 -> 70[label="",style="dashed", color="magenta", weight=3]; 50 -> 71[label="",style="dashed", color="magenta", weight=3]; 50 -> 72[label="",style="dashed", color="magenta", weight=3]; 50 -> 73[label="",style="dashed", color="magenta", weight=3]; 50 -> 74[label="",style="dashed", color="magenta", weight=3]; 51 -> 75[label="",style="dashed", color="red", weight=0]; 51[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 (FiniteMap.delFromFM xwv17 xwv18)",fontsize=16,color="magenta"];51 -> 76[label="",style="dashed", color="magenta", weight=3]; 181[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3786[label="xwv4/()",fontsize=10,color="white",style="solid",shape="box"];181 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 219[label="",style="solid", color="burlywood", weight=3]; 180[label="xwv38 == GT",fontsize=16,color="burlywood",shape="triangle"];3787[label="xwv38/LT",fontsize=10,color="white",style="solid",shape="box"];180 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 220[label="",style="solid", color="burlywood", weight=3]; 3788[label="xwv38/EQ",fontsize=10,color="white",style="solid",shape="box"];180 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 221[label="",style="solid", color="burlywood", weight=3]; 3789[label="xwv38/GT",fontsize=10,color="white",style="solid",shape="box"];180 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 222[label="",style="solid", color="burlywood", weight=3]; 182[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];182 -> 223[label="",style="solid", color="black", weight=3]; 183[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];183 -> 224[label="",style="solid", color="black", weight=3]; 184[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];184 -> 225[label="",style="solid", color="black", weight=3]; 185[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3790[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];185 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 226[label="",style="solid", color="burlywood", weight=3]; 3791[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];185 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 227[label="",style="solid", color="burlywood", weight=3]; 186[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];186 -> 228[label="",style="solid", color="black", weight=3]; 187[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3792[label="xwv4/xwv40 :% xwv41",fontsize=10,color="white",style="solid",shape="box"];187 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 229[label="",style="solid", color="burlywood", weight=3]; 188[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];188 -> 230[label="",style="solid", color="black", weight=3]; 189[label="compare xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3793[label="xwv4/Integer xwv40",fontsize=10,color="white",style="solid",shape="box"];189 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 231[label="",style="solid", color="burlywood", weight=3]; 190[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];190 -> 232[label="",style="solid", color="black", weight=3]; 191[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];191 -> 233[label="",style="solid", color="black", weight=3]; 192[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];192 -> 234[label="",style="solid", color="black", weight=3]; 193[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];193 -> 235[label="",style="solid", color="black", weight=3]; 194[label="compare xwv4 xwv30",fontsize=16,color="black",shape="triangle"];194 -> 236[label="",style="solid", color="black", weight=3]; 68[label="xwv18 < xwv13",fontsize=16,color="blue",shape="box"];3794[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 95[label="",style="solid", color="blue", weight=3]; 3795[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 96[label="",style="solid", color="blue", weight=3]; 3796[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 97[label="",style="solid", color="blue", weight=3]; 3797[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 98[label="",style="solid", color="blue", weight=3]; 3798[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 99[label="",style="solid", color="blue", weight=3]; 3799[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 100[label="",style="solid", color="blue", weight=3]; 3800[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 101[label="",style="solid", color="blue", weight=3]; 3801[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 102[label="",style="solid", color="blue", weight=3]; 3802[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 103[label="",style="solid", color="blue", weight=3]; 3803[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 104[label="",style="solid", color="blue", weight=3]; 3804[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 105[label="",style="solid", color="blue", weight=3]; 3805[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 106[label="",style="solid", color="blue", weight=3]; 3806[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 107[label="",style="solid", color="blue", weight=3]; 3807[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];68 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 108[label="",style="solid", color="blue", weight=3]; 69[label="xwv13",fontsize=16,color="green",shape="box"];70[label="xwv15",fontsize=16,color="green",shape="box"];71[label="xwv18",fontsize=16,color="green",shape="box"];72[label="xwv14",fontsize=16,color="green",shape="box"];73[label="xwv16",fontsize=16,color="green",shape="box"];74[label="xwv17",fontsize=16,color="green",shape="box"];67[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];3808[label="xwv34/False",fontsize=10,color="white",style="solid",shape="box"];67 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 109[label="",style="solid", color="burlywood", weight=3]; 3809[label="xwv34/True",fontsize=10,color="white",style="solid",shape="box"];67 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 110[label="",style="solid", color="burlywood", weight=3]; 76 -> 4[label="",style="dashed", color="red", weight=0]; 76[label="FiniteMap.delFromFM xwv17 xwv18",fontsize=16,color="magenta"];76 -> 111[label="",style="dashed", color="magenta", weight=3]; 76 -> 112[label="",style="dashed", color="magenta", weight=3]; 75[label="FiniteMap.mkBalBranch xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];75 -> 113[label="",style="solid", color="black", weight=3]; 219[label="compare () xwv30",fontsize=16,color="burlywood",shape="box"];3810[label="xwv30/()",fontsize=10,color="white",style="solid",shape="box"];219 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 252[label="",style="solid", color="burlywood", weight=3]; 220[label="LT == GT",fontsize=16,color="black",shape="box"];220 -> 253[label="",style="solid", color="black", weight=3]; 221[label="EQ == GT",fontsize=16,color="black",shape="box"];221 -> 254[label="",style="solid", color="black", weight=3]; 222[label="GT == GT",fontsize=16,color="black",shape="box"];222 -> 255[label="",style="solid", color="black", weight=3]; 223[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];223 -> 256[label="",style="solid", color="black", weight=3]; 224[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];224 -> 257[label="",style="solid", color="black", weight=3]; 225[label="primCmpInt xwv4 xwv30",fontsize=16,color="burlywood",shape="triangle"];3811[label="xwv4/Pos xwv40",fontsize=10,color="white",style="solid",shape="box"];225 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 258[label="",style="solid", color="burlywood", weight=3]; 3812[label="xwv4/Neg xwv40",fontsize=10,color="white",style="solid",shape="box"];225 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 259[label="",style="solid", color="burlywood", weight=3]; 226[label="compare (xwv40 : xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3813[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];226 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 260[label="",style="solid", color="burlywood", weight=3]; 3814[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];226 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 261[label="",style="solid", color="burlywood", weight=3]; 227[label="compare [] xwv30",fontsize=16,color="burlywood",shape="box"];3815[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];227 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 262[label="",style="solid", color="burlywood", weight=3]; 3816[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];227 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 263[label="",style="solid", color="burlywood", weight=3]; 228[label="primCmpFloat xwv4 xwv30",fontsize=16,color="burlywood",shape="box"];3817[label="xwv4/Float xwv40 xwv41",fontsize=10,color="white",style="solid",shape="box"];228 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 264[label="",style="solid", color="burlywood", weight=3]; 229[label="compare (xwv40 :% xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3818[label="xwv30/xwv300 :% xwv301",fontsize=10,color="white",style="solid",shape="box"];229 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 265[label="",style="solid", color="burlywood", weight=3]; 230[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];230 -> 266[label="",style="solid", color="black", weight=3]; 231[label="compare (Integer xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3819[label="xwv30/Integer xwv300",fontsize=10,color="white",style="solid",shape="box"];231 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 267[label="",style="solid", color="burlywood", weight=3]; 232[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];232 -> 268[label="",style="solid", color="black", weight=3]; 233[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];233 -> 269[label="",style="solid", color="black", weight=3]; 234[label="compare3 xwv4 xwv30",fontsize=16,color="black",shape="box"];234 -> 270[label="",style="solid", color="black", weight=3]; 235[label="primCmpChar xwv4 xwv30",fontsize=16,color="burlywood",shape="box"];3820[label="xwv4/Char xwv40",fontsize=10,color="white",style="solid",shape="box"];235 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 271[label="",style="solid", color="burlywood", weight=3]; 236[label="primCmpDouble xwv4 xwv30",fontsize=16,color="burlywood",shape="box"];3821[label="xwv4/Double xwv40 xwv41",fontsize=10,color="white",style="solid",shape="box"];236 -> 3821[label="",style="solid", color="burlywood", weight=9]; 3821 -> 272[label="",style="solid", color="burlywood", weight=3]; 95[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];95 -> 141[label="",style="solid", color="black", weight=3]; 96[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];96 -> 142[label="",style="solid", color="black", weight=3]; 97[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];97 -> 143[label="",style="solid", color="black", weight=3]; 98[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];98 -> 144[label="",style="solid", color="black", weight=3]; 99[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];99 -> 145[label="",style="solid", color="black", weight=3]; 100[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];100 -> 146[label="",style="solid", color="black", weight=3]; 101[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];101 -> 147[label="",style="solid", color="black", weight=3]; 102[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];102 -> 148[label="",style="solid", color="black", weight=3]; 103[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];103 -> 149[label="",style="solid", color="black", weight=3]; 104[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];104 -> 150[label="",style="solid", color="black", weight=3]; 105[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];105 -> 151[label="",style="solid", color="black", weight=3]; 106[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];106 -> 152[label="",style="solid", color="black", weight=3]; 107[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];107 -> 153[label="",style="solid", color="black", weight=3]; 108[label="xwv18 < xwv13",fontsize=16,color="black",shape="triangle"];108 -> 154[label="",style="solid", color="black", weight=3]; 109[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 False",fontsize=16,color="black",shape="box"];109 -> 155[label="",style="solid", color="black", weight=3]; 110[label="FiniteMap.delFromFM1 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 True",fontsize=16,color="black",shape="box"];110 -> 156[label="",style="solid", color="black", weight=3]; 111[label="xwv18",fontsize=16,color="green",shape="box"];112[label="xwv17",fontsize=16,color="green",shape="box"];113[label="FiniteMap.mkBalBranch6 xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];113 -> 157[label="",style="solid", color="black", weight=3]; 252[label="compare () ()",fontsize=16,color="black",shape="box"];252 -> 281[label="",style="solid", color="black", weight=3]; 253[label="False",fontsize=16,color="green",shape="box"];254[label="False",fontsize=16,color="green",shape="box"];255[label="True",fontsize=16,color="green",shape="box"];256[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3822[label="xwv4/Nothing",fontsize=10,color="white",style="solid",shape="box"];256 -> 3822[label="",style="solid", color="burlywood", weight=9]; 3822 -> 282[label="",style="solid", color="burlywood", weight=3]; 3823[label="xwv4/Just xwv40",fontsize=10,color="white",style="solid",shape="box"];256 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 283[label="",style="solid", color="burlywood", weight=3]; 257[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3824[label="xwv4/Left xwv40",fontsize=10,color="white",style="solid",shape="box"];257 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 284[label="",style="solid", color="burlywood", weight=3]; 3825[label="xwv4/Right xwv40",fontsize=10,color="white",style="solid",shape="box"];257 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 285[label="",style="solid", color="burlywood", weight=3]; 258[label="primCmpInt (Pos xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3826[label="xwv40/Succ xwv400",fontsize=10,color="white",style="solid",shape="box"];258 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 286[label="",style="solid", color="burlywood", weight=3]; 3827[label="xwv40/Zero",fontsize=10,color="white",style="solid",shape="box"];258 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 287[label="",style="solid", color="burlywood", weight=3]; 259[label="primCmpInt (Neg xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3828[label="xwv40/Succ xwv400",fontsize=10,color="white",style="solid",shape="box"];259 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 288[label="",style="solid", color="burlywood", weight=3]; 3829[label="xwv40/Zero",fontsize=10,color="white",style="solid",shape="box"];259 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 289[label="",style="solid", color="burlywood", weight=3]; 260[label="compare (xwv40 : xwv41) (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];260 -> 290[label="",style="solid", color="black", weight=3]; 261[label="compare (xwv40 : xwv41) []",fontsize=16,color="black",shape="box"];261 -> 291[label="",style="solid", color="black", weight=3]; 262[label="compare [] (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];262 -> 292[label="",style="solid", color="black", weight=3]; 263[label="compare [] []",fontsize=16,color="black",shape="box"];263 -> 293[label="",style="solid", color="black", weight=3]; 264[label="primCmpFloat (Float xwv40 xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3830[label="xwv41/Pos xwv410",fontsize=10,color="white",style="solid",shape="box"];264 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 294[label="",style="solid", color="burlywood", weight=3]; 3831[label="xwv41/Neg xwv410",fontsize=10,color="white",style="solid",shape="box"];264 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 295[label="",style="solid", color="burlywood", weight=3]; 265[label="compare (xwv40 :% xwv41) (xwv300 :% xwv301)",fontsize=16,color="black",shape="box"];265 -> 296[label="",style="solid", color="black", weight=3]; 266[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3832[label="xwv4/(xwv40,xwv41)",fontsize=10,color="white",style="solid",shape="box"];266 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 297[label="",style="solid", color="burlywood", weight=3]; 267[label="compare (Integer xwv40) (Integer xwv300)",fontsize=16,color="black",shape="box"];267 -> 298[label="",style="solid", color="black", weight=3]; 268[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3833[label="xwv4/False",fontsize=10,color="white",style="solid",shape="box"];268 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 299[label="",style="solid", color="burlywood", weight=3]; 3834[label="xwv4/True",fontsize=10,color="white",style="solid",shape="box"];268 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 300[label="",style="solid", color="burlywood", weight=3]; 269[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3835[label="xwv4/(xwv40,xwv41,xwv42)",fontsize=10,color="white",style="solid",shape="box"];269 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 301[label="",style="solid", color="burlywood", weight=3]; 270[label="compare2 xwv4 xwv30 (xwv4 == xwv30)",fontsize=16,color="burlywood",shape="box"];3836[label="xwv4/LT",fontsize=10,color="white",style="solid",shape="box"];270 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 302[label="",style="solid", color="burlywood", weight=3]; 3837[label="xwv4/EQ",fontsize=10,color="white",style="solid",shape="box"];270 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 303[label="",style="solid", color="burlywood", weight=3]; 3838[label="xwv4/GT",fontsize=10,color="white",style="solid",shape="box"];270 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 304[label="",style="solid", color="burlywood", weight=3]; 271[label="primCmpChar (Char xwv40) xwv30",fontsize=16,color="burlywood",shape="box"];3839[label="xwv30/Char xwv300",fontsize=10,color="white",style="solid",shape="box"];271 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 305[label="",style="solid", color="burlywood", weight=3]; 272[label="primCmpDouble (Double xwv40 xwv41) xwv30",fontsize=16,color="burlywood",shape="box"];3840[label="xwv41/Pos xwv410",fontsize=10,color="white",style="solid",shape="box"];272 -> 3840[label="",style="solid", color="burlywood", weight=9]; 3840 -> 306[label="",style="solid", color="burlywood", weight=3]; 3841[label="xwv41/Neg xwv410",fontsize=10,color="white",style="solid",shape="box"];272 -> 3841[label="",style="solid", color="burlywood", weight=9]; 3841 -> 307[label="",style="solid", color="burlywood", weight=3]; 141 -> 237[label="",style="dashed", color="red", weight=0]; 141[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];141 -> 238[label="",style="dashed", color="magenta", weight=3]; 142 -> 237[label="",style="dashed", color="red", weight=0]; 142[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];142 -> 239[label="",style="dashed", color="magenta", weight=3]; 143 -> 237[label="",style="dashed", color="red", weight=0]; 143[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];143 -> 240[label="",style="dashed", color="magenta", weight=3]; 144 -> 237[label="",style="dashed", color="red", weight=0]; 144[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];144 -> 241[label="",style="dashed", color="magenta", weight=3]; 145 -> 237[label="",style="dashed", color="red", weight=0]; 145[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];145 -> 242[label="",style="dashed", color="magenta", weight=3]; 146 -> 237[label="",style="dashed", color="red", weight=0]; 146[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];146 -> 243[label="",style="dashed", color="magenta", weight=3]; 147 -> 237[label="",style="dashed", color="red", weight=0]; 147[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];147 -> 244[label="",style="dashed", color="magenta", weight=3]; 148 -> 237[label="",style="dashed", color="red", weight=0]; 148[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];148 -> 245[label="",style="dashed", color="magenta", weight=3]; 149 -> 237[label="",style="dashed", color="red", weight=0]; 149[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];149 -> 246[label="",style="dashed", color="magenta", weight=3]; 150 -> 237[label="",style="dashed", color="red", weight=0]; 150[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];150 -> 247[label="",style="dashed", color="magenta", weight=3]; 151 -> 237[label="",style="dashed", color="red", weight=0]; 151[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];151 -> 248[label="",style="dashed", color="magenta", weight=3]; 152 -> 237[label="",style="dashed", color="red", weight=0]; 152[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];152 -> 249[label="",style="dashed", color="magenta", weight=3]; 153 -> 237[label="",style="dashed", color="red", weight=0]; 153[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];153 -> 250[label="",style="dashed", color="magenta", weight=3]; 154 -> 237[label="",style="dashed", color="red", weight=0]; 154[label="compare xwv18 xwv13 == LT",fontsize=16,color="magenta"];154 -> 251[label="",style="dashed", color="magenta", weight=3]; 155 -> 273[label="",style="dashed", color="red", weight=0]; 155[label="FiniteMap.delFromFM0 xwv28 xwv29 xwv30 xwv31 xwv32 xwv33 (xwv28 == xwv33)",fontsize=16,color="magenta"];155 -> 274[label="",style="dashed", color="magenta", weight=3]; 155 -> 275[label="",style="dashed", color="magenta", weight=3]; 155 -> 276[label="",style="dashed", color="magenta", weight=3]; 155 -> 277[label="",style="dashed", color="magenta", weight=3]; 155 -> 278[label="",style="dashed", color="magenta", weight=3]; 155 -> 279[label="",style="dashed", color="magenta", weight=3]; 155 -> 280[label="",style="dashed", color="magenta", weight=3]; 156 -> 75[label="",style="dashed", color="red", weight=0]; 156[label="FiniteMap.mkBalBranch xwv28 xwv29 (FiniteMap.delFromFM xwv31 xwv33) xwv32",fontsize=16,color="magenta"];156 -> 308[label="",style="dashed", color="magenta", weight=3]; 156 -> 309[label="",style="dashed", color="magenta", weight=3]; 156 -> 310[label="",style="dashed", color="magenta", weight=3]; 156 -> 311[label="",style="dashed", color="magenta", weight=3]; 157 -> 312[label="",style="dashed", color="red", weight=0]; 157[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 + FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];157 -> 313[label="",style="dashed", color="magenta", weight=3]; 281[label="EQ",fontsize=16,color="green",shape="box"];282[label="compare2 Nothing xwv30 (Nothing == xwv30)",fontsize=16,color="burlywood",shape="box"];3842[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];282 -> 3842[label="",style="solid", color="burlywood", weight=9]; 3842 -> 314[label="",style="solid", color="burlywood", weight=3]; 3843[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];282 -> 3843[label="",style="solid", color="burlywood", weight=9]; 3843 -> 315[label="",style="solid", color="burlywood", weight=3]; 283[label="compare2 (Just xwv40) xwv30 (Just xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3844[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];283 -> 3844[label="",style="solid", color="burlywood", weight=9]; 3844 -> 316[label="",style="solid", color="burlywood", weight=3]; 3845[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];283 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 317[label="",style="solid", color="burlywood", weight=3]; 284[label="compare2 (Left xwv40) xwv30 (Left xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3846[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];284 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 318[label="",style="solid", color="burlywood", weight=3]; 3847[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];284 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 319[label="",style="solid", color="burlywood", weight=3]; 285[label="compare2 (Right xwv40) xwv30 (Right xwv40 == xwv30)",fontsize=16,color="burlywood",shape="box"];3848[label="xwv30/Left xwv300",fontsize=10,color="white",style="solid",shape="box"];285 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 320[label="",style="solid", color="burlywood", weight=3]; 3849[label="xwv30/Right xwv300",fontsize=10,color="white",style="solid",shape="box"];285 -> 3849[label="",style="solid", color="burlywood", weight=9]; 3849 -> 321[label="",style="solid", color="burlywood", weight=3]; 286[label="primCmpInt (Pos (Succ xwv400)) xwv30",fontsize=16,color="burlywood",shape="box"];3850[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];286 -> 3850[label="",style="solid", color="burlywood", weight=9]; 3850 -> 322[label="",style="solid", color="burlywood", weight=3]; 3851[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];286 -> 3851[label="",style="solid", color="burlywood", weight=9]; 3851 -> 323[label="",style="solid", color="burlywood", weight=3]; 287[label="primCmpInt (Pos Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3852[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];287 -> 3852[label="",style="solid", color="burlywood", weight=9]; 3852 -> 324[label="",style="solid", color="burlywood", weight=3]; 3853[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];287 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 325[label="",style="solid", color="burlywood", weight=3]; 288[label="primCmpInt (Neg (Succ xwv400)) xwv30",fontsize=16,color="burlywood",shape="box"];3854[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];288 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 326[label="",style="solid", color="burlywood", weight=3]; 3855[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];288 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 327[label="",style="solid", color="burlywood", weight=3]; 289[label="primCmpInt (Neg Zero) xwv30",fontsize=16,color="burlywood",shape="box"];3856[label="xwv30/Pos xwv300",fontsize=10,color="white",style="solid",shape="box"];289 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 328[label="",style="solid", color="burlywood", weight=3]; 3857[label="xwv30/Neg xwv300",fontsize=10,color="white",style="solid",shape="box"];289 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 329[label="",style="solid", color="burlywood", weight=3]; 290 -> 330[label="",style="dashed", color="red", weight=0]; 290[label="primCompAux xwv40 xwv300 (compare xwv41 xwv301)",fontsize=16,color="magenta"];290 -> 331[label="",style="dashed", color="magenta", weight=3]; 291[label="GT",fontsize=16,color="green",shape="box"];292[label="LT",fontsize=16,color="green",shape="box"];293[label="EQ",fontsize=16,color="green",shape="box"];294[label="primCmpFloat (Float xwv40 (Pos xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3858[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];294 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 332[label="",style="solid", color="burlywood", weight=3]; 295[label="primCmpFloat (Float xwv40 (Neg xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3859[label="xwv30/Float xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];295 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 333[label="",style="solid", color="burlywood", weight=3]; 296[label="compare (xwv40 * xwv301) (xwv300 * xwv41)",fontsize=16,color="blue",shape="box"];3860[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];296 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 334[label="",style="solid", color="blue", weight=3]; 3861[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];296 -> 3861[label="",style="solid", color="blue", weight=9]; 3861 -> 335[label="",style="solid", color="blue", weight=3]; 297[label="compare2 (xwv40,xwv41) xwv30 ((xwv40,xwv41) == xwv30)",fontsize=16,color="burlywood",shape="box"];3862[label="xwv30/(xwv300,xwv301)",fontsize=10,color="white",style="solid",shape="box"];297 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 336[label="",style="solid", color="burlywood", weight=3]; 298 -> 225[label="",style="dashed", color="red", weight=0]; 298[label="primCmpInt xwv40 xwv300",fontsize=16,color="magenta"];298 -> 337[label="",style="dashed", color="magenta", weight=3]; 298 -> 338[label="",style="dashed", color="magenta", weight=3]; 299[label="compare2 False xwv30 (False == xwv30)",fontsize=16,color="burlywood",shape="box"];3863[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];299 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 339[label="",style="solid", color="burlywood", weight=3]; 3864[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];299 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 340[label="",style="solid", color="burlywood", weight=3]; 300[label="compare2 True xwv30 (True == xwv30)",fontsize=16,color="burlywood",shape="box"];3865[label="xwv30/False",fontsize=10,color="white",style="solid",shape="box"];300 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 341[label="",style="solid", color="burlywood", weight=3]; 3866[label="xwv30/True",fontsize=10,color="white",style="solid",shape="box"];300 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 342[label="",style="solid", color="burlywood", weight=3]; 301[label="compare2 (xwv40,xwv41,xwv42) xwv30 ((xwv40,xwv41,xwv42) == xwv30)",fontsize=16,color="burlywood",shape="box"];3867[label="xwv30/(xwv300,xwv301,xwv302)",fontsize=10,color="white",style="solid",shape="box"];301 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 343[label="",style="solid", color="burlywood", weight=3]; 302[label="compare2 LT xwv30 (LT == xwv30)",fontsize=16,color="burlywood",shape="box"];3868[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];302 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 344[label="",style="solid", color="burlywood", weight=3]; 3869[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];302 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 345[label="",style="solid", color="burlywood", weight=3]; 3870[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];302 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 346[label="",style="solid", color="burlywood", weight=3]; 303[label="compare2 EQ xwv30 (EQ == xwv30)",fontsize=16,color="burlywood",shape="box"];3871[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];303 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 347[label="",style="solid", color="burlywood", weight=3]; 3872[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];303 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 348[label="",style="solid", color="burlywood", weight=3]; 3873[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];303 -> 3873[label="",style="solid", color="burlywood", weight=9]; 3873 -> 349[label="",style="solid", color="burlywood", weight=3]; 304[label="compare2 GT xwv30 (GT == xwv30)",fontsize=16,color="burlywood",shape="box"];3874[label="xwv30/LT",fontsize=10,color="white",style="solid",shape="box"];304 -> 3874[label="",style="solid", color="burlywood", weight=9]; 3874 -> 350[label="",style="solid", color="burlywood", weight=3]; 3875[label="xwv30/EQ",fontsize=10,color="white",style="solid",shape="box"];304 -> 3875[label="",style="solid", color="burlywood", weight=9]; 3875 -> 351[label="",style="solid", color="burlywood", weight=3]; 3876[label="xwv30/GT",fontsize=10,color="white",style="solid",shape="box"];304 -> 3876[label="",style="solid", color="burlywood", weight=9]; 3876 -> 352[label="",style="solid", color="burlywood", weight=3]; 305[label="primCmpChar (Char xwv40) (Char xwv300)",fontsize=16,color="black",shape="box"];305 -> 353[label="",style="solid", color="black", weight=3]; 306[label="primCmpDouble (Double xwv40 (Pos xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3877[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];306 -> 3877[label="",style="solid", color="burlywood", weight=9]; 3877 -> 354[label="",style="solid", color="burlywood", weight=3]; 307[label="primCmpDouble (Double xwv40 (Neg xwv410)) xwv30",fontsize=16,color="burlywood",shape="box"];3878[label="xwv30/Double xwv300 xwv301",fontsize=10,color="white",style="solid",shape="box"];307 -> 3878[label="",style="solid", color="burlywood", weight=9]; 3878 -> 355[label="",style="solid", color="burlywood", weight=3]; 238 -> 181[label="",style="dashed", color="red", weight=0]; 238[label="compare xwv18 xwv13",fontsize=16,color="magenta"];238 -> 356[label="",style="dashed", color="magenta", weight=3]; 238 -> 357[label="",style="dashed", color="magenta", weight=3]; 237[label="xwv39 == LT",fontsize=16,color="burlywood",shape="triangle"];3879[label="xwv39/LT",fontsize=10,color="white",style="solid",shape="box"];237 -> 3879[label="",style="solid", color="burlywood", weight=9]; 3879 -> 358[label="",style="solid", color="burlywood", weight=3]; 3880[label="xwv39/EQ",fontsize=10,color="white",style="solid",shape="box"];237 -> 3880[label="",style="solid", color="burlywood", weight=9]; 3880 -> 359[label="",style="solid", color="burlywood", weight=3]; 3881[label="xwv39/GT",fontsize=10,color="white",style="solid",shape="box"];237 -> 3881[label="",style="solid", color="burlywood", weight=9]; 3881 -> 360[label="",style="solid", color="burlywood", weight=3]; 239 -> 182[label="",style="dashed", color="red", weight=0]; 239[label="compare xwv18 xwv13",fontsize=16,color="magenta"];239 -> 361[label="",style="dashed", color="magenta", weight=3]; 239 -> 362[label="",style="dashed", color="magenta", weight=3]; 240 -> 183[label="",style="dashed", color="red", weight=0]; 240[label="compare xwv18 xwv13",fontsize=16,color="magenta"];240 -> 363[label="",style="dashed", color="magenta", weight=3]; 240 -> 364[label="",style="dashed", color="magenta", weight=3]; 241 -> 184[label="",style="dashed", color="red", weight=0]; 241[label="compare xwv18 xwv13",fontsize=16,color="magenta"];241 -> 365[label="",style="dashed", color="magenta", weight=3]; 241 -> 366[label="",style="dashed", color="magenta", weight=3]; 242 -> 185[label="",style="dashed", color="red", weight=0]; 242[label="compare xwv18 xwv13",fontsize=16,color="magenta"];242 -> 367[label="",style="dashed", color="magenta", weight=3]; 242 -> 368[label="",style="dashed", color="magenta", weight=3]; 243 -> 186[label="",style="dashed", color="red", weight=0]; 243[label="compare xwv18 xwv13",fontsize=16,color="magenta"];243 -> 369[label="",style="dashed", color="magenta", weight=3]; 243 -> 370[label="",style="dashed", color="magenta", weight=3]; 244 -> 187[label="",style="dashed", color="red", weight=0]; 244[label="compare xwv18 xwv13",fontsize=16,color="magenta"];244 -> 371[label="",style="dashed", color="magenta", weight=3]; 244 -> 372[label="",style="dashed", color="magenta", weight=3]; 245 -> 188[label="",style="dashed", color="red", weight=0]; 245[label="compare xwv18 xwv13",fontsize=16,color="magenta"];245 -> 373[label="",style="dashed", color="magenta", weight=3]; 245 -> 374[label="",style="dashed", color="magenta", weight=3]; 246 -> 189[label="",style="dashed", color="red", weight=0]; 246[label="compare xwv18 xwv13",fontsize=16,color="magenta"];246 -> 375[label="",style="dashed", color="magenta", weight=3]; 246 -> 376[label="",style="dashed", color="magenta", weight=3]; 247 -> 190[label="",style="dashed", color="red", weight=0]; 247[label="compare xwv18 xwv13",fontsize=16,color="magenta"];247 -> 377[label="",style="dashed", color="magenta", weight=3]; 247 -> 378[label="",style="dashed", color="magenta", weight=3]; 248 -> 191[label="",style="dashed", color="red", weight=0]; 248[label="compare xwv18 xwv13",fontsize=16,color="magenta"];248 -> 379[label="",style="dashed", color="magenta", weight=3]; 248 -> 380[label="",style="dashed", color="magenta", weight=3]; 249 -> 192[label="",style="dashed", color="red", weight=0]; 249[label="compare xwv18 xwv13",fontsize=16,color="magenta"];249 -> 381[label="",style="dashed", color="magenta", weight=3]; 249 -> 382[label="",style="dashed", color="magenta", weight=3]; 250 -> 193[label="",style="dashed", color="red", weight=0]; 250[label="compare xwv18 xwv13",fontsize=16,color="magenta"];250 -> 383[label="",style="dashed", color="magenta", weight=3]; 250 -> 384[label="",style="dashed", color="magenta", weight=3]; 251 -> 194[label="",style="dashed", color="red", weight=0]; 251[label="compare xwv18 xwv13",fontsize=16,color="magenta"];251 -> 385[label="",style="dashed", color="magenta", weight=3]; 251 -> 386[label="",style="dashed", color="magenta", weight=3]; 274[label="xwv29",fontsize=16,color="green",shape="box"];275[label="xwv32",fontsize=16,color="green",shape="box"];276[label="xwv28 == xwv33",fontsize=16,color="blue",shape="box"];3882[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 387[label="",style="solid", color="blue", weight=3]; 3883[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 388[label="",style="solid", color="blue", weight=3]; 3884[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 389[label="",style="solid", color="blue", weight=3]; 3885[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 390[label="",style="solid", color="blue", weight=3]; 3886[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 391[label="",style="solid", color="blue", weight=3]; 3887[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 392[label="",style="solid", color="blue", weight=3]; 3888[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 393[label="",style="solid", color="blue", weight=3]; 3889[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 394[label="",style="solid", color="blue", weight=3]; 3890[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 395[label="",style="solid", color="blue", weight=3]; 3891[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 396[label="",style="solid", color="blue", weight=3]; 3892[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 397[label="",style="solid", color="blue", weight=3]; 3893[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 398[label="",style="solid", color="blue", weight=3]; 3894[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 399[label="",style="solid", color="blue", weight=3]; 3895[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 400[label="",style="solid", color="blue", weight=3]; 277[label="xwv31",fontsize=16,color="green",shape="box"];278[label="xwv33",fontsize=16,color="green",shape="box"];279[label="xwv30",fontsize=16,color="green",shape="box"];280[label="xwv28",fontsize=16,color="green",shape="box"];273[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 xwv54",fontsize=16,color="burlywood",shape="triangle"];3896[label="xwv54/False",fontsize=10,color="white",style="solid",shape="box"];273 -> 3896[label="",style="solid", color="burlywood", weight=9]; 3896 -> 401[label="",style="solid", color="burlywood", weight=3]; 3897[label="xwv54/True",fontsize=10,color="white",style="solid",shape="box"];273 -> 3897[label="",style="solid", color="burlywood", weight=9]; 3897 -> 402[label="",style="solid", color="burlywood", weight=3]; 308[label="xwv28",fontsize=16,color="green",shape="box"];309[label="xwv32",fontsize=16,color="green",shape="box"];310[label="xwv29",fontsize=16,color="green",shape="box"];311 -> 4[label="",style="dashed", color="red", weight=0]; 311[label="FiniteMap.delFromFM xwv31 xwv33",fontsize=16,color="magenta"];311 -> 403[label="",style="dashed", color="magenta", weight=3]; 311 -> 404[label="",style="dashed", color="magenta", weight=3]; 313 -> 98[label="",style="dashed", color="red", weight=0]; 313[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 + FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];313 -> 405[label="",style="dashed", color="magenta", weight=3]; 313 -> 406[label="",style="dashed", color="magenta", weight=3]; 312[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 xwv55",fontsize=16,color="burlywood",shape="triangle"];3898[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];312 -> 3898[label="",style="solid", color="burlywood", weight=9]; 3898 -> 407[label="",style="solid", color="burlywood", weight=3]; 3899[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];312 -> 3899[label="",style="solid", color="burlywood", weight=9]; 3899 -> 408[label="",style="solid", color="burlywood", weight=3]; 314[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];314 -> 409[label="",style="solid", color="black", weight=3]; 315[label="compare2 Nothing (Just xwv300) (Nothing == Just xwv300)",fontsize=16,color="black",shape="box"];315 -> 410[label="",style="solid", color="black", weight=3]; 316[label="compare2 (Just xwv40) Nothing (Just xwv40 == Nothing)",fontsize=16,color="black",shape="box"];316 -> 411[label="",style="solid", color="black", weight=3]; 317[label="compare2 (Just xwv40) (Just xwv300) (Just xwv40 == Just xwv300)",fontsize=16,color="black",shape="box"];317 -> 412[label="",style="solid", color="black", weight=3]; 318[label="compare2 (Left xwv40) (Left xwv300) (Left xwv40 == Left xwv300)",fontsize=16,color="black",shape="box"];318 -> 413[label="",style="solid", color="black", weight=3]; 319[label="compare2 (Left xwv40) (Right xwv300) (Left xwv40 == Right xwv300)",fontsize=16,color="black",shape="box"];319 -> 414[label="",style="solid", color="black", weight=3]; 320[label="compare2 (Right xwv40) (Left xwv300) (Right xwv40 == Left xwv300)",fontsize=16,color="black",shape="box"];320 -> 415[label="",style="solid", color="black", weight=3]; 321[label="compare2 (Right xwv40) (Right xwv300) (Right xwv40 == Right xwv300)",fontsize=16,color="black",shape="box"];321 -> 416[label="",style="solid", color="black", weight=3]; 322[label="primCmpInt (Pos (Succ xwv400)) (Pos xwv300)",fontsize=16,color="black",shape="box"];322 -> 417[label="",style="solid", color="black", weight=3]; 323[label="primCmpInt (Pos (Succ xwv400)) (Neg xwv300)",fontsize=16,color="black",shape="box"];323 -> 418[label="",style="solid", color="black", weight=3]; 324[label="primCmpInt (Pos Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3900[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];324 -> 3900[label="",style="solid", color="burlywood", weight=9]; 3900 -> 419[label="",style="solid", color="burlywood", weight=3]; 3901[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];324 -> 3901[label="",style="solid", color="burlywood", weight=9]; 3901 -> 420[label="",style="solid", color="burlywood", weight=3]; 325[label="primCmpInt (Pos Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3902[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];325 -> 3902[label="",style="solid", color="burlywood", weight=9]; 3902 -> 421[label="",style="solid", color="burlywood", weight=3]; 3903[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];325 -> 3903[label="",style="solid", color="burlywood", weight=9]; 3903 -> 422[label="",style="solid", color="burlywood", weight=3]; 326[label="primCmpInt (Neg (Succ xwv400)) (Pos xwv300)",fontsize=16,color="black",shape="box"];326 -> 423[label="",style="solid", color="black", weight=3]; 327[label="primCmpInt (Neg (Succ xwv400)) (Neg xwv300)",fontsize=16,color="black",shape="box"];327 -> 424[label="",style="solid", color="black", weight=3]; 328[label="primCmpInt (Neg Zero) (Pos xwv300)",fontsize=16,color="burlywood",shape="box"];3904[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];328 -> 3904[label="",style="solid", color="burlywood", weight=9]; 3904 -> 425[label="",style="solid", color="burlywood", weight=3]; 3905[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];328 -> 3905[label="",style="solid", color="burlywood", weight=9]; 3905 -> 426[label="",style="solid", color="burlywood", weight=3]; 329[label="primCmpInt (Neg Zero) (Neg xwv300)",fontsize=16,color="burlywood",shape="box"];3906[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];329 -> 3906[label="",style="solid", color="burlywood", weight=9]; 3906 -> 427[label="",style="solid", color="burlywood", weight=3]; 3907[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];329 -> 3907[label="",style="solid", color="burlywood", weight=9]; 3907 -> 428[label="",style="solid", color="burlywood", weight=3]; 331 -> 185[label="",style="dashed", color="red", weight=0]; 331[label="compare xwv41 xwv301",fontsize=16,color="magenta"];331 -> 429[label="",style="dashed", color="magenta", weight=3]; 331 -> 430[label="",style="dashed", color="magenta", weight=3]; 330[label="primCompAux xwv40 xwv300 xwv56",fontsize=16,color="black",shape="triangle"];330 -> 431[label="",style="solid", color="black", weight=3]; 332[label="primCmpFloat (Float xwv40 (Pos xwv410)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3908[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];332 -> 3908[label="",style="solid", color="burlywood", weight=9]; 3908 -> 432[label="",style="solid", color="burlywood", weight=3]; 3909[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];332 -> 3909[label="",style="solid", color="burlywood", weight=9]; 3909 -> 433[label="",style="solid", color="burlywood", weight=3]; 333[label="primCmpFloat (Float xwv40 (Neg xwv410)) (Float xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3910[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];333 -> 3910[label="",style="solid", color="burlywood", weight=9]; 3910 -> 434[label="",style="solid", color="burlywood", weight=3]; 3911[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];333 -> 3911[label="",style="solid", color="burlywood", weight=9]; 3911 -> 435[label="",style="solid", color="burlywood", weight=3]; 334 -> 184[label="",style="dashed", color="red", weight=0]; 334[label="compare (xwv40 * xwv301) (xwv300 * xwv41)",fontsize=16,color="magenta"];334 -> 436[label="",style="dashed", color="magenta", weight=3]; 334 -> 437[label="",style="dashed", color="magenta", weight=3]; 335 -> 189[label="",style="dashed", color="red", weight=0]; 335[label="compare (xwv40 * xwv301) (xwv300 * xwv41)",fontsize=16,color="magenta"];335 -> 438[label="",style="dashed", color="magenta", weight=3]; 335 -> 439[label="",style="dashed", color="magenta", weight=3]; 336[label="compare2 (xwv40,xwv41) (xwv300,xwv301) ((xwv40,xwv41) == (xwv300,xwv301))",fontsize=16,color="black",shape="box"];336 -> 440[label="",style="solid", color="black", weight=3]; 337[label="xwv40",fontsize=16,color="green",shape="box"];338[label="xwv300",fontsize=16,color="green",shape="box"];339[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];339 -> 441[label="",style="solid", color="black", weight=3]; 340[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];340 -> 442[label="",style="solid", color="black", weight=3]; 341[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];341 -> 443[label="",style="solid", color="black", weight=3]; 342[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];342 -> 444[label="",style="solid", color="black", weight=3]; 343[label="compare2 (xwv40,xwv41,xwv42) (xwv300,xwv301,xwv302) ((xwv40,xwv41,xwv42) == (xwv300,xwv301,xwv302))",fontsize=16,color="black",shape="box"];343 -> 445[label="",style="solid", color="black", weight=3]; 344[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];344 -> 446[label="",style="solid", color="black", weight=3]; 345[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];345 -> 447[label="",style="solid", color="black", weight=3]; 346[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];346 -> 448[label="",style="solid", color="black", weight=3]; 347[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];347 -> 449[label="",style="solid", color="black", weight=3]; 348[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];348 -> 450[label="",style="solid", color="black", weight=3]; 349[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];349 -> 451[label="",style="solid", color="black", weight=3]; 350[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];350 -> 452[label="",style="solid", color="black", weight=3]; 351[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];351 -> 453[label="",style="solid", color="black", weight=3]; 352[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];352 -> 454[label="",style="solid", color="black", weight=3]; 353[label="primCmpNat xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];3912[label="xwv40/Succ xwv400",fontsize=10,color="white",style="solid",shape="box"];353 -> 3912[label="",style="solid", color="burlywood", weight=9]; 3912 -> 455[label="",style="solid", color="burlywood", weight=3]; 3913[label="xwv40/Zero",fontsize=10,color="white",style="solid",shape="box"];353 -> 3913[label="",style="solid", color="burlywood", weight=9]; 3913 -> 456[label="",style="solid", color="burlywood", weight=3]; 354[label="primCmpDouble (Double xwv40 (Pos xwv410)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3914[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];354 -> 3914[label="",style="solid", color="burlywood", weight=9]; 3914 -> 457[label="",style="solid", color="burlywood", weight=3]; 3915[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];354 -> 3915[label="",style="solid", color="burlywood", weight=9]; 3915 -> 458[label="",style="solid", color="burlywood", weight=3]; 355[label="primCmpDouble (Double xwv40 (Neg xwv410)) (Double xwv300 xwv301)",fontsize=16,color="burlywood",shape="box"];3916[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3916[label="",style="solid", color="burlywood", weight=9]; 3916 -> 459[label="",style="solid", color="burlywood", weight=3]; 3917[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3917[label="",style="solid", color="burlywood", weight=9]; 3917 -> 460[label="",style="solid", color="burlywood", weight=3]; 356[label="xwv18",fontsize=16,color="green",shape="box"];357[label="xwv13",fontsize=16,color="green",shape="box"];358[label="LT == LT",fontsize=16,color="black",shape="box"];358 -> 461[label="",style="solid", color="black", weight=3]; 359[label="EQ == LT",fontsize=16,color="black",shape="box"];359 -> 462[label="",style="solid", color="black", weight=3]; 360[label="GT == LT",fontsize=16,color="black",shape="box"];360 -> 463[label="",style="solid", color="black", weight=3]; 361[label="xwv18",fontsize=16,color="green",shape="box"];362[label="xwv13",fontsize=16,color="green",shape="box"];363[label="xwv18",fontsize=16,color="green",shape="box"];364[label="xwv13",fontsize=16,color="green",shape="box"];365[label="xwv18",fontsize=16,color="green",shape="box"];366[label="xwv13",fontsize=16,color="green",shape="box"];367[label="xwv18",fontsize=16,color="green",shape="box"];368[label="xwv13",fontsize=16,color="green",shape="box"];369[label="xwv18",fontsize=16,color="green",shape="box"];370[label="xwv13",fontsize=16,color="green",shape="box"];371[label="xwv18",fontsize=16,color="green",shape="box"];372[label="xwv13",fontsize=16,color="green",shape="box"];373[label="xwv18",fontsize=16,color="green",shape="box"];374[label="xwv13",fontsize=16,color="green",shape="box"];375[label="xwv18",fontsize=16,color="green",shape="box"];376[label="xwv13",fontsize=16,color="green",shape="box"];377[label="xwv18",fontsize=16,color="green",shape="box"];378[label="xwv13",fontsize=16,color="green",shape="box"];379[label="xwv18",fontsize=16,color="green",shape="box"];380[label="xwv13",fontsize=16,color="green",shape="box"];381[label="xwv18",fontsize=16,color="green",shape="box"];382[label="xwv13",fontsize=16,color="green",shape="box"];383[label="xwv18",fontsize=16,color="green",shape="box"];384[label="xwv13",fontsize=16,color="green",shape="box"];385[label="xwv18",fontsize=16,color="green",shape="box"];386[label="xwv13",fontsize=16,color="green",shape="box"];387[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];387 -> 464[label="",style="solid", color="black", weight=3]; 388[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3918[label="xwv28/Nothing",fontsize=10,color="white",style="solid",shape="box"];388 -> 3918[label="",style="solid", color="burlywood", weight=9]; 3918 -> 465[label="",style="solid", color="burlywood", weight=3]; 3919[label="xwv28/Just xwv280",fontsize=10,color="white",style="solid",shape="box"];388 -> 3919[label="",style="solid", color="burlywood", weight=9]; 3919 -> 466[label="",style="solid", color="burlywood", weight=3]; 389[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3920[label="xwv28/False",fontsize=10,color="white",style="solid",shape="box"];389 -> 3920[label="",style="solid", color="burlywood", weight=9]; 3920 -> 467[label="",style="solid", color="burlywood", weight=3]; 3921[label="xwv28/True",fontsize=10,color="white",style="solid",shape="box"];389 -> 3921[label="",style="solid", color="burlywood", weight=9]; 3921 -> 468[label="",style="solid", color="burlywood", weight=3]; 390[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3922[label="xwv28/LT",fontsize=10,color="white",style="solid",shape="box"];390 -> 3922[label="",style="solid", color="burlywood", weight=9]; 3922 -> 469[label="",style="solid", color="burlywood", weight=3]; 3923[label="xwv28/EQ",fontsize=10,color="white",style="solid",shape="box"];390 -> 3923[label="",style="solid", color="burlywood", weight=9]; 3923 -> 470[label="",style="solid", color="burlywood", weight=3]; 3924[label="xwv28/GT",fontsize=10,color="white",style="solid",shape="box"];390 -> 3924[label="",style="solid", color="burlywood", weight=9]; 3924 -> 471[label="",style="solid", color="burlywood", weight=3]; 391[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3925[label="xwv28/(xwv280,xwv281)",fontsize=10,color="white",style="solid",shape="box"];391 -> 3925[label="",style="solid", color="burlywood", weight=9]; 3925 -> 472[label="",style="solid", color="burlywood", weight=3]; 392[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3926[label="xwv28/xwv280 : xwv281",fontsize=10,color="white",style="solid",shape="box"];392 -> 3926[label="",style="solid", color="burlywood", weight=9]; 3926 -> 473[label="",style="solid", color="burlywood", weight=3]; 3927[label="xwv28/[]",fontsize=10,color="white",style="solid",shape="box"];392 -> 3927[label="",style="solid", color="burlywood", weight=9]; 3927 -> 474[label="",style="solid", color="burlywood", weight=3]; 393[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3928[label="xwv28/Integer xwv280",fontsize=10,color="white",style="solid",shape="box"];393 -> 3928[label="",style="solid", color="burlywood", weight=9]; 3928 -> 475[label="",style="solid", color="burlywood", weight=3]; 394[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3929[label="xwv28/()",fontsize=10,color="white",style="solid",shape="box"];394 -> 3929[label="",style="solid", color="burlywood", weight=9]; 3929 -> 476[label="",style="solid", color="burlywood", weight=3]; 395[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3930[label="xwv28/xwv280 :% xwv281",fontsize=10,color="white",style="solid",shape="box"];395 -> 3930[label="",style="solid", color="burlywood", weight=9]; 3930 -> 477[label="",style="solid", color="burlywood", weight=3]; 396[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3931[label="xwv28/(xwv280,xwv281,xwv282)",fontsize=10,color="white",style="solid",shape="box"];396 -> 3931[label="",style="solid", color="burlywood", weight=9]; 3931 -> 478[label="",style="solid", color="burlywood", weight=3]; 397[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];397 -> 479[label="",style="solid", color="black", weight=3]; 398[label="xwv28 == xwv33",fontsize=16,color="burlywood",shape="triangle"];3932[label="xwv28/Left xwv280",fontsize=10,color="white",style="solid",shape="box"];398 -> 3932[label="",style="solid", color="burlywood", weight=9]; 3932 -> 480[label="",style="solid", color="burlywood", weight=3]; 3933[label="xwv28/Right xwv280",fontsize=10,color="white",style="solid",shape="box"];398 -> 3933[label="",style="solid", color="burlywood", weight=9]; 3933 -> 481[label="",style="solid", color="burlywood", weight=3]; 399[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];399 -> 482[label="",style="solid", color="black", weight=3]; 400[label="xwv28 == xwv33",fontsize=16,color="black",shape="triangle"];400 -> 483[label="",style="solid", color="black", weight=3]; 401[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 False",fontsize=16,color="black",shape="box"];401 -> 484[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.delFromFM0 xwv48 xwv49 xwv50 xwv51 xwv52 xwv53 True",fontsize=16,color="black",shape="box"];402 -> 485[label="",style="solid", color="black", weight=3]; 403[label="xwv33",fontsize=16,color="green",shape="box"];404[label="xwv31",fontsize=16,color="green",shape="box"];405[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];406[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 + FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];406 -> 486[label="",style="solid", color="black", weight=3]; 407[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];407 -> 487[label="",style="solid", color="black", weight=3]; 408[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];408 -> 488[label="",style="solid", color="black", weight=3]; 409[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];409 -> 489[label="",style="solid", color="black", weight=3]; 410[label="compare2 Nothing (Just xwv300) False",fontsize=16,color="black",shape="box"];410 -> 490[label="",style="solid", color="black", weight=3]; 411[label="compare2 (Just xwv40) Nothing False",fontsize=16,color="black",shape="box"];411 -> 491[label="",style="solid", color="black", weight=3]; 412 -> 492[label="",style="dashed", color="red", weight=0]; 412[label="compare2 (Just xwv40) (Just xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];412 -> 493[label="",style="dashed", color="magenta", weight=3]; 412 -> 494[label="",style="dashed", color="magenta", weight=3]; 412 -> 495[label="",style="dashed", color="magenta", weight=3]; 413 -> 496[label="",style="dashed", color="red", weight=0]; 413[label="compare2 (Left xwv40) (Left xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];413 -> 497[label="",style="dashed", color="magenta", weight=3]; 413 -> 498[label="",style="dashed", color="magenta", weight=3]; 413 -> 499[label="",style="dashed", color="magenta", weight=3]; 414[label="compare2 (Left xwv40) (Right xwv300) False",fontsize=16,color="black",shape="box"];414 -> 500[label="",style="solid", color="black", weight=3]; 415[label="compare2 (Right xwv40) (Left xwv300) False",fontsize=16,color="black",shape="box"];415 -> 501[label="",style="solid", color="black", weight=3]; 416 -> 502[label="",style="dashed", color="red", weight=0]; 416[label="compare2 (Right xwv40) (Right xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];416 -> 503[label="",style="dashed", color="magenta", weight=3]; 416 -> 504[label="",style="dashed", color="magenta", weight=3]; 416 -> 505[label="",style="dashed", color="magenta", weight=3]; 417 -> 353[label="",style="dashed", color="red", weight=0]; 417[label="primCmpNat (Succ xwv400) xwv300",fontsize=16,color="magenta"];417 -> 506[label="",style="dashed", color="magenta", weight=3]; 417 -> 507[label="",style="dashed", color="magenta", weight=3]; 418[label="GT",fontsize=16,color="green",shape="box"];419[label="primCmpInt (Pos Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];419 -> 508[label="",style="solid", color="black", weight=3]; 420[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];420 -> 509[label="",style="solid", color="black", weight=3]; 421[label="primCmpInt (Pos Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];421 -> 510[label="",style="solid", color="black", weight=3]; 422[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];422 -> 511[label="",style="solid", color="black", weight=3]; 423[label="LT",fontsize=16,color="green",shape="box"];424 -> 353[label="",style="dashed", color="red", weight=0]; 424[label="primCmpNat xwv300 (Succ xwv400)",fontsize=16,color="magenta"];424 -> 512[label="",style="dashed", color="magenta", weight=3]; 424 -> 513[label="",style="dashed", color="magenta", weight=3]; 425[label="primCmpInt (Neg Zero) (Pos (Succ xwv3000))",fontsize=16,color="black",shape="box"];425 -> 514[label="",style="solid", color="black", weight=3]; 426[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];426 -> 515[label="",style="solid", color="black", weight=3]; 427[label="primCmpInt (Neg Zero) (Neg (Succ xwv3000))",fontsize=16,color="black",shape="box"];427 -> 516[label="",style="solid", color="black", weight=3]; 428[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];428 -> 517[label="",style="solid", color="black", weight=3]; 429[label="xwv41",fontsize=16,color="green",shape="box"];430[label="xwv301",fontsize=16,color="green",shape="box"];431 -> 518[label="",style="dashed", color="red", weight=0]; 431[label="primCompAux0 xwv56 (compare xwv40 xwv300)",fontsize=16,color="magenta"];431 -> 519[label="",style="dashed", color="magenta", weight=3]; 431 -> 520[label="",style="dashed", color="magenta", weight=3]; 432[label="primCmpFloat (Float xwv40 (Pos xwv410)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];432 -> 521[label="",style="solid", color="black", weight=3]; 433[label="primCmpFloat (Float xwv40 (Pos xwv410)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];433 -> 522[label="",style="solid", color="black", weight=3]; 434[label="primCmpFloat (Float xwv40 (Neg xwv410)) (Float xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];434 -> 523[label="",style="solid", color="black", weight=3]; 435[label="primCmpFloat (Float xwv40 (Neg xwv410)) (Float xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];435 -> 524[label="",style="solid", color="black", weight=3]; 436[label="xwv40 * xwv301",fontsize=16,color="black",shape="triangle"];436 -> 525[label="",style="solid", color="black", weight=3]; 437 -> 436[label="",style="dashed", color="red", weight=0]; 437[label="xwv300 * xwv41",fontsize=16,color="magenta"];437 -> 526[label="",style="dashed", color="magenta", weight=3]; 437 -> 527[label="",style="dashed", color="magenta", weight=3]; 438[label="xwv40 * xwv301",fontsize=16,color="burlywood",shape="triangle"];3934[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];438 -> 3934[label="",style="solid", color="burlywood", weight=9]; 3934 -> 528[label="",style="solid", color="burlywood", weight=3]; 439 -> 438[label="",style="dashed", color="red", weight=0]; 439[label="xwv300 * xwv41",fontsize=16,color="magenta"];439 -> 529[label="",style="dashed", color="magenta", weight=3]; 439 -> 530[label="",style="dashed", color="magenta", weight=3]; 440 -> 1120[label="",style="dashed", color="red", weight=0]; 440[label="compare2 (xwv40,xwv41) (xwv300,xwv301) (xwv40 == xwv300 && xwv41 == xwv301)",fontsize=16,color="magenta"];440 -> 1121[label="",style="dashed", color="magenta", weight=3]; 440 -> 1122[label="",style="dashed", color="magenta", weight=3]; 440 -> 1123[label="",style="dashed", color="magenta", weight=3]; 440 -> 1124[label="",style="dashed", color="magenta", weight=3]; 440 -> 1125[label="",style="dashed", color="magenta", weight=3]; 441[label="compare2 False False True",fontsize=16,color="black",shape="box"];441 -> 537[label="",style="solid", color="black", weight=3]; 442[label="compare2 False True False",fontsize=16,color="black",shape="box"];442 -> 538[label="",style="solid", color="black", weight=3]; 443[label="compare2 True False False",fontsize=16,color="black",shape="box"];443 -> 539[label="",style="solid", color="black", weight=3]; 444[label="compare2 True True True",fontsize=16,color="black",shape="box"];444 -> 540[label="",style="solid", color="black", weight=3]; 445 -> 1148[label="",style="dashed", color="red", weight=0]; 445[label="compare2 (xwv40,xwv41,xwv42) (xwv300,xwv301,xwv302) (xwv40 == xwv300 && xwv41 == xwv301 && xwv42 == xwv302)",fontsize=16,color="magenta"];445 -> 1149[label="",style="dashed", color="magenta", weight=3]; 445 -> 1150[label="",style="dashed", color="magenta", weight=3]; 445 -> 1151[label="",style="dashed", color="magenta", weight=3]; 445 -> 1152[label="",style="dashed", color="magenta", weight=3]; 445 -> 1153[label="",style="dashed", color="magenta", weight=3]; 445 -> 1154[label="",style="dashed", color="magenta", weight=3]; 445 -> 1155[label="",style="dashed", color="magenta", weight=3]; 446[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];446 -> 549[label="",style="solid", color="black", weight=3]; 447[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];447 -> 550[label="",style="solid", color="black", weight=3]; 448[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];448 -> 551[label="",style="solid", color="black", weight=3]; 449[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];449 -> 552[label="",style="solid", color="black", weight=3]; 450[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];450 -> 553[label="",style="solid", color="black", weight=3]; 451[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];451 -> 554[label="",style="solid", color="black", weight=3]; 452[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];452 -> 555[label="",style="solid", color="black", weight=3]; 453[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];453 -> 556[label="",style="solid", color="black", weight=3]; 454[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];454 -> 557[label="",style="solid", color="black", weight=3]; 455[label="primCmpNat (Succ xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];3935[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];455 -> 3935[label="",style="solid", color="burlywood", weight=9]; 3935 -> 558[label="",style="solid", color="burlywood", weight=3]; 3936[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];455 -> 3936[label="",style="solid", color="burlywood", weight=9]; 3936 -> 559[label="",style="solid", color="burlywood", weight=3]; 456[label="primCmpNat Zero xwv300",fontsize=16,color="burlywood",shape="box"];3937[label="xwv300/Succ xwv3000",fontsize=10,color="white",style="solid",shape="box"];456 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 560[label="",style="solid", color="burlywood", weight=3]; 3938[label="xwv300/Zero",fontsize=10,color="white",style="solid",shape="box"];456 -> 3938[label="",style="solid", color="burlywood", weight=9]; 3938 -> 561[label="",style="solid", color="burlywood", weight=3]; 457[label="primCmpDouble (Double xwv40 (Pos xwv410)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];457 -> 562[label="",style="solid", color="black", weight=3]; 458[label="primCmpDouble (Double xwv40 (Pos xwv410)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];458 -> 563[label="",style="solid", color="black", weight=3]; 459[label="primCmpDouble (Double xwv40 (Neg xwv410)) (Double xwv300 (Pos xwv3010))",fontsize=16,color="black",shape="box"];459 -> 564[label="",style="solid", color="black", weight=3]; 460[label="primCmpDouble (Double xwv40 (Neg xwv410)) (Double xwv300 (Neg xwv3010))",fontsize=16,color="black",shape="box"];460 -> 565[label="",style="solid", color="black", weight=3]; 461[label="True",fontsize=16,color="green",shape="box"];462[label="False",fontsize=16,color="green",shape="box"];463[label="False",fontsize=16,color="green",shape="box"];464[label="primEqDouble xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3939[label="xwv28/Double xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];464 -> 3939[label="",style="solid", color="burlywood", weight=9]; 3939 -> 566[label="",style="solid", color="burlywood", weight=3]; 465[label="Nothing == xwv33",fontsize=16,color="burlywood",shape="box"];3940[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];465 -> 3940[label="",style="solid", color="burlywood", weight=9]; 3940 -> 567[label="",style="solid", color="burlywood", weight=3]; 3941[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];465 -> 3941[label="",style="solid", color="burlywood", weight=9]; 3941 -> 568[label="",style="solid", color="burlywood", weight=3]; 466[label="Just xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3942[label="xwv33/Nothing",fontsize=10,color="white",style="solid",shape="box"];466 -> 3942[label="",style="solid", color="burlywood", weight=9]; 3942 -> 569[label="",style="solid", color="burlywood", weight=3]; 3943[label="xwv33/Just xwv330",fontsize=10,color="white",style="solid",shape="box"];466 -> 3943[label="",style="solid", color="burlywood", weight=9]; 3943 -> 570[label="",style="solid", color="burlywood", weight=3]; 467[label="False == xwv33",fontsize=16,color="burlywood",shape="box"];3944[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];467 -> 3944[label="",style="solid", color="burlywood", weight=9]; 3944 -> 571[label="",style="solid", color="burlywood", weight=3]; 3945[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];467 -> 3945[label="",style="solid", color="burlywood", weight=9]; 3945 -> 572[label="",style="solid", color="burlywood", weight=3]; 468[label="True == xwv33",fontsize=16,color="burlywood",shape="box"];3946[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];468 -> 3946[label="",style="solid", color="burlywood", weight=9]; 3946 -> 573[label="",style="solid", color="burlywood", weight=3]; 3947[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];468 -> 3947[label="",style="solid", color="burlywood", weight=9]; 3947 -> 574[label="",style="solid", color="burlywood", weight=3]; 469[label="LT == xwv33",fontsize=16,color="burlywood",shape="box"];3948[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];469 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 575[label="",style="solid", color="burlywood", weight=3]; 3949[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];469 -> 3949[label="",style="solid", color="burlywood", weight=9]; 3949 -> 576[label="",style="solid", color="burlywood", weight=3]; 3950[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];469 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 577[label="",style="solid", color="burlywood", weight=3]; 470[label="EQ == xwv33",fontsize=16,color="burlywood",shape="box"];3951[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];470 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 578[label="",style="solid", color="burlywood", weight=3]; 3952[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];470 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 579[label="",style="solid", color="burlywood", weight=3]; 3953[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];470 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 580[label="",style="solid", color="burlywood", weight=3]; 471[label="GT == xwv33",fontsize=16,color="burlywood",shape="box"];3954[label="xwv33/LT",fontsize=10,color="white",style="solid",shape="box"];471 -> 3954[label="",style="solid", color="burlywood", weight=9]; 3954 -> 581[label="",style="solid", color="burlywood", weight=3]; 3955[label="xwv33/EQ",fontsize=10,color="white",style="solid",shape="box"];471 -> 3955[label="",style="solid", color="burlywood", weight=9]; 3955 -> 582[label="",style="solid", color="burlywood", weight=3]; 3956[label="xwv33/GT",fontsize=10,color="white",style="solid",shape="box"];471 -> 3956[label="",style="solid", color="burlywood", weight=9]; 3956 -> 583[label="",style="solid", color="burlywood", weight=3]; 472[label="(xwv280,xwv281) == xwv33",fontsize=16,color="burlywood",shape="box"];3957[label="xwv33/(xwv330,xwv331)",fontsize=10,color="white",style="solid",shape="box"];472 -> 3957[label="",style="solid", color="burlywood", weight=9]; 3957 -> 584[label="",style="solid", color="burlywood", weight=3]; 473[label="xwv280 : xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3958[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];473 -> 3958[label="",style="solid", color="burlywood", weight=9]; 3958 -> 585[label="",style="solid", color="burlywood", weight=3]; 3959[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];473 -> 3959[label="",style="solid", color="burlywood", weight=9]; 3959 -> 586[label="",style="solid", color="burlywood", weight=3]; 474[label="[] == xwv33",fontsize=16,color="burlywood",shape="box"];3960[label="xwv33/xwv330 : xwv331",fontsize=10,color="white",style="solid",shape="box"];474 -> 3960[label="",style="solid", color="burlywood", weight=9]; 3960 -> 587[label="",style="solid", color="burlywood", weight=3]; 3961[label="xwv33/[]",fontsize=10,color="white",style="solid",shape="box"];474 -> 3961[label="",style="solid", color="burlywood", weight=9]; 3961 -> 588[label="",style="solid", color="burlywood", weight=3]; 475[label="Integer xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3962[label="xwv33/Integer xwv330",fontsize=10,color="white",style="solid",shape="box"];475 -> 3962[label="",style="solid", color="burlywood", weight=9]; 3962 -> 589[label="",style="solid", color="burlywood", weight=3]; 476[label="() == xwv33",fontsize=16,color="burlywood",shape="box"];3963[label="xwv33/()",fontsize=10,color="white",style="solid",shape="box"];476 -> 3963[label="",style="solid", color="burlywood", weight=9]; 3963 -> 590[label="",style="solid", color="burlywood", weight=3]; 477[label="xwv280 :% xwv281 == xwv33",fontsize=16,color="burlywood",shape="box"];3964[label="xwv33/xwv330 :% xwv331",fontsize=10,color="white",style="solid",shape="box"];477 -> 3964[label="",style="solid", color="burlywood", weight=9]; 3964 -> 591[label="",style="solid", color="burlywood", weight=3]; 478[label="(xwv280,xwv281,xwv282) == xwv33",fontsize=16,color="burlywood",shape="box"];3965[label="xwv33/(xwv330,xwv331,xwv332)",fontsize=10,color="white",style="solid",shape="box"];478 -> 3965[label="",style="solid", color="burlywood", weight=9]; 3965 -> 592[label="",style="solid", color="burlywood", weight=3]; 479[label="primEqFloat xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3966[label="xwv28/Float xwv280 xwv281",fontsize=10,color="white",style="solid",shape="box"];479 -> 3966[label="",style="solid", color="burlywood", weight=9]; 3966 -> 593[label="",style="solid", color="burlywood", weight=3]; 480[label="Left xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3967[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];480 -> 3967[label="",style="solid", color="burlywood", weight=9]; 3967 -> 594[label="",style="solid", color="burlywood", weight=3]; 3968[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];480 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 595[label="",style="solid", color="burlywood", weight=3]; 481[label="Right xwv280 == xwv33",fontsize=16,color="burlywood",shape="box"];3969[label="xwv33/Left xwv330",fontsize=10,color="white",style="solid",shape="box"];481 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 596[label="",style="solid", color="burlywood", weight=3]; 3970[label="xwv33/Right xwv330",fontsize=10,color="white",style="solid",shape="box"];481 -> 3970[label="",style="solid", color="burlywood", weight=9]; 3970 -> 597[label="",style="solid", color="burlywood", weight=3]; 482[label="primEqChar xwv28 xwv33",fontsize=16,color="burlywood",shape="box"];3971[label="xwv28/Char xwv280",fontsize=10,color="white",style="solid",shape="box"];482 -> 3971[label="",style="solid", color="burlywood", weight=9]; 3971 -> 598[label="",style="solid", color="burlywood", weight=3]; 483[label="primEqInt xwv28 xwv33",fontsize=16,color="burlywood",shape="triangle"];3972[label="xwv28/Pos xwv280",fontsize=10,color="white",style="solid",shape="box"];483 -> 3972[label="",style="solid", color="burlywood", weight=9]; 3972 -> 599[label="",style="solid", color="burlywood", weight=3]; 3973[label="xwv28/Neg xwv280",fontsize=10,color="white",style="solid",shape="box"];483 -> 3973[label="",style="solid", color="burlywood", weight=9]; 3973 -> 600[label="",style="solid", color="burlywood", weight=3]; 484[label="error []",fontsize=16,color="red",shape="box"];485[label="FiniteMap.glueBal xwv51 xwv52",fontsize=16,color="burlywood",shape="box"];3974[label="xwv51/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];485 -> 3974[label="",style="solid", color="burlywood", weight=9]; 3974 -> 601[label="",style="solid", color="burlywood", weight=3]; 3975[label="xwv51/FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=10,color="white",style="solid",shape="box"];485 -> 3975[label="",style="solid", color="burlywood", weight=9]; 3975 -> 602[label="",style="solid", color="burlywood", weight=3]; 486 -> 1538[label="",style="dashed", color="red", weight=0]; 486[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35) (FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35)",fontsize=16,color="magenta"];486 -> 1539[label="",style="dashed", color="magenta", weight=3]; 486 -> 1540[label="",style="dashed", color="magenta", weight=3]; 487 -> 604[label="",style="dashed", color="red", weight=0]; 487[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35)",fontsize=16,color="magenta"];487 -> 605[label="",style="dashed", color="magenta", weight=3]; 488[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];488 -> 606[label="",style="solid", color="black", weight=3]; 489[label="EQ",fontsize=16,color="green",shape="box"];490[label="compare1 Nothing (Just xwv300) (Nothing <= Just xwv300)",fontsize=16,color="black",shape="box"];490 -> 607[label="",style="solid", color="black", weight=3]; 491[label="compare1 (Just xwv40) Nothing (Just xwv40 <= Nothing)",fontsize=16,color="black",shape="box"];491 -> 608[label="",style="solid", color="black", weight=3]; 493[label="xwv300",fontsize=16,color="green",shape="box"];494[label="xwv40",fontsize=16,color="green",shape="box"];495[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];3976[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 609[label="",style="solid", color="blue", weight=3]; 3977[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 610[label="",style="solid", color="blue", weight=3]; 3978[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 611[label="",style="solid", color="blue", weight=3]; 3979[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 612[label="",style="solid", color="blue", weight=3]; 3980[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 613[label="",style="solid", color="blue", weight=3]; 3981[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 614[label="",style="solid", color="blue", weight=3]; 3982[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 615[label="",style="solid", color="blue", weight=3]; 3983[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 616[label="",style="solid", color="blue", weight=3]; 3984[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 617[label="",style="solid", color="blue", weight=3]; 3985[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 618[label="",style="solid", color="blue", weight=3]; 3986[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 619[label="",style="solid", color="blue", weight=3]; 3987[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 620[label="",style="solid", color="blue", weight=3]; 3988[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 621[label="",style="solid", color="blue", weight=3]; 3989[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];495 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 622[label="",style="solid", color="blue", weight=3]; 492[label="compare2 (Just xwv61) (Just xwv62) xwv63",fontsize=16,color="burlywood",shape="triangle"];3990[label="xwv63/False",fontsize=10,color="white",style="solid",shape="box"];492 -> 3990[label="",style="solid", color="burlywood", weight=9]; 3990 -> 623[label="",style="solid", color="burlywood", weight=3]; 3991[label="xwv63/True",fontsize=10,color="white",style="solid",shape="box"];492 -> 3991[label="",style="solid", color="burlywood", weight=9]; 3991 -> 624[label="",style="solid", color="burlywood", weight=3]; 497[label="xwv40",fontsize=16,color="green",shape="box"];498[label="xwv300",fontsize=16,color="green",shape="box"];499[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];3992[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 625[label="",style="solid", color="blue", weight=3]; 3993[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 626[label="",style="solid", color="blue", weight=3]; 3994[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 627[label="",style="solid", color="blue", weight=3]; 3995[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 628[label="",style="solid", color="blue", weight=3]; 3996[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 629[label="",style="solid", color="blue", weight=3]; 3997[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 630[label="",style="solid", color="blue", weight=3]; 3998[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 631[label="",style="solid", color="blue", weight=3]; 3999[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 632[label="",style="solid", color="blue", weight=3]; 4000[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 633[label="",style="solid", color="blue", weight=3]; 4001[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 634[label="",style="solid", color="blue", weight=3]; 4002[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 635[label="",style="solid", color="blue", weight=3]; 4003[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 636[label="",style="solid", color="blue", weight=3]; 4004[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 637[label="",style="solid", color="blue", weight=3]; 4005[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 638[label="",style="solid", color="blue", weight=3]; 496[label="compare2 (Left xwv68) (Left xwv69) xwv70",fontsize=16,color="burlywood",shape="triangle"];4006[label="xwv70/False",fontsize=10,color="white",style="solid",shape="box"];496 -> 4006[label="",style="solid", color="burlywood", weight=9]; 4006 -> 639[label="",style="solid", color="burlywood", weight=3]; 4007[label="xwv70/True",fontsize=10,color="white",style="solid",shape="box"];496 -> 4007[label="",style="solid", color="burlywood", weight=9]; 4007 -> 640[label="",style="solid", color="burlywood", weight=3]; 500[label="compare1 (Left xwv40) (Right xwv300) (Left xwv40 <= Right xwv300)",fontsize=16,color="black",shape="box"];500 -> 641[label="",style="solid", color="black", weight=3]; 501[label="compare1 (Right xwv40) (Left xwv300) (Right xwv40 <= Left xwv300)",fontsize=16,color="black",shape="box"];501 -> 642[label="",style="solid", color="black", weight=3]; 503[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];4008[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 643[label="",style="solid", color="blue", weight=3]; 4009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 644[label="",style="solid", color="blue", weight=3]; 4010[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 645[label="",style="solid", color="blue", weight=3]; 4011[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 646[label="",style="solid", color="blue", weight=3]; 4012[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 647[label="",style="solid", color="blue", weight=3]; 4013[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 648[label="",style="solid", color="blue", weight=3]; 4014[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 649[label="",style="solid", color="blue", weight=3]; 4015[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 650[label="",style="solid", color="blue", weight=3]; 4016[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 651[label="",style="solid", color="blue", weight=3]; 4017[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 652[label="",style="solid", color="blue", weight=3]; 4018[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 653[label="",style="solid", color="blue", weight=3]; 4019[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 654[label="",style="solid", color="blue", weight=3]; 4020[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 655[label="",style="solid", color="blue", weight=3]; 4021[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];503 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 656[label="",style="solid", color="blue", weight=3]; 504[label="xwv40",fontsize=16,color="green",shape="box"];505[label="xwv300",fontsize=16,color="green",shape="box"];502[label="compare2 (Right xwv75) (Right xwv76) xwv77",fontsize=16,color="burlywood",shape="triangle"];4022[label="xwv77/False",fontsize=10,color="white",style="solid",shape="box"];502 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 657[label="",style="solid", color="burlywood", weight=3]; 4023[label="xwv77/True",fontsize=10,color="white",style="solid",shape="box"];502 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 658[label="",style="solid", color="burlywood", weight=3]; 506[label="Succ xwv400",fontsize=16,color="green",shape="box"];507[label="xwv300",fontsize=16,color="green",shape="box"];508 -> 353[label="",style="dashed", color="red", weight=0]; 508[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="magenta"];508 -> 659[label="",style="dashed", color="magenta", weight=3]; 508 -> 660[label="",style="dashed", color="magenta", weight=3]; 509[label="EQ",fontsize=16,color="green",shape="box"];510[label="GT",fontsize=16,color="green",shape="box"];511[label="EQ",fontsize=16,color="green",shape="box"];512[label="xwv300",fontsize=16,color="green",shape="box"];513[label="Succ xwv400",fontsize=16,color="green",shape="box"];514[label="LT",fontsize=16,color="green",shape="box"];515[label="EQ",fontsize=16,color="green",shape="box"];516 -> 353[label="",style="dashed", color="red", weight=0]; 516[label="primCmpNat (Succ xwv3000) Zero",fontsize=16,color="magenta"];516 -> 661[label="",style="dashed", color="magenta", weight=3]; 516 -> 662[label="",style="dashed", color="magenta", weight=3]; 517[label="EQ",fontsize=16,color="green",shape="box"];519[label="xwv56",fontsize=16,color="green",shape="box"];520[label="compare xwv40 xwv300",fontsize=16,color="blue",shape="box"];4024[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4024[label="",style="solid", color="blue", weight=9]; 4024 -> 663[label="",style="solid", color="blue", weight=3]; 4025[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4025[label="",style="solid", color="blue", weight=9]; 4025 -> 664[label="",style="solid", color="blue", weight=3]; 4026[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 665[label="",style="solid", color="blue", weight=3]; 4027[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 666[label="",style="solid", color="blue", weight=3]; 4028[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 667[label="",style="solid", color="blue", weight=3]; 4029[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 668[label="",style="solid", color="blue", weight=3]; 4030[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 669[label="",style="solid", color="blue", weight=3]; 4031[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 670[label="",style="solid", color="blue", weight=3]; 4032[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 671[label="",style="solid", color="blue", weight=3]; 4033[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 672[label="",style="solid", color="blue", weight=3]; 4034[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 673[label="",style="solid", color="blue", weight=3]; 4035[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 674[label="",style="solid", color="blue", weight=3]; 4036[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4036[label="",style="solid", color="blue", weight=9]; 4036 -> 675[label="",style="solid", color="blue", weight=3]; 4037[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];520 -> 4037[label="",style="solid", color="blue", weight=9]; 4037 -> 676[label="",style="solid", color="blue", weight=3]; 518[label="primCompAux0 xwv81 xwv82",fontsize=16,color="burlywood",shape="triangle"];4038[label="xwv82/LT",fontsize=10,color="white",style="solid",shape="box"];518 -> 4038[label="",style="solid", color="burlywood", weight=9]; 4038 -> 677[label="",style="solid", color="burlywood", weight=3]; 4039[label="xwv82/EQ",fontsize=10,color="white",style="solid",shape="box"];518 -> 4039[label="",style="solid", color="burlywood", weight=9]; 4039 -> 678[label="",style="solid", color="burlywood", weight=3]; 4040[label="xwv82/GT",fontsize=10,color="white",style="solid",shape="box"];518 -> 4040[label="",style="solid", color="burlywood", weight=9]; 4040 -> 679[label="",style="solid", color="burlywood", weight=3]; 521 -> 184[label="",style="dashed", color="red", weight=0]; 521[label="compare (xwv40 * Pos xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];521 -> 680[label="",style="dashed", color="magenta", weight=3]; 521 -> 681[label="",style="dashed", color="magenta", weight=3]; 522 -> 184[label="",style="dashed", color="red", weight=0]; 522[label="compare (xwv40 * Pos xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];522 -> 682[label="",style="dashed", color="magenta", weight=3]; 522 -> 683[label="",style="dashed", color="magenta", weight=3]; 523 -> 184[label="",style="dashed", color="red", weight=0]; 523[label="compare (xwv40 * Neg xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];523 -> 684[label="",style="dashed", color="magenta", weight=3]; 523 -> 685[label="",style="dashed", color="magenta", weight=3]; 524 -> 184[label="",style="dashed", color="red", weight=0]; 524[label="compare (xwv40 * Neg xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];524 -> 686[label="",style="dashed", color="magenta", weight=3]; 524 -> 687[label="",style="dashed", color="magenta", weight=3]; 525[label="primMulInt xwv40 xwv301",fontsize=16,color="burlywood",shape="triangle"];4041[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];525 -> 4041[label="",style="solid", color="burlywood", weight=9]; 4041 -> 688[label="",style="solid", color="burlywood", weight=3]; 4042[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];525 -> 4042[label="",style="solid", color="burlywood", weight=9]; 4042 -> 689[label="",style="solid", color="burlywood", weight=3]; 526[label="xwv300",fontsize=16,color="green",shape="box"];527[label="xwv41",fontsize=16,color="green",shape="box"];528[label="Integer xwv400 * xwv301",fontsize=16,color="burlywood",shape="box"];4043[label="xwv301/Integer xwv3010",fontsize=10,color="white",style="solid",shape="box"];528 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 690[label="",style="solid", color="burlywood", weight=3]; 529[label="xwv300",fontsize=16,color="green",shape="box"];530[label="xwv41",fontsize=16,color="green",shape="box"];1121[label="xwv41",fontsize=16,color="green",shape="box"];1122 -> 1178[label="",style="dashed", color="red", weight=0]; 1122[label="xwv40 == xwv300 && xwv41 == xwv301",fontsize=16,color="magenta"];1122 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1123[label="xwv300",fontsize=16,color="green",shape="box"];1124[label="xwv40",fontsize=16,color="green",shape="box"];1125[label="xwv301",fontsize=16,color="green",shape="box"];1120[label="compare2 (xwv125,xwv126) (xwv127,xwv128) xwv129",fontsize=16,color="burlywood",shape="triangle"];4044[label="xwv129/False",fontsize=10,color="white",style="solid",shape="box"];1120 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 1144[label="",style="solid", color="burlywood", weight=3]; 4045[label="xwv129/True",fontsize=10,color="white",style="solid",shape="box"];1120 -> 4045[label="",style="solid", color="burlywood", weight=9]; 4045 -> 1145[label="",style="solid", color="burlywood", weight=3]; 537[label="EQ",fontsize=16,color="green",shape="box"];538[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];538 -> 707[label="",style="solid", color="black", weight=3]; 539[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];539 -> 708[label="",style="solid", color="black", weight=3]; 540[label="EQ",fontsize=16,color="green",shape="box"];1149[label="xwv41",fontsize=16,color="green",shape="box"];1150[label="xwv300",fontsize=16,color="green",shape="box"];1151 -> 1178[label="",style="dashed", color="red", weight=0]; 1151[label="xwv40 == xwv300 && xwv41 == xwv301 && xwv42 == xwv302",fontsize=16,color="magenta"];1151 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1152[label="xwv302",fontsize=16,color="green",shape="box"];1153[label="xwv40",fontsize=16,color="green",shape="box"];1154[label="xwv42",fontsize=16,color="green",shape="box"];1155[label="xwv301",fontsize=16,color="green",shape="box"];1148[label="compare2 (xwv102,xwv103,xwv104) (xwv105,xwv106,xwv107) xwv130",fontsize=16,color="burlywood",shape="triangle"];4046[label="xwv130/False",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4046[label="",style="solid", color="burlywood", weight=9]; 4046 -> 1162[label="",style="solid", color="burlywood", weight=3]; 4047[label="xwv130/True",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4047[label="",style="solid", color="burlywood", weight=9]; 4047 -> 1163[label="",style="solid", color="burlywood", weight=3]; 549[label="EQ",fontsize=16,color="green",shape="box"];550[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];550 -> 725[label="",style="solid", color="black", weight=3]; 551[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];551 -> 726[label="",style="solid", color="black", weight=3]; 552[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];552 -> 727[label="",style="solid", color="black", weight=3]; 553[label="EQ",fontsize=16,color="green",shape="box"];554[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];554 -> 728[label="",style="solid", color="black", weight=3]; 555[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];555 -> 729[label="",style="solid", color="black", weight=3]; 556[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];556 -> 730[label="",style="solid", color="black", weight=3]; 557[label="EQ",fontsize=16,color="green",shape="box"];558[label="primCmpNat (Succ xwv400) (Succ xwv3000)",fontsize=16,color="black",shape="box"];558 -> 731[label="",style="solid", color="black", weight=3]; 559[label="primCmpNat (Succ xwv400) Zero",fontsize=16,color="black",shape="box"];559 -> 732[label="",style="solid", color="black", weight=3]; 560[label="primCmpNat Zero (Succ xwv3000)",fontsize=16,color="black",shape="box"];560 -> 733[label="",style="solid", color="black", weight=3]; 561[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];561 -> 734[label="",style="solid", color="black", weight=3]; 562 -> 184[label="",style="dashed", color="red", weight=0]; 562[label="compare (xwv40 * Pos xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];562 -> 735[label="",style="dashed", color="magenta", weight=3]; 562 -> 736[label="",style="dashed", color="magenta", weight=3]; 563 -> 184[label="",style="dashed", color="red", weight=0]; 563[label="compare (xwv40 * Pos xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];563 -> 737[label="",style="dashed", color="magenta", weight=3]; 563 -> 738[label="",style="dashed", color="magenta", weight=3]; 564 -> 184[label="",style="dashed", color="red", weight=0]; 564[label="compare (xwv40 * Neg xwv3010) (Pos xwv410 * xwv300)",fontsize=16,color="magenta"];564 -> 739[label="",style="dashed", color="magenta", weight=3]; 564 -> 740[label="",style="dashed", color="magenta", weight=3]; 565 -> 184[label="",style="dashed", color="red", weight=0]; 565[label="compare (xwv40 * Neg xwv3010) (Neg xwv410 * xwv300)",fontsize=16,color="magenta"];565 -> 741[label="",style="dashed", color="magenta", weight=3]; 565 -> 742[label="",style="dashed", color="magenta", weight=3]; 566[label="primEqDouble (Double xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4048[label="xwv33/Double xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];566 -> 4048[label="",style="solid", color="burlywood", weight=9]; 4048 -> 743[label="",style="solid", color="burlywood", weight=3]; 567[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];567 -> 744[label="",style="solid", color="black", weight=3]; 568[label="Nothing == Just xwv330",fontsize=16,color="black",shape="box"];568 -> 745[label="",style="solid", color="black", weight=3]; 569[label="Just xwv280 == Nothing",fontsize=16,color="black",shape="box"];569 -> 746[label="",style="solid", color="black", weight=3]; 570[label="Just xwv280 == Just xwv330",fontsize=16,color="black",shape="box"];570 -> 747[label="",style="solid", color="black", weight=3]; 571[label="False == False",fontsize=16,color="black",shape="box"];571 -> 748[label="",style="solid", color="black", weight=3]; 572[label="False == True",fontsize=16,color="black",shape="box"];572 -> 749[label="",style="solid", color="black", weight=3]; 573[label="True == False",fontsize=16,color="black",shape="box"];573 -> 750[label="",style="solid", color="black", weight=3]; 574[label="True == True",fontsize=16,color="black",shape="box"];574 -> 751[label="",style="solid", color="black", weight=3]; 575[label="LT == LT",fontsize=16,color="black",shape="box"];575 -> 752[label="",style="solid", color="black", weight=3]; 576[label="LT == EQ",fontsize=16,color="black",shape="box"];576 -> 753[label="",style="solid", color="black", weight=3]; 577[label="LT == GT",fontsize=16,color="black",shape="box"];577 -> 754[label="",style="solid", color="black", weight=3]; 578[label="EQ == LT",fontsize=16,color="black",shape="box"];578 -> 755[label="",style="solid", color="black", weight=3]; 579[label="EQ == EQ",fontsize=16,color="black",shape="box"];579 -> 756[label="",style="solid", color="black", weight=3]; 580[label="EQ == GT",fontsize=16,color="black",shape="box"];580 -> 757[label="",style="solid", color="black", weight=3]; 581[label="GT == LT",fontsize=16,color="black",shape="box"];581 -> 758[label="",style="solid", color="black", weight=3]; 582[label="GT == EQ",fontsize=16,color="black",shape="box"];582 -> 759[label="",style="solid", color="black", weight=3]; 583[label="GT == GT",fontsize=16,color="black",shape="box"];583 -> 760[label="",style="solid", color="black", weight=3]; 584[label="(xwv280,xwv281) == (xwv330,xwv331)",fontsize=16,color="black",shape="box"];584 -> 761[label="",style="solid", color="black", weight=3]; 585[label="xwv280 : xwv281 == xwv330 : xwv331",fontsize=16,color="black",shape="box"];585 -> 762[label="",style="solid", color="black", weight=3]; 586[label="xwv280 : xwv281 == []",fontsize=16,color="black",shape="box"];586 -> 763[label="",style="solid", color="black", weight=3]; 587[label="[] == xwv330 : xwv331",fontsize=16,color="black",shape="box"];587 -> 764[label="",style="solid", color="black", weight=3]; 588[label="[] == []",fontsize=16,color="black",shape="box"];588 -> 765[label="",style="solid", color="black", weight=3]; 589[label="Integer xwv280 == Integer xwv330",fontsize=16,color="black",shape="box"];589 -> 766[label="",style="solid", color="black", weight=3]; 590[label="() == ()",fontsize=16,color="black",shape="box"];590 -> 767[label="",style="solid", color="black", weight=3]; 591[label="xwv280 :% xwv281 == xwv330 :% xwv331",fontsize=16,color="black",shape="box"];591 -> 768[label="",style="solid", color="black", weight=3]; 592[label="(xwv280,xwv281,xwv282) == (xwv330,xwv331,xwv332)",fontsize=16,color="black",shape="box"];592 -> 769[label="",style="solid", color="black", weight=3]; 593[label="primEqFloat (Float xwv280 xwv281) xwv33",fontsize=16,color="burlywood",shape="box"];4049[label="xwv33/Float xwv330 xwv331",fontsize=10,color="white",style="solid",shape="box"];593 -> 4049[label="",style="solid", color="burlywood", weight=9]; 4049 -> 770[label="",style="solid", color="burlywood", weight=3]; 594[label="Left xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];594 -> 771[label="",style="solid", color="black", weight=3]; 595[label="Left xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];595 -> 772[label="",style="solid", color="black", weight=3]; 596[label="Right xwv280 == Left xwv330",fontsize=16,color="black",shape="box"];596 -> 773[label="",style="solid", color="black", weight=3]; 597[label="Right xwv280 == Right xwv330",fontsize=16,color="black",shape="box"];597 -> 774[label="",style="solid", color="black", weight=3]; 598[label="primEqChar (Char xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4050[label="xwv33/Char xwv330",fontsize=10,color="white",style="solid",shape="box"];598 -> 4050[label="",style="solid", color="burlywood", weight=9]; 4050 -> 775[label="",style="solid", color="burlywood", weight=3]; 599[label="primEqInt (Pos xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4051[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];599 -> 4051[label="",style="solid", color="burlywood", weight=9]; 4051 -> 776[label="",style="solid", color="burlywood", weight=3]; 4052[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];599 -> 4052[label="",style="solid", color="burlywood", weight=9]; 4052 -> 777[label="",style="solid", color="burlywood", weight=3]; 600[label="primEqInt (Neg xwv280) xwv33",fontsize=16,color="burlywood",shape="box"];4053[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];600 -> 4053[label="",style="solid", color="burlywood", weight=9]; 4053 -> 778[label="",style="solid", color="burlywood", weight=3]; 4054[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];600 -> 4054[label="",style="solid", color="burlywood", weight=9]; 4054 -> 779[label="",style="solid", color="burlywood", weight=3]; 601[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];601 -> 780[label="",style="solid", color="black", weight=3]; 602[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) xwv52",fontsize=16,color="burlywood",shape="box"];4055[label="xwv52/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];602 -> 4055[label="",style="solid", color="burlywood", weight=9]; 4055 -> 781[label="",style="solid", color="burlywood", weight=3]; 4056[label="xwv52/FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=10,color="white",style="solid",shape="box"];602 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 782[label="",style="solid", color="burlywood", weight=3]; 1539 -> 785[label="",style="dashed", color="red", weight=0]; 1539[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1540[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];1540 -> 1548[label="",style="solid", color="black", weight=3]; 1538[label="primPlusInt xwv162 xwv137",fontsize=16,color="burlywood",shape="triangle"];4057[label="xwv162/Pos xwv1620",fontsize=10,color="white",style="solid",shape="box"];1538 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 1549[label="",style="solid", color="burlywood", weight=3]; 4058[label="xwv162/Neg xwv1620",fontsize=10,color="white",style="solid",shape="box"];1538 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 1550[label="",style="solid", color="burlywood", weight=3]; 605 -> 23[label="",style="dashed", color="red", weight=0]; 605[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];605 -> 785[label="",style="dashed", color="magenta", weight=3]; 605 -> 786[label="",style="dashed", color="magenta", weight=3]; 604[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 xwv109",fontsize=16,color="burlywood",shape="triangle"];4059[label="xwv109/False",fontsize=10,color="white",style="solid",shape="box"];604 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 787[label="",style="solid", color="burlywood", weight=3]; 4060[label="xwv109/True",fontsize=10,color="white",style="solid",shape="box"];604 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 788[label="",style="solid", color="burlywood", weight=3]; 606[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];606 -> 789[label="",style="solid", color="black", weight=3]; 607[label="compare1 Nothing (Just xwv300) True",fontsize=16,color="black",shape="box"];607 -> 790[label="",style="solid", color="black", weight=3]; 608[label="compare1 (Just xwv40) Nothing False",fontsize=16,color="black",shape="box"];608 -> 791[label="",style="solid", color="black", weight=3]; 609 -> 387[label="",style="dashed", color="red", weight=0]; 609[label="xwv40 == xwv300",fontsize=16,color="magenta"];609 -> 792[label="",style="dashed", color="magenta", weight=3]; 609 -> 793[label="",style="dashed", color="magenta", weight=3]; 610 -> 388[label="",style="dashed", color="red", weight=0]; 610[label="xwv40 == xwv300",fontsize=16,color="magenta"];610 -> 794[label="",style="dashed", color="magenta", weight=3]; 610 -> 795[label="",style="dashed", color="magenta", weight=3]; 611 -> 389[label="",style="dashed", color="red", weight=0]; 611[label="xwv40 == xwv300",fontsize=16,color="magenta"];611 -> 796[label="",style="dashed", color="magenta", weight=3]; 611 -> 797[label="",style="dashed", color="magenta", weight=3]; 612 -> 390[label="",style="dashed", color="red", weight=0]; 612[label="xwv40 == xwv300",fontsize=16,color="magenta"];612 -> 798[label="",style="dashed", color="magenta", weight=3]; 612 -> 799[label="",style="dashed", color="magenta", weight=3]; 613 -> 391[label="",style="dashed", color="red", weight=0]; 613[label="xwv40 == xwv300",fontsize=16,color="magenta"];613 -> 800[label="",style="dashed", color="magenta", weight=3]; 613 -> 801[label="",style="dashed", color="magenta", weight=3]; 614 -> 392[label="",style="dashed", color="red", weight=0]; 614[label="xwv40 == xwv300",fontsize=16,color="magenta"];614 -> 802[label="",style="dashed", color="magenta", weight=3]; 614 -> 803[label="",style="dashed", color="magenta", weight=3]; 615 -> 393[label="",style="dashed", color="red", weight=0]; 615[label="xwv40 == xwv300",fontsize=16,color="magenta"];615 -> 804[label="",style="dashed", color="magenta", weight=3]; 615 -> 805[label="",style="dashed", color="magenta", weight=3]; 616 -> 394[label="",style="dashed", color="red", weight=0]; 616[label="xwv40 == xwv300",fontsize=16,color="magenta"];616 -> 806[label="",style="dashed", color="magenta", weight=3]; 616 -> 807[label="",style="dashed", color="magenta", weight=3]; 617 -> 395[label="",style="dashed", color="red", weight=0]; 617[label="xwv40 == xwv300",fontsize=16,color="magenta"];617 -> 808[label="",style="dashed", color="magenta", weight=3]; 617 -> 809[label="",style="dashed", color="magenta", weight=3]; 618 -> 396[label="",style="dashed", color="red", weight=0]; 618[label="xwv40 == xwv300",fontsize=16,color="magenta"];618 -> 810[label="",style="dashed", color="magenta", weight=3]; 618 -> 811[label="",style="dashed", color="magenta", weight=3]; 619 -> 397[label="",style="dashed", color="red", weight=0]; 619[label="xwv40 == xwv300",fontsize=16,color="magenta"];619 -> 812[label="",style="dashed", color="magenta", weight=3]; 619 -> 813[label="",style="dashed", color="magenta", weight=3]; 620 -> 398[label="",style="dashed", color="red", weight=0]; 620[label="xwv40 == xwv300",fontsize=16,color="magenta"];620 -> 814[label="",style="dashed", color="magenta", weight=3]; 620 -> 815[label="",style="dashed", color="magenta", weight=3]; 621 -> 399[label="",style="dashed", color="red", weight=0]; 621[label="xwv40 == xwv300",fontsize=16,color="magenta"];621 -> 816[label="",style="dashed", color="magenta", weight=3]; 621 -> 817[label="",style="dashed", color="magenta", weight=3]; 622 -> 400[label="",style="dashed", color="red", weight=0]; 622[label="xwv40 == xwv300",fontsize=16,color="magenta"];622 -> 818[label="",style="dashed", color="magenta", weight=3]; 622 -> 819[label="",style="dashed", color="magenta", weight=3]; 623[label="compare2 (Just xwv61) (Just xwv62) False",fontsize=16,color="black",shape="box"];623 -> 820[label="",style="solid", color="black", weight=3]; 624[label="compare2 (Just xwv61) (Just xwv62) True",fontsize=16,color="black",shape="box"];624 -> 821[label="",style="solid", color="black", weight=3]; 625 -> 387[label="",style="dashed", color="red", weight=0]; 625[label="xwv40 == xwv300",fontsize=16,color="magenta"];625 -> 822[label="",style="dashed", color="magenta", weight=3]; 625 -> 823[label="",style="dashed", color="magenta", weight=3]; 626 -> 388[label="",style="dashed", color="red", weight=0]; 626[label="xwv40 == xwv300",fontsize=16,color="magenta"];626 -> 824[label="",style="dashed", color="magenta", weight=3]; 626 -> 825[label="",style="dashed", color="magenta", weight=3]; 627 -> 389[label="",style="dashed", color="red", weight=0]; 627[label="xwv40 == xwv300",fontsize=16,color="magenta"];627 -> 826[label="",style="dashed", color="magenta", weight=3]; 627 -> 827[label="",style="dashed", color="magenta", weight=3]; 628 -> 390[label="",style="dashed", color="red", weight=0]; 628[label="xwv40 == xwv300",fontsize=16,color="magenta"];628 -> 828[label="",style="dashed", color="magenta", weight=3]; 628 -> 829[label="",style="dashed", color="magenta", weight=3]; 629 -> 391[label="",style="dashed", color="red", weight=0]; 629[label="xwv40 == xwv300",fontsize=16,color="magenta"];629 -> 830[label="",style="dashed", color="magenta", weight=3]; 629 -> 831[label="",style="dashed", color="magenta", weight=3]; 630 -> 392[label="",style="dashed", color="red", weight=0]; 630[label="xwv40 == xwv300",fontsize=16,color="magenta"];630 -> 832[label="",style="dashed", color="magenta", weight=3]; 630 -> 833[label="",style="dashed", color="magenta", weight=3]; 631 -> 393[label="",style="dashed", color="red", weight=0]; 631[label="xwv40 == xwv300",fontsize=16,color="magenta"];631 -> 834[label="",style="dashed", color="magenta", weight=3]; 631 -> 835[label="",style="dashed", color="magenta", weight=3]; 632 -> 394[label="",style="dashed", color="red", weight=0]; 632[label="xwv40 == xwv300",fontsize=16,color="magenta"];632 -> 836[label="",style="dashed", color="magenta", weight=3]; 632 -> 837[label="",style="dashed", color="magenta", weight=3]; 633 -> 395[label="",style="dashed", color="red", weight=0]; 633[label="xwv40 == xwv300",fontsize=16,color="magenta"];633 -> 838[label="",style="dashed", color="magenta", weight=3]; 633 -> 839[label="",style="dashed", color="magenta", weight=3]; 634 -> 396[label="",style="dashed", color="red", weight=0]; 634[label="xwv40 == xwv300",fontsize=16,color="magenta"];634 -> 840[label="",style="dashed", color="magenta", weight=3]; 634 -> 841[label="",style="dashed", color="magenta", weight=3]; 635 -> 397[label="",style="dashed", color="red", weight=0]; 635[label="xwv40 == xwv300",fontsize=16,color="magenta"];635 -> 842[label="",style="dashed", color="magenta", weight=3]; 635 -> 843[label="",style="dashed", color="magenta", weight=3]; 636 -> 398[label="",style="dashed", color="red", weight=0]; 636[label="xwv40 == xwv300",fontsize=16,color="magenta"];636 -> 844[label="",style="dashed", color="magenta", weight=3]; 636 -> 845[label="",style="dashed", color="magenta", weight=3]; 637 -> 399[label="",style="dashed", color="red", weight=0]; 637[label="xwv40 == xwv300",fontsize=16,color="magenta"];637 -> 846[label="",style="dashed", color="magenta", weight=3]; 637 -> 847[label="",style="dashed", color="magenta", weight=3]; 638 -> 400[label="",style="dashed", color="red", weight=0]; 638[label="xwv40 == xwv300",fontsize=16,color="magenta"];638 -> 848[label="",style="dashed", color="magenta", weight=3]; 638 -> 849[label="",style="dashed", color="magenta", weight=3]; 639[label="compare2 (Left xwv68) (Left xwv69) False",fontsize=16,color="black",shape="box"];639 -> 850[label="",style="solid", color="black", weight=3]; 640[label="compare2 (Left xwv68) (Left xwv69) True",fontsize=16,color="black",shape="box"];640 -> 851[label="",style="solid", color="black", weight=3]; 641[label="compare1 (Left xwv40) (Right xwv300) True",fontsize=16,color="black",shape="box"];641 -> 852[label="",style="solid", color="black", weight=3]; 642[label="compare1 (Right xwv40) (Left xwv300) False",fontsize=16,color="black",shape="box"];642 -> 853[label="",style="solid", color="black", weight=3]; 643 -> 387[label="",style="dashed", color="red", weight=0]; 643[label="xwv40 == xwv300",fontsize=16,color="magenta"];643 -> 854[label="",style="dashed", color="magenta", weight=3]; 643 -> 855[label="",style="dashed", color="magenta", weight=3]; 644 -> 388[label="",style="dashed", color="red", weight=0]; 644[label="xwv40 == xwv300",fontsize=16,color="magenta"];644 -> 856[label="",style="dashed", color="magenta", weight=3]; 644 -> 857[label="",style="dashed", color="magenta", weight=3]; 645 -> 389[label="",style="dashed", color="red", weight=0]; 645[label="xwv40 == xwv300",fontsize=16,color="magenta"];645 -> 858[label="",style="dashed", color="magenta", weight=3]; 645 -> 859[label="",style="dashed", color="magenta", weight=3]; 646 -> 390[label="",style="dashed", color="red", weight=0]; 646[label="xwv40 == xwv300",fontsize=16,color="magenta"];646 -> 860[label="",style="dashed", color="magenta", weight=3]; 646 -> 861[label="",style="dashed", color="magenta", weight=3]; 647 -> 391[label="",style="dashed", color="red", weight=0]; 647[label="xwv40 == xwv300",fontsize=16,color="magenta"];647 -> 862[label="",style="dashed", color="magenta", weight=3]; 647 -> 863[label="",style="dashed", color="magenta", weight=3]; 648 -> 392[label="",style="dashed", color="red", weight=0]; 648[label="xwv40 == xwv300",fontsize=16,color="magenta"];648 -> 864[label="",style="dashed", color="magenta", weight=3]; 648 -> 865[label="",style="dashed", color="magenta", weight=3]; 649 -> 393[label="",style="dashed", color="red", weight=0]; 649[label="xwv40 == xwv300",fontsize=16,color="magenta"];649 -> 866[label="",style="dashed", color="magenta", weight=3]; 649 -> 867[label="",style="dashed", color="magenta", weight=3]; 650 -> 394[label="",style="dashed", color="red", weight=0]; 650[label="xwv40 == xwv300",fontsize=16,color="magenta"];650 -> 868[label="",style="dashed", color="magenta", weight=3]; 650 -> 869[label="",style="dashed", color="magenta", weight=3]; 651 -> 395[label="",style="dashed", color="red", weight=0]; 651[label="xwv40 == xwv300",fontsize=16,color="magenta"];651 -> 870[label="",style="dashed", color="magenta", weight=3]; 651 -> 871[label="",style="dashed", color="magenta", weight=3]; 652 -> 396[label="",style="dashed", color="red", weight=0]; 652[label="xwv40 == xwv300",fontsize=16,color="magenta"];652 -> 872[label="",style="dashed", color="magenta", weight=3]; 652 -> 873[label="",style="dashed", color="magenta", weight=3]; 653 -> 397[label="",style="dashed", color="red", weight=0]; 653[label="xwv40 == xwv300",fontsize=16,color="magenta"];653 -> 874[label="",style="dashed", color="magenta", weight=3]; 653 -> 875[label="",style="dashed", color="magenta", weight=3]; 654 -> 398[label="",style="dashed", color="red", weight=0]; 654[label="xwv40 == xwv300",fontsize=16,color="magenta"];654 -> 876[label="",style="dashed", color="magenta", weight=3]; 654 -> 877[label="",style="dashed", color="magenta", weight=3]; 655 -> 399[label="",style="dashed", color="red", weight=0]; 655[label="xwv40 == xwv300",fontsize=16,color="magenta"];655 -> 878[label="",style="dashed", color="magenta", weight=3]; 655 -> 879[label="",style="dashed", color="magenta", weight=3]; 656 -> 400[label="",style="dashed", color="red", weight=0]; 656[label="xwv40 == xwv300",fontsize=16,color="magenta"];656 -> 880[label="",style="dashed", color="magenta", weight=3]; 656 -> 881[label="",style="dashed", color="magenta", weight=3]; 657[label="compare2 (Right xwv75) (Right xwv76) False",fontsize=16,color="black",shape="box"];657 -> 882[label="",style="solid", color="black", weight=3]; 658[label="compare2 (Right xwv75) (Right xwv76) True",fontsize=16,color="black",shape="box"];658 -> 883[label="",style="solid", color="black", weight=3]; 659[label="Zero",fontsize=16,color="green",shape="box"];660[label="Succ xwv3000",fontsize=16,color="green",shape="box"];661[label="Succ xwv3000",fontsize=16,color="green",shape="box"];662[label="Zero",fontsize=16,color="green",shape="box"];663 -> 181[label="",style="dashed", color="red", weight=0]; 663[label="compare xwv40 xwv300",fontsize=16,color="magenta"];663 -> 884[label="",style="dashed", color="magenta", weight=3]; 663 -> 885[label="",style="dashed", color="magenta", weight=3]; 664 -> 182[label="",style="dashed", color="red", weight=0]; 664[label="compare xwv40 xwv300",fontsize=16,color="magenta"];664 -> 886[label="",style="dashed", color="magenta", weight=3]; 664 -> 887[label="",style="dashed", color="magenta", weight=3]; 665 -> 183[label="",style="dashed", color="red", weight=0]; 665[label="compare xwv40 xwv300",fontsize=16,color="magenta"];665 -> 888[label="",style="dashed", color="magenta", weight=3]; 665 -> 889[label="",style="dashed", color="magenta", weight=3]; 666 -> 184[label="",style="dashed", color="red", weight=0]; 666[label="compare xwv40 xwv300",fontsize=16,color="magenta"];666 -> 890[label="",style="dashed", color="magenta", weight=3]; 666 -> 891[label="",style="dashed", color="magenta", weight=3]; 667 -> 185[label="",style="dashed", color="red", weight=0]; 667[label="compare xwv40 xwv300",fontsize=16,color="magenta"];667 -> 892[label="",style="dashed", color="magenta", weight=3]; 667 -> 893[label="",style="dashed", color="magenta", weight=3]; 668 -> 186[label="",style="dashed", color="red", weight=0]; 668[label="compare xwv40 xwv300",fontsize=16,color="magenta"];668 -> 894[label="",style="dashed", color="magenta", weight=3]; 668 -> 895[label="",style="dashed", color="magenta", weight=3]; 669 -> 187[label="",style="dashed", color="red", weight=0]; 669[label="compare xwv40 xwv300",fontsize=16,color="magenta"];669 -> 896[label="",style="dashed", color="magenta", weight=3]; 669 -> 897[label="",style="dashed", color="magenta", weight=3]; 670 -> 188[label="",style="dashed", color="red", weight=0]; 670[label="compare xwv40 xwv300",fontsize=16,color="magenta"];670 -> 898[label="",style="dashed", color="magenta", weight=3]; 670 -> 899[label="",style="dashed", color="magenta", weight=3]; 671 -> 189[label="",style="dashed", color="red", weight=0]; 671[label="compare xwv40 xwv300",fontsize=16,color="magenta"];671 -> 900[label="",style="dashed", color="magenta", weight=3]; 671 -> 901[label="",style="dashed", color="magenta", weight=3]; 672 -> 190[label="",style="dashed", color="red", weight=0]; 672[label="compare xwv40 xwv300",fontsize=16,color="magenta"];672 -> 902[label="",style="dashed", color="magenta", weight=3]; 672 -> 903[label="",style="dashed", color="magenta", weight=3]; 673 -> 191[label="",style="dashed", color="red", weight=0]; 673[label="compare xwv40 xwv300",fontsize=16,color="magenta"];673 -> 904[label="",style="dashed", color="magenta", weight=3]; 673 -> 905[label="",style="dashed", color="magenta", weight=3]; 674 -> 192[label="",style="dashed", color="red", weight=0]; 674[label="compare xwv40 xwv300",fontsize=16,color="magenta"];674 -> 906[label="",style="dashed", color="magenta", weight=3]; 674 -> 907[label="",style="dashed", color="magenta", weight=3]; 675 -> 193[label="",style="dashed", color="red", weight=0]; 675[label="compare xwv40 xwv300",fontsize=16,color="magenta"];675 -> 908[label="",style="dashed", color="magenta", weight=3]; 675 -> 909[label="",style="dashed", color="magenta", weight=3]; 676 -> 194[label="",style="dashed", color="red", weight=0]; 676[label="compare xwv40 xwv300",fontsize=16,color="magenta"];676 -> 910[label="",style="dashed", color="magenta", weight=3]; 676 -> 911[label="",style="dashed", color="magenta", weight=3]; 677[label="primCompAux0 xwv81 LT",fontsize=16,color="black",shape="box"];677 -> 912[label="",style="solid", color="black", weight=3]; 678[label="primCompAux0 xwv81 EQ",fontsize=16,color="black",shape="box"];678 -> 913[label="",style="solid", color="black", weight=3]; 679[label="primCompAux0 xwv81 GT",fontsize=16,color="black",shape="box"];679 -> 914[label="",style="solid", color="black", weight=3]; 680 -> 436[label="",style="dashed", color="red", weight=0]; 680[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];680 -> 915[label="",style="dashed", color="magenta", weight=3]; 680 -> 916[label="",style="dashed", color="magenta", weight=3]; 681 -> 436[label="",style="dashed", color="red", weight=0]; 681[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];681 -> 917[label="",style="dashed", color="magenta", weight=3]; 681 -> 918[label="",style="dashed", color="magenta", weight=3]; 682 -> 436[label="",style="dashed", color="red", weight=0]; 682[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];682 -> 919[label="",style="dashed", color="magenta", weight=3]; 682 -> 920[label="",style="dashed", color="magenta", weight=3]; 683 -> 436[label="",style="dashed", color="red", weight=0]; 683[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];683 -> 921[label="",style="dashed", color="magenta", weight=3]; 683 -> 922[label="",style="dashed", color="magenta", weight=3]; 684 -> 436[label="",style="dashed", color="red", weight=0]; 684[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];684 -> 923[label="",style="dashed", color="magenta", weight=3]; 684 -> 924[label="",style="dashed", color="magenta", weight=3]; 685 -> 436[label="",style="dashed", color="red", weight=0]; 685[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];685 -> 925[label="",style="dashed", color="magenta", weight=3]; 685 -> 926[label="",style="dashed", color="magenta", weight=3]; 686 -> 436[label="",style="dashed", color="red", weight=0]; 686[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];686 -> 927[label="",style="dashed", color="magenta", weight=3]; 686 -> 928[label="",style="dashed", color="magenta", weight=3]; 687 -> 436[label="",style="dashed", color="red", weight=0]; 687[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];687 -> 929[label="",style="dashed", color="magenta", weight=3]; 687 -> 930[label="",style="dashed", color="magenta", weight=3]; 688[label="primMulInt (Pos xwv400) xwv301",fontsize=16,color="burlywood",shape="box"];4061[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];688 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 931[label="",style="solid", color="burlywood", weight=3]; 4062[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];688 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 932[label="",style="solid", color="burlywood", weight=3]; 689[label="primMulInt (Neg xwv400) xwv301",fontsize=16,color="burlywood",shape="box"];4063[label="xwv301/Pos xwv3010",fontsize=10,color="white",style="solid",shape="box"];689 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 933[label="",style="solid", color="burlywood", weight=3]; 4064[label="xwv301/Neg xwv3010",fontsize=10,color="white",style="solid",shape="box"];689 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 934[label="",style="solid", color="burlywood", weight=3]; 690[label="Integer xwv400 * Integer xwv3010",fontsize=16,color="black",shape="box"];690 -> 935[label="",style="solid", color="black", weight=3]; 1179[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];4065[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4065[label="",style="solid", color="blue", weight=9]; 4065 -> 1197[label="",style="solid", color="blue", weight=3]; 4066[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4066[label="",style="solid", color="blue", weight=9]; 4066 -> 1198[label="",style="solid", color="blue", weight=3]; 4067[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4067[label="",style="solid", color="blue", weight=9]; 4067 -> 1199[label="",style="solid", color="blue", weight=3]; 4068[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4068[label="",style="solid", color="blue", weight=9]; 4068 -> 1200[label="",style="solid", color="blue", weight=3]; 4069[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4069[label="",style="solid", color="blue", weight=9]; 4069 -> 1201[label="",style="solid", color="blue", weight=3]; 4070[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4070[label="",style="solid", color="blue", weight=9]; 4070 -> 1202[label="",style="solid", color="blue", weight=3]; 4071[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 1203[label="",style="solid", color="blue", weight=3]; 4072[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 1204[label="",style="solid", color="blue", weight=3]; 4073[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 1205[label="",style="solid", color="blue", weight=3]; 4074[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 1206[label="",style="solid", color="blue", weight=3]; 4075[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 1207[label="",style="solid", color="blue", weight=3]; 4076[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 1208[label="",style="solid", color="blue", weight=3]; 4077[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 1209[label="",style="solid", color="blue", weight=3]; 4078[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1179 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 1210[label="",style="solid", color="blue", weight=3]; 1180[label="xwv41 == xwv301",fontsize=16,color="blue",shape="box"];4079[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 1211[label="",style="solid", color="blue", weight=3]; 4080[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 1212[label="",style="solid", color="blue", weight=3]; 4081[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 1213[label="",style="solid", color="blue", weight=3]; 4082[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 1214[label="",style="solid", color="blue", weight=3]; 4083[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 1215[label="",style="solid", color="blue", weight=3]; 4084[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 1216[label="",style="solid", color="blue", weight=3]; 4085[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 1217[label="",style="solid", color="blue", weight=3]; 4086[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 1218[label="",style="solid", color="blue", weight=3]; 4087[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 1219[label="",style="solid", color="blue", weight=3]; 4088[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 1220[label="",style="solid", color="blue", weight=3]; 4089[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 1221[label="",style="solid", color="blue", weight=3]; 4090[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 1222[label="",style="solid", color="blue", weight=3]; 4091[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 1223[label="",style="solid", color="blue", weight=3]; 4092[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 1224[label="",style="solid", color="blue", weight=3]; 1178[label="xwv134 && xwv135",fontsize=16,color="burlywood",shape="triangle"];4093[label="xwv134/False",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4093[label="",style="solid", color="burlywood", weight=9]; 4093 -> 1225[label="",style="solid", color="burlywood", weight=3]; 4094[label="xwv134/True",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4094[label="",style="solid", color="burlywood", weight=9]; 4094 -> 1226[label="",style="solid", color="burlywood", weight=3]; 1144[label="compare2 (xwv125,xwv126) (xwv127,xwv128) False",fontsize=16,color="black",shape="box"];1144 -> 1227[label="",style="solid", color="black", weight=3]; 1145[label="compare2 (xwv125,xwv126) (xwv127,xwv128) True",fontsize=16,color="black",shape="box"];1145 -> 1228[label="",style="solid", color="black", weight=3]; 707[label="compare1 False True True",fontsize=16,color="black",shape="box"];707 -> 966[label="",style="solid", color="black", weight=3]; 708[label="compare1 True False False",fontsize=16,color="black",shape="box"];708 -> 967[label="",style="solid", color="black", weight=3]; 1181[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];4095[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 1229[label="",style="solid", color="blue", weight=3]; 4096[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 1230[label="",style="solid", color="blue", weight=3]; 4097[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 1231[label="",style="solid", color="blue", weight=3]; 4098[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 1232[label="",style="solid", color="blue", weight=3]; 4099[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 1233[label="",style="solid", color="blue", weight=3]; 4100[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 1234[label="",style="solid", color="blue", weight=3]; 4101[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 1235[label="",style="solid", color="blue", weight=3]; 4102[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 1236[label="",style="solid", color="blue", weight=3]; 4103[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 1237[label="",style="solid", color="blue", weight=3]; 4104[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 1238[label="",style="solid", color="blue", weight=3]; 4105[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 1239[label="",style="solid", color="blue", weight=3]; 4106[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 1240[label="",style="solid", color="blue", weight=3]; 4107[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 1241[label="",style="solid", color="blue", weight=3]; 4108[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1181 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 1242[label="",style="solid", color="blue", weight=3]; 1182 -> 1178[label="",style="dashed", color="red", weight=0]; 1182[label="xwv41 == xwv301 && xwv42 == xwv302",fontsize=16,color="magenta"];1182 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1162[label="compare2 (xwv102,xwv103,xwv104) (xwv105,xwv106,xwv107) False",fontsize=16,color="black",shape="box"];1162 -> 1245[label="",style="solid", color="black", weight=3]; 1163[label="compare2 (xwv102,xwv103,xwv104) (xwv105,xwv106,xwv107) True",fontsize=16,color="black",shape="box"];1163 -> 1246[label="",style="solid", color="black", weight=3]; 725[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];725 -> 998[label="",style="solid", color="black", weight=3]; 726[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];726 -> 999[label="",style="solid", color="black", weight=3]; 727[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];727 -> 1000[label="",style="solid", color="black", weight=3]; 728[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];728 -> 1001[label="",style="solid", color="black", weight=3]; 729[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];729 -> 1002[label="",style="solid", color="black", weight=3]; 730[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];730 -> 1003[label="",style="solid", color="black", weight=3]; 731 -> 353[label="",style="dashed", color="red", weight=0]; 731[label="primCmpNat xwv400 xwv3000",fontsize=16,color="magenta"];731 -> 1004[label="",style="dashed", color="magenta", weight=3]; 731 -> 1005[label="",style="dashed", color="magenta", weight=3]; 732[label="GT",fontsize=16,color="green",shape="box"];733[label="LT",fontsize=16,color="green",shape="box"];734[label="EQ",fontsize=16,color="green",shape="box"];735 -> 436[label="",style="dashed", color="red", weight=0]; 735[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];735 -> 1006[label="",style="dashed", color="magenta", weight=3]; 735 -> 1007[label="",style="dashed", color="magenta", weight=3]; 736 -> 436[label="",style="dashed", color="red", weight=0]; 736[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];736 -> 1008[label="",style="dashed", color="magenta", weight=3]; 736 -> 1009[label="",style="dashed", color="magenta", weight=3]; 737 -> 436[label="",style="dashed", color="red", weight=0]; 737[label="xwv40 * Pos xwv3010",fontsize=16,color="magenta"];737 -> 1010[label="",style="dashed", color="magenta", weight=3]; 737 -> 1011[label="",style="dashed", color="magenta", weight=3]; 738 -> 436[label="",style="dashed", color="red", weight=0]; 738[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];738 -> 1012[label="",style="dashed", color="magenta", weight=3]; 738 -> 1013[label="",style="dashed", color="magenta", weight=3]; 739 -> 436[label="",style="dashed", color="red", weight=0]; 739[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];739 -> 1014[label="",style="dashed", color="magenta", weight=3]; 739 -> 1015[label="",style="dashed", color="magenta", weight=3]; 740 -> 436[label="",style="dashed", color="red", weight=0]; 740[label="Pos xwv410 * xwv300",fontsize=16,color="magenta"];740 -> 1016[label="",style="dashed", color="magenta", weight=3]; 740 -> 1017[label="",style="dashed", color="magenta", weight=3]; 741 -> 436[label="",style="dashed", color="red", weight=0]; 741[label="xwv40 * Neg xwv3010",fontsize=16,color="magenta"];741 -> 1018[label="",style="dashed", color="magenta", weight=3]; 741 -> 1019[label="",style="dashed", color="magenta", weight=3]; 742 -> 436[label="",style="dashed", color="red", weight=0]; 742[label="Neg xwv410 * xwv300",fontsize=16,color="magenta"];742 -> 1020[label="",style="dashed", color="magenta", weight=3]; 742 -> 1021[label="",style="dashed", color="magenta", weight=3]; 743[label="primEqDouble (Double xwv280 xwv281) (Double xwv330 xwv331)",fontsize=16,color="black",shape="box"];743 -> 1022[label="",style="solid", color="black", weight=3]; 744[label="True",fontsize=16,color="green",shape="box"];745[label="False",fontsize=16,color="green",shape="box"];746[label="False",fontsize=16,color="green",shape="box"];747[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4109[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 1023[label="",style="solid", color="blue", weight=3]; 4110[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 1024[label="",style="solid", color="blue", weight=3]; 4111[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4111[label="",style="solid", color="blue", weight=9]; 4111 -> 1025[label="",style="solid", color="blue", weight=3]; 4112[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4112[label="",style="solid", color="blue", weight=9]; 4112 -> 1026[label="",style="solid", color="blue", weight=3]; 4113[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4113[label="",style="solid", color="blue", weight=9]; 4113 -> 1027[label="",style="solid", color="blue", weight=3]; 4114[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4114[label="",style="solid", color="blue", weight=9]; 4114 -> 1028[label="",style="solid", color="blue", weight=3]; 4115[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4115[label="",style="solid", color="blue", weight=9]; 4115 -> 1029[label="",style="solid", color="blue", weight=3]; 4116[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4116[label="",style="solid", color="blue", weight=9]; 4116 -> 1030[label="",style="solid", color="blue", weight=3]; 4117[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4117[label="",style="solid", color="blue", weight=9]; 4117 -> 1031[label="",style="solid", color="blue", weight=3]; 4118[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4118[label="",style="solid", color="blue", weight=9]; 4118 -> 1032[label="",style="solid", color="blue", weight=3]; 4119[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4119[label="",style="solid", color="blue", weight=9]; 4119 -> 1033[label="",style="solid", color="blue", weight=3]; 4120[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4120[label="",style="solid", color="blue", weight=9]; 4120 -> 1034[label="",style="solid", color="blue", weight=3]; 4121[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 1035[label="",style="solid", color="blue", weight=3]; 4122[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 1036[label="",style="solid", color="blue", weight=3]; 748[label="True",fontsize=16,color="green",shape="box"];749[label="False",fontsize=16,color="green",shape="box"];750[label="False",fontsize=16,color="green",shape="box"];751[label="True",fontsize=16,color="green",shape="box"];752[label="True",fontsize=16,color="green",shape="box"];753[label="False",fontsize=16,color="green",shape="box"];754[label="False",fontsize=16,color="green",shape="box"];755[label="False",fontsize=16,color="green",shape="box"];756[label="True",fontsize=16,color="green",shape="box"];757[label="False",fontsize=16,color="green",shape="box"];758[label="False",fontsize=16,color="green",shape="box"];759[label="False",fontsize=16,color="green",shape="box"];760[label="True",fontsize=16,color="green",shape="box"];761 -> 1178[label="",style="dashed", color="red", weight=0]; 761[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];761 -> 1187[label="",style="dashed", color="magenta", weight=3]; 761 -> 1188[label="",style="dashed", color="magenta", weight=3]; 762 -> 1178[label="",style="dashed", color="red", weight=0]; 762[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];762 -> 1189[label="",style="dashed", color="magenta", weight=3]; 762 -> 1190[label="",style="dashed", color="magenta", weight=3]; 763[label="False",fontsize=16,color="green",shape="box"];764[label="False",fontsize=16,color="green",shape="box"];765[label="True",fontsize=16,color="green",shape="box"];766 -> 483[label="",style="dashed", color="red", weight=0]; 766[label="primEqInt xwv280 xwv330",fontsize=16,color="magenta"];766 -> 1047[label="",style="dashed", color="magenta", weight=3]; 766 -> 1048[label="",style="dashed", color="magenta", weight=3]; 767[label="True",fontsize=16,color="green",shape="box"];768 -> 1178[label="",style="dashed", color="red", weight=0]; 768[label="xwv280 == xwv330 && xwv281 == xwv331",fontsize=16,color="magenta"];768 -> 1191[label="",style="dashed", color="magenta", weight=3]; 768 -> 1192[label="",style="dashed", color="magenta", weight=3]; 769 -> 1178[label="",style="dashed", color="red", weight=0]; 769[label="xwv280 == xwv330 && xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];769 -> 1193[label="",style="dashed", color="magenta", weight=3]; 769 -> 1194[label="",style="dashed", color="magenta", weight=3]; 770[label="primEqFloat (Float xwv280 xwv281) (Float xwv330 xwv331)",fontsize=16,color="black",shape="box"];770 -> 1060[label="",style="solid", color="black", weight=3]; 771[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4123[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 1061[label="",style="solid", color="blue", weight=3]; 4124[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 1062[label="",style="solid", color="blue", weight=3]; 4125[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 1063[label="",style="solid", color="blue", weight=3]; 4126[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 1064[label="",style="solid", color="blue", weight=3]; 4127[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 1065[label="",style="solid", color="blue", weight=3]; 4128[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 1066[label="",style="solid", color="blue", weight=3]; 4129[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 1067[label="",style="solid", color="blue", weight=3]; 4130[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 1068[label="",style="solid", color="blue", weight=3]; 4131[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 1069[label="",style="solid", color="blue", weight=3]; 4132[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 1070[label="",style="solid", color="blue", weight=3]; 4133[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 1071[label="",style="solid", color="blue", weight=3]; 4134[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 1072[label="",style="solid", color="blue", weight=3]; 4135[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 1073[label="",style="solid", color="blue", weight=3]; 4136[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];771 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 1074[label="",style="solid", color="blue", weight=3]; 772[label="False",fontsize=16,color="green",shape="box"];773[label="False",fontsize=16,color="green",shape="box"];774[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4137[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 1075[label="",style="solid", color="blue", weight=3]; 4138[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 1076[label="",style="solid", color="blue", weight=3]; 4139[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 1077[label="",style="solid", color="blue", weight=3]; 4140[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 1078[label="",style="solid", color="blue", weight=3]; 4141[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 1079[label="",style="solid", color="blue", weight=3]; 4142[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 1080[label="",style="solid", color="blue", weight=3]; 4143[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 1081[label="",style="solid", color="blue", weight=3]; 4144[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 1082[label="",style="solid", color="blue", weight=3]; 4145[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 1083[label="",style="solid", color="blue", weight=3]; 4146[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 1084[label="",style="solid", color="blue", weight=3]; 4147[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 1085[label="",style="solid", color="blue", weight=3]; 4148[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 1086[label="",style="solid", color="blue", weight=3]; 4149[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 1087[label="",style="solid", color="blue", weight=3]; 4150[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];774 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 1088[label="",style="solid", color="blue", weight=3]; 775[label="primEqChar (Char xwv280) (Char xwv330)",fontsize=16,color="black",shape="box"];775 -> 1089[label="",style="solid", color="black", weight=3]; 776[label="primEqInt (Pos (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4151[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];776 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 1090[label="",style="solid", color="burlywood", weight=3]; 4152[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];776 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 1091[label="",style="solid", color="burlywood", weight=3]; 777[label="primEqInt (Pos Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4153[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];777 -> 4153[label="",style="solid", color="burlywood", weight=9]; 4153 -> 1092[label="",style="solid", color="burlywood", weight=3]; 4154[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];777 -> 4154[label="",style="solid", color="burlywood", weight=9]; 4154 -> 1093[label="",style="solid", color="burlywood", weight=3]; 778[label="primEqInt (Neg (Succ xwv2800)) xwv33",fontsize=16,color="burlywood",shape="box"];4155[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];778 -> 4155[label="",style="solid", color="burlywood", weight=9]; 4155 -> 1094[label="",style="solid", color="burlywood", weight=3]; 4156[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];778 -> 4156[label="",style="solid", color="burlywood", weight=9]; 4156 -> 1095[label="",style="solid", color="burlywood", weight=3]; 779[label="primEqInt (Neg Zero) xwv33",fontsize=16,color="burlywood",shape="box"];4157[label="xwv33/Pos xwv330",fontsize=10,color="white",style="solid",shape="box"];779 -> 4157[label="",style="solid", color="burlywood", weight=9]; 4157 -> 1096[label="",style="solid", color="burlywood", weight=3]; 4158[label="xwv33/Neg xwv330",fontsize=10,color="white",style="solid",shape="box"];779 -> 4158[label="",style="solid", color="burlywood", weight=9]; 4158 -> 1097[label="",style="solid", color="burlywood", weight=3]; 780[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv52",fontsize=16,color="black",shape="box"];780 -> 1098[label="",style="solid", color="black", weight=3]; 781[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];781 -> 1099[label="",style="solid", color="black", weight=3]; 782[label="FiniteMap.glueBal (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];782 -> 1100[label="",style="solid", color="black", weight=3]; 785[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="triangle"];785 -> 1103[label="",style="solid", color="black", weight=3]; 1548 -> 1103[label="",style="dashed", color="red", weight=0]; 1548[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];1548 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1549[label="primPlusInt (Pos xwv1620) xwv137",fontsize=16,color="burlywood",shape="box"];4159[label="xwv137/Pos xwv1370",fontsize=10,color="white",style="solid",shape="box"];1549 -> 4159[label="",style="solid", color="burlywood", weight=9]; 4159 -> 1557[label="",style="solid", color="burlywood", weight=3]; 4160[label="xwv137/Neg xwv1370",fontsize=10,color="white",style="solid",shape="box"];1549 -> 4160[label="",style="solid", color="burlywood", weight=9]; 4160 -> 1558[label="",style="solid", color="burlywood", weight=3]; 1550[label="primPlusInt (Neg xwv1620) xwv137",fontsize=16,color="burlywood",shape="box"];4161[label="xwv137/Pos xwv1370",fontsize=10,color="white",style="solid",shape="box"];1550 -> 4161[label="",style="solid", color="burlywood", weight=9]; 4161 -> 1559[label="",style="solid", color="burlywood", weight=3]; 4162[label="xwv137/Neg xwv1370",fontsize=10,color="white",style="solid",shape="box"];1550 -> 4162[label="",style="solid", color="burlywood", weight=9]; 4162 -> 1560[label="",style="solid", color="burlywood", weight=3]; 786 -> 436[label="",style="dashed", color="red", weight=0]; 786[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];786 -> 1104[label="",style="dashed", color="magenta", weight=3]; 786 -> 1105[label="",style="dashed", color="magenta", weight=3]; 787[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];787 -> 1106[label="",style="solid", color="black", weight=3]; 788[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];788 -> 1107[label="",style="solid", color="black", weight=3]; 789[label="FiniteMap.Branch xwv13 xwv14 (FiniteMap.mkBranchUnbox xwv16 xwv35 xwv13 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13 + FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13)) xwv16 xwv35",fontsize=16,color="green",shape="box"];789 -> 1108[label="",style="dashed", color="green", weight=3]; 790[label="LT",fontsize=16,color="green",shape="box"];791[label="compare0 (Just xwv40) Nothing otherwise",fontsize=16,color="black",shape="box"];791 -> 1109[label="",style="solid", color="black", weight=3]; 792[label="xwv40",fontsize=16,color="green",shape="box"];793[label="xwv300",fontsize=16,color="green",shape="box"];794[label="xwv40",fontsize=16,color="green",shape="box"];795[label="xwv300",fontsize=16,color="green",shape="box"];796[label="xwv40",fontsize=16,color="green",shape="box"];797[label="xwv300",fontsize=16,color="green",shape="box"];798[label="xwv40",fontsize=16,color="green",shape="box"];799[label="xwv300",fontsize=16,color="green",shape="box"];800[label="xwv40",fontsize=16,color="green",shape="box"];801[label="xwv300",fontsize=16,color="green",shape="box"];802[label="xwv40",fontsize=16,color="green",shape="box"];803[label="xwv300",fontsize=16,color="green",shape="box"];804[label="xwv40",fontsize=16,color="green",shape="box"];805[label="xwv300",fontsize=16,color="green",shape="box"];806[label="xwv40",fontsize=16,color="green",shape="box"];807[label="xwv300",fontsize=16,color="green",shape="box"];808[label="xwv40",fontsize=16,color="green",shape="box"];809[label="xwv300",fontsize=16,color="green",shape="box"];810[label="xwv40",fontsize=16,color="green",shape="box"];811[label="xwv300",fontsize=16,color="green",shape="box"];812[label="xwv40",fontsize=16,color="green",shape="box"];813[label="xwv300",fontsize=16,color="green",shape="box"];814[label="xwv40",fontsize=16,color="green",shape="box"];815[label="xwv300",fontsize=16,color="green",shape="box"];816[label="xwv40",fontsize=16,color="green",shape="box"];817[label="xwv300",fontsize=16,color="green",shape="box"];818[label="xwv40",fontsize=16,color="green",shape="box"];819[label="xwv300",fontsize=16,color="green",shape="box"];820 -> 1565[label="",style="dashed", color="red", weight=0]; 820[label="compare1 (Just xwv61) (Just xwv62) (Just xwv61 <= Just xwv62)",fontsize=16,color="magenta"];820 -> 1566[label="",style="dashed", color="magenta", weight=3]; 820 -> 1567[label="",style="dashed", color="magenta", weight=3]; 820 -> 1568[label="",style="dashed", color="magenta", weight=3]; 821[label="EQ",fontsize=16,color="green",shape="box"];822[label="xwv40",fontsize=16,color="green",shape="box"];823[label="xwv300",fontsize=16,color="green",shape="box"];824[label="xwv40",fontsize=16,color="green",shape="box"];825[label="xwv300",fontsize=16,color="green",shape="box"];826[label="xwv40",fontsize=16,color="green",shape="box"];827[label="xwv300",fontsize=16,color="green",shape="box"];828[label="xwv40",fontsize=16,color="green",shape="box"];829[label="xwv300",fontsize=16,color="green",shape="box"];830[label="xwv40",fontsize=16,color="green",shape="box"];831[label="xwv300",fontsize=16,color="green",shape="box"];832[label="xwv40",fontsize=16,color="green",shape="box"];833[label="xwv300",fontsize=16,color="green",shape="box"];834[label="xwv40",fontsize=16,color="green",shape="box"];835[label="xwv300",fontsize=16,color="green",shape="box"];836[label="xwv40",fontsize=16,color="green",shape="box"];837[label="xwv300",fontsize=16,color="green",shape="box"];838[label="xwv40",fontsize=16,color="green",shape="box"];839[label="xwv300",fontsize=16,color="green",shape="box"];840[label="xwv40",fontsize=16,color="green",shape="box"];841[label="xwv300",fontsize=16,color="green",shape="box"];842[label="xwv40",fontsize=16,color="green",shape="box"];843[label="xwv300",fontsize=16,color="green",shape="box"];844[label="xwv40",fontsize=16,color="green",shape="box"];845[label="xwv300",fontsize=16,color="green",shape="box"];846[label="xwv40",fontsize=16,color="green",shape="box"];847[label="xwv300",fontsize=16,color="green",shape="box"];848[label="xwv40",fontsize=16,color="green",shape="box"];849[label="xwv300",fontsize=16,color="green",shape="box"];850 -> 1579[label="",style="dashed", color="red", weight=0]; 850[label="compare1 (Left xwv68) (Left xwv69) (Left xwv68 <= Left xwv69)",fontsize=16,color="magenta"];850 -> 1580[label="",style="dashed", color="magenta", weight=3]; 850 -> 1581[label="",style="dashed", color="magenta", weight=3]; 850 -> 1582[label="",style="dashed", color="magenta", weight=3]; 851[label="EQ",fontsize=16,color="green",shape="box"];852[label="LT",fontsize=16,color="green",shape="box"];853[label="compare0 (Right xwv40) (Left xwv300) otherwise",fontsize=16,color="black",shape="box"];853 -> 1112[label="",style="solid", color="black", weight=3]; 854[label="xwv40",fontsize=16,color="green",shape="box"];855[label="xwv300",fontsize=16,color="green",shape="box"];856[label="xwv40",fontsize=16,color="green",shape="box"];857[label="xwv300",fontsize=16,color="green",shape="box"];858[label="xwv40",fontsize=16,color="green",shape="box"];859[label="xwv300",fontsize=16,color="green",shape="box"];860[label="xwv40",fontsize=16,color="green",shape="box"];861[label="xwv300",fontsize=16,color="green",shape="box"];862[label="xwv40",fontsize=16,color="green",shape="box"];863[label="xwv300",fontsize=16,color="green",shape="box"];864[label="xwv40",fontsize=16,color="green",shape="box"];865[label="xwv300",fontsize=16,color="green",shape="box"];866[label="xwv40",fontsize=16,color="green",shape="box"];867[label="xwv300",fontsize=16,color="green",shape="box"];868[label="xwv40",fontsize=16,color="green",shape="box"];869[label="xwv300",fontsize=16,color="green",shape="box"];870[label="xwv40",fontsize=16,color="green",shape="box"];871[label="xwv300",fontsize=16,color="green",shape="box"];872[label="xwv40",fontsize=16,color="green",shape="box"];873[label="xwv300",fontsize=16,color="green",shape="box"];874[label="xwv40",fontsize=16,color="green",shape="box"];875[label="xwv300",fontsize=16,color="green",shape="box"];876[label="xwv40",fontsize=16,color="green",shape="box"];877[label="xwv300",fontsize=16,color="green",shape="box"];878[label="xwv40",fontsize=16,color="green",shape="box"];879[label="xwv300",fontsize=16,color="green",shape="box"];880[label="xwv40",fontsize=16,color="green",shape="box"];881[label="xwv300",fontsize=16,color="green",shape="box"];882 -> 1590[label="",style="dashed", color="red", weight=0]; 882[label="compare1 (Right xwv75) (Right xwv76) (Right xwv75 <= Right xwv76)",fontsize=16,color="magenta"];882 -> 1591[label="",style="dashed", color="magenta", weight=3]; 882 -> 1592[label="",style="dashed", color="magenta", weight=3]; 882 -> 1593[label="",style="dashed", color="magenta", weight=3]; 883[label="EQ",fontsize=16,color="green",shape="box"];884[label="xwv40",fontsize=16,color="green",shape="box"];885[label="xwv300",fontsize=16,color="green",shape="box"];886[label="xwv40",fontsize=16,color="green",shape="box"];887[label="xwv300",fontsize=16,color="green",shape="box"];888[label="xwv40",fontsize=16,color="green",shape="box"];889[label="xwv300",fontsize=16,color="green",shape="box"];890[label="xwv40",fontsize=16,color="green",shape="box"];891[label="xwv300",fontsize=16,color="green",shape="box"];892[label="xwv40",fontsize=16,color="green",shape="box"];893[label="xwv300",fontsize=16,color="green",shape="box"];894[label="xwv40",fontsize=16,color="green",shape="box"];895[label="xwv300",fontsize=16,color="green",shape="box"];896[label="xwv40",fontsize=16,color="green",shape="box"];897[label="xwv300",fontsize=16,color="green",shape="box"];898[label="xwv40",fontsize=16,color="green",shape="box"];899[label="xwv300",fontsize=16,color="green",shape="box"];900[label="xwv40",fontsize=16,color="green",shape="box"];901[label="xwv300",fontsize=16,color="green",shape="box"];902[label="xwv40",fontsize=16,color="green",shape="box"];903[label="xwv300",fontsize=16,color="green",shape="box"];904[label="xwv40",fontsize=16,color="green",shape="box"];905[label="xwv300",fontsize=16,color="green",shape="box"];906[label="xwv40",fontsize=16,color="green",shape="box"];907[label="xwv300",fontsize=16,color="green",shape="box"];908[label="xwv40",fontsize=16,color="green",shape="box"];909[label="xwv300",fontsize=16,color="green",shape="box"];910[label="xwv40",fontsize=16,color="green",shape="box"];911[label="xwv300",fontsize=16,color="green",shape="box"];912[label="LT",fontsize=16,color="green",shape="box"];913[label="xwv81",fontsize=16,color="green",shape="box"];914[label="GT",fontsize=16,color="green",shape="box"];915[label="xwv40",fontsize=16,color="green",shape="box"];916[label="Pos xwv3010",fontsize=16,color="green",shape="box"];917[label="Pos xwv410",fontsize=16,color="green",shape="box"];918[label="xwv300",fontsize=16,color="green",shape="box"];919[label="xwv40",fontsize=16,color="green",shape="box"];920[label="Pos xwv3010",fontsize=16,color="green",shape="box"];921[label="Neg xwv410",fontsize=16,color="green",shape="box"];922[label="xwv300",fontsize=16,color="green",shape="box"];923[label="xwv40",fontsize=16,color="green",shape="box"];924[label="Neg xwv3010",fontsize=16,color="green",shape="box"];925[label="Pos xwv410",fontsize=16,color="green",shape="box"];926[label="xwv300",fontsize=16,color="green",shape="box"];927[label="xwv40",fontsize=16,color="green",shape="box"];928[label="Neg xwv3010",fontsize=16,color="green",shape="box"];929[label="Neg xwv410",fontsize=16,color="green",shape="box"];930[label="xwv300",fontsize=16,color="green",shape="box"];931[label="primMulInt (Pos xwv400) (Pos xwv3010)",fontsize=16,color="black",shape="box"];931 -> 1114[label="",style="solid", color="black", weight=3]; 932[label="primMulInt (Pos xwv400) (Neg xwv3010)",fontsize=16,color="black",shape="box"];932 -> 1115[label="",style="solid", color="black", weight=3]; 933[label="primMulInt (Neg xwv400) (Pos xwv3010)",fontsize=16,color="black",shape="box"];933 -> 1116[label="",style="solid", color="black", weight=3]; 934[label="primMulInt (Neg xwv400) (Neg xwv3010)",fontsize=16,color="black",shape="box"];934 -> 1117[label="",style="solid", color="black", weight=3]; 935[label="Integer (primMulInt xwv400 xwv3010)",fontsize=16,color="green",shape="box"];935 -> 1118[label="",style="dashed", color="green", weight=3]; 1197 -> 387[label="",style="dashed", color="red", weight=0]; 1197[label="xwv40 == xwv300",fontsize=16,color="magenta"];1197 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1198 -> 388[label="",style="dashed", color="red", weight=0]; 1198[label="xwv40 == xwv300",fontsize=16,color="magenta"];1198 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1199 -> 389[label="",style="dashed", color="red", weight=0]; 1199[label="xwv40 == xwv300",fontsize=16,color="magenta"];1199 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1200 -> 390[label="",style="dashed", color="red", weight=0]; 1200[label="xwv40 == xwv300",fontsize=16,color="magenta"];1200 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1201 -> 391[label="",style="dashed", color="red", weight=0]; 1201[label="xwv40 == xwv300",fontsize=16,color="magenta"];1201 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1202 -> 392[label="",style="dashed", color="red", weight=0]; 1202[label="xwv40 == xwv300",fontsize=16,color="magenta"];1202 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1203 -> 393[label="",style="dashed", color="red", weight=0]; 1203[label="xwv40 == xwv300",fontsize=16,color="magenta"];1203 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1204 -> 394[label="",style="dashed", color="red", weight=0]; 1204[label="xwv40 == xwv300",fontsize=16,color="magenta"];1204 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1205 -> 395[label="",style="dashed", color="red", weight=0]; 1205[label="xwv40 == xwv300",fontsize=16,color="magenta"];1205 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1206 -> 396[label="",style="dashed", color="red", weight=0]; 1206[label="xwv40 == xwv300",fontsize=16,color="magenta"];1206 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1207 -> 397[label="",style="dashed", color="red", weight=0]; 1207[label="xwv40 == xwv300",fontsize=16,color="magenta"];1207 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1208 -> 398[label="",style="dashed", color="red", weight=0]; 1208[label="xwv40 == xwv300",fontsize=16,color="magenta"];1208 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1209 -> 399[label="",style="dashed", color="red", weight=0]; 1209[label="xwv40 == xwv300",fontsize=16,color="magenta"];1209 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1210 -> 400[label="",style="dashed", color="red", weight=0]; 1210[label="xwv40 == xwv300",fontsize=16,color="magenta"];1210 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1211 -> 387[label="",style="dashed", color="red", weight=0]; 1211[label="xwv41 == xwv301",fontsize=16,color="magenta"];1211 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1212 -> 388[label="",style="dashed", color="red", weight=0]; 1212[label="xwv41 == xwv301",fontsize=16,color="magenta"];1212 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1213 -> 389[label="",style="dashed", color="red", weight=0]; 1213[label="xwv41 == xwv301",fontsize=16,color="magenta"];1213 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1214 -> 390[label="",style="dashed", color="red", weight=0]; 1214[label="xwv41 == xwv301",fontsize=16,color="magenta"];1214 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1215 -> 391[label="",style="dashed", color="red", weight=0]; 1215[label="xwv41 == xwv301",fontsize=16,color="magenta"];1215 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1216 -> 392[label="",style="dashed", color="red", weight=0]; 1216[label="xwv41 == xwv301",fontsize=16,color="magenta"];1216 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1217 -> 393[label="",style="dashed", color="red", weight=0]; 1217[label="xwv41 == xwv301",fontsize=16,color="magenta"];1217 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1218 -> 394[label="",style="dashed", color="red", weight=0]; 1218[label="xwv41 == xwv301",fontsize=16,color="magenta"];1218 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1219 -> 395[label="",style="dashed", color="red", weight=0]; 1219[label="xwv41 == xwv301",fontsize=16,color="magenta"];1219 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1220 -> 396[label="",style="dashed", color="red", weight=0]; 1220[label="xwv41 == xwv301",fontsize=16,color="magenta"];1220 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1221 -> 397[label="",style="dashed", color="red", weight=0]; 1221[label="xwv41 == xwv301",fontsize=16,color="magenta"];1221 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1222 -> 398[label="",style="dashed", color="red", weight=0]; 1222[label="xwv41 == xwv301",fontsize=16,color="magenta"];1222 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1223 -> 399[label="",style="dashed", color="red", weight=0]; 1223[label="xwv41 == xwv301",fontsize=16,color="magenta"];1223 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1224 -> 400[label="",style="dashed", color="red", weight=0]; 1224[label="xwv41 == xwv301",fontsize=16,color="magenta"];1224 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1225[label="False && xwv135",fontsize=16,color="black",shape="box"];1225 -> 1478[label="",style="solid", color="black", weight=3]; 1226[label="True && xwv135",fontsize=16,color="black",shape="box"];1226 -> 1479[label="",style="solid", color="black", weight=3]; 1227[label="compare1 (xwv125,xwv126) (xwv127,xwv128) ((xwv125,xwv126) <= (xwv127,xwv128))",fontsize=16,color="black",shape="box"];1227 -> 1480[label="",style="solid", color="black", weight=3]; 1228[label="EQ",fontsize=16,color="green",shape="box"];966[label="LT",fontsize=16,color="green",shape="box"];967[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];967 -> 1146[label="",style="solid", color="black", weight=3]; 1229 -> 387[label="",style="dashed", color="red", weight=0]; 1229[label="xwv40 == xwv300",fontsize=16,color="magenta"];1229 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1230 -> 388[label="",style="dashed", color="red", weight=0]; 1230[label="xwv40 == xwv300",fontsize=16,color="magenta"];1230 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1231 -> 389[label="",style="dashed", color="red", weight=0]; 1231[label="xwv40 == xwv300",fontsize=16,color="magenta"];1231 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1232 -> 390[label="",style="dashed", color="red", weight=0]; 1232[label="xwv40 == xwv300",fontsize=16,color="magenta"];1232 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1233 -> 391[label="",style="dashed", color="red", weight=0]; 1233[label="xwv40 == xwv300",fontsize=16,color="magenta"];1233 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1234 -> 392[label="",style="dashed", color="red", weight=0]; 1234[label="xwv40 == xwv300",fontsize=16,color="magenta"];1234 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1235 -> 393[label="",style="dashed", color="red", weight=0]; 1235[label="xwv40 == xwv300",fontsize=16,color="magenta"];1235 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1236 -> 394[label="",style="dashed", color="red", weight=0]; 1236[label="xwv40 == xwv300",fontsize=16,color="magenta"];1236 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1237 -> 395[label="",style="dashed", color="red", weight=0]; 1237[label="xwv40 == xwv300",fontsize=16,color="magenta"];1237 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1238 -> 396[label="",style="dashed", color="red", weight=0]; 1238[label="xwv40 == xwv300",fontsize=16,color="magenta"];1238 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1239 -> 397[label="",style="dashed", color="red", weight=0]; 1239[label="xwv40 == xwv300",fontsize=16,color="magenta"];1239 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1240 -> 398[label="",style="dashed", color="red", weight=0]; 1240[label="xwv40 == xwv300",fontsize=16,color="magenta"];1240 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1241 -> 399[label="",style="dashed", color="red", weight=0]; 1241[label="xwv40 == xwv300",fontsize=16,color="magenta"];1241 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1242 -> 400[label="",style="dashed", color="red", weight=0]; 1242[label="xwv40 == xwv300",fontsize=16,color="magenta"];1242 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1243[label="xwv41 == xwv301",fontsize=16,color="blue",shape="box"];4163[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 1509[label="",style="solid", color="blue", weight=3]; 4164[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 1510[label="",style="solid", color="blue", weight=3]; 4165[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 1511[label="",style="solid", color="blue", weight=3]; 4166[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 1512[label="",style="solid", color="blue", weight=3]; 4167[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 1513[label="",style="solid", color="blue", weight=3]; 4168[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 1514[label="",style="solid", color="blue", weight=3]; 4169[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 1515[label="",style="solid", color="blue", weight=3]; 4170[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 1516[label="",style="solid", color="blue", weight=3]; 4171[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 1517[label="",style="solid", color="blue", weight=3]; 4172[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 1518[label="",style="solid", color="blue", weight=3]; 4173[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 1519[label="",style="solid", color="blue", weight=3]; 4174[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 1520[label="",style="solid", color="blue", weight=3]; 4175[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 1521[label="",style="solid", color="blue", weight=3]; 4176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 1522[label="",style="solid", color="blue", weight=3]; 1244[label="xwv42 == xwv302",fontsize=16,color="blue",shape="box"];4177[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 1523[label="",style="solid", color="blue", weight=3]; 4178[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 1524[label="",style="solid", color="blue", weight=3]; 4179[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 1525[label="",style="solid", color="blue", weight=3]; 4180[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 1526[label="",style="solid", color="blue", weight=3]; 4181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 1527[label="",style="solid", color="blue", weight=3]; 4182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 1528[label="",style="solid", color="blue", weight=3]; 4183[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 1529[label="",style="solid", color="blue", weight=3]; 4184[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 1530[label="",style="solid", color="blue", weight=3]; 4185[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 1531[label="",style="solid", color="blue", weight=3]; 4186[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 1532[label="",style="solid", color="blue", weight=3]; 4187[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 1533[label="",style="solid", color="blue", weight=3]; 4188[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 1534[label="",style="solid", color="blue", weight=3]; 4189[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 1535[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 1536[label="",style="solid", color="blue", weight=3]; 1245[label="compare1 (xwv102,xwv103,xwv104) (xwv105,xwv106,xwv107) ((xwv102,xwv103,xwv104) <= (xwv105,xwv106,xwv107))",fontsize=16,color="black",shape="box"];1245 -> 1537[label="",style="solid", color="black", weight=3]; 1246[label="EQ",fontsize=16,color="green",shape="box"];998[label="LT",fontsize=16,color="green",shape="box"];999[label="LT",fontsize=16,color="green",shape="box"];1000[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];1000 -> 1247[label="",style="solid", color="black", weight=3]; 1001[label="LT",fontsize=16,color="green",shape="box"];1002[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];1002 -> 1248[label="",style="solid", color="black", weight=3]; 1003[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];1003 -> 1249[label="",style="solid", color="black", weight=3]; 1004[label="xwv400",fontsize=16,color="green",shape="box"];1005[label="xwv3000",fontsize=16,color="green",shape="box"];1006[label="xwv40",fontsize=16,color="green",shape="box"];1007[label="Pos xwv3010",fontsize=16,color="green",shape="box"];1008[label="Pos xwv410",fontsize=16,color="green",shape="box"];1009[label="xwv300",fontsize=16,color="green",shape="box"];1010[label="xwv40",fontsize=16,color="green",shape="box"];1011[label="Pos xwv3010",fontsize=16,color="green",shape="box"];1012[label="Neg xwv410",fontsize=16,color="green",shape="box"];1013[label="xwv300",fontsize=16,color="green",shape="box"];1014[label="xwv40",fontsize=16,color="green",shape="box"];1015[label="Neg xwv3010",fontsize=16,color="green",shape="box"];1016[label="Pos xwv410",fontsize=16,color="green",shape="box"];1017[label="xwv300",fontsize=16,color="green",shape="box"];1018[label="xwv40",fontsize=16,color="green",shape="box"];1019[label="Neg xwv3010",fontsize=16,color="green",shape="box"];1020[label="Neg xwv410",fontsize=16,color="green",shape="box"];1021[label="xwv300",fontsize=16,color="green",shape="box"];1022 -> 400[label="",style="dashed", color="red", weight=0]; 1022[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1022 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1023 -> 387[label="",style="dashed", color="red", weight=0]; 1023[label="xwv280 == xwv330",fontsize=16,color="magenta"];1023 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1024 -> 388[label="",style="dashed", color="red", weight=0]; 1024[label="xwv280 == xwv330",fontsize=16,color="magenta"];1024 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1025 -> 389[label="",style="dashed", color="red", weight=0]; 1025[label="xwv280 == xwv330",fontsize=16,color="magenta"];1025 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1026 -> 390[label="",style="dashed", color="red", weight=0]; 1026[label="xwv280 == xwv330",fontsize=16,color="magenta"];1026 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1027 -> 391[label="",style="dashed", color="red", weight=0]; 1027[label="xwv280 == xwv330",fontsize=16,color="magenta"];1027 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1028 -> 392[label="",style="dashed", color="red", weight=0]; 1028[label="xwv280 == xwv330",fontsize=16,color="magenta"];1028 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1029 -> 393[label="",style="dashed", color="red", weight=0]; 1029[label="xwv280 == xwv330",fontsize=16,color="magenta"];1029 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1030 -> 394[label="",style="dashed", color="red", weight=0]; 1030[label="xwv280 == xwv330",fontsize=16,color="magenta"];1030 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1031 -> 395[label="",style="dashed", color="red", weight=0]; 1031[label="xwv280 == xwv330",fontsize=16,color="magenta"];1031 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1032 -> 396[label="",style="dashed", color="red", weight=0]; 1032[label="xwv280 == xwv330",fontsize=16,color="magenta"];1032 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1033 -> 397[label="",style="dashed", color="red", weight=0]; 1033[label="xwv280 == xwv330",fontsize=16,color="magenta"];1033 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1034 -> 398[label="",style="dashed", color="red", weight=0]; 1034[label="xwv280 == xwv330",fontsize=16,color="magenta"];1034 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1035 -> 399[label="",style="dashed", color="red", weight=0]; 1035[label="xwv280 == xwv330",fontsize=16,color="magenta"];1035 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1036 -> 400[label="",style="dashed", color="red", weight=0]; 1036[label="xwv280 == xwv330",fontsize=16,color="magenta"];1036 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1036 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1187[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4191[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 1280[label="",style="solid", color="blue", weight=3]; 4192[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 1281[label="",style="solid", color="blue", weight=3]; 4193[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 1282[label="",style="solid", color="blue", weight=3]; 4194[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 1283[label="",style="solid", color="blue", weight=3]; 4195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 1284[label="",style="solid", color="blue", weight=3]; 4196[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 1285[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 1286[label="",style="solid", color="blue", weight=3]; 4198[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 1287[label="",style="solid", color="blue", weight=3]; 4199[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 1288[label="",style="solid", color="blue", weight=3]; 4200[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 1289[label="",style="solid", color="blue", weight=3]; 4201[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 1290[label="",style="solid", color="blue", weight=3]; 4202[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 1291[label="",style="solid", color="blue", weight=3]; 4203[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 1292[label="",style="solid", color="blue", weight=3]; 4204[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 1293[label="",style="solid", color="blue", weight=3]; 1188[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4205[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 1294[label="",style="solid", color="blue", weight=3]; 4206[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 1295[label="",style="solid", color="blue", weight=3]; 4207[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 1296[label="",style="solid", color="blue", weight=3]; 4208[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 1297[label="",style="solid", color="blue", weight=3]; 4209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 1298[label="",style="solid", color="blue", weight=3]; 4210[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 1299[label="",style="solid", color="blue", weight=3]; 4211[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 1300[label="",style="solid", color="blue", weight=3]; 4212[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 1301[label="",style="solid", color="blue", weight=3]; 4213[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4213[label="",style="solid", color="blue", weight=9]; 4213 -> 1302[label="",style="solid", color="blue", weight=3]; 4214[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 1303[label="",style="solid", color="blue", weight=3]; 4215[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 1304[label="",style="solid", color="blue", weight=3]; 4216[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 1305[label="",style="solid", color="blue", weight=3]; 4217[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 1306[label="",style="solid", color="blue", weight=3]; 4218[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 1307[label="",style="solid", color="blue", weight=3]; 1189[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4219[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 1308[label="",style="solid", color="blue", weight=3]; 4220[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 1309[label="",style="solid", color="blue", weight=3]; 4221[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 1310[label="",style="solid", color="blue", weight=3]; 4222[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 1311[label="",style="solid", color="blue", weight=3]; 4223[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 1312[label="",style="solid", color="blue", weight=3]; 4224[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 1313[label="",style="solid", color="blue", weight=3]; 4225[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 1314[label="",style="solid", color="blue", weight=3]; 4226[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 1315[label="",style="solid", color="blue", weight=3]; 4227[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 1316[label="",style="solid", color="blue", weight=3]; 4228[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 1317[label="",style="solid", color="blue", weight=3]; 4229[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 1318[label="",style="solid", color="blue", weight=3]; 4230[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 1319[label="",style="solid", color="blue", weight=3]; 4231[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 1320[label="",style="solid", color="blue", weight=3]; 4232[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 1321[label="",style="solid", color="blue", weight=3]; 1190 -> 392[label="",style="dashed", color="red", weight=0]; 1190[label="xwv281 == xwv331",fontsize=16,color="magenta"];1190 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1047[label="xwv280",fontsize=16,color="green",shape="box"];1048[label="xwv330",fontsize=16,color="green",shape="box"];1191[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4233[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 1324[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 1325[label="",style="solid", color="blue", weight=3]; 1192[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4235[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1192 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 1326[label="",style="solid", color="blue", weight=3]; 4236[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1192 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 1327[label="",style="solid", color="blue", weight=3]; 1193[label="xwv280 == xwv330",fontsize=16,color="blue",shape="box"];4237[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 1328[label="",style="solid", color="blue", weight=3]; 4238[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 1329[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 1330[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 1331[label="",style="solid", color="blue", weight=3]; 4241[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 1332[label="",style="solid", color="blue", weight=3]; 4242[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 1333[label="",style="solid", color="blue", weight=3]; 4243[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 1334[label="",style="solid", color="blue", weight=3]; 4244[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 1335[label="",style="solid", color="blue", weight=3]; 4245[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 1336[label="",style="solid", color="blue", weight=3]; 4246[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 1337[label="",style="solid", color="blue", weight=3]; 4247[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 1338[label="",style="solid", color="blue", weight=3]; 4248[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 1339[label="",style="solid", color="blue", weight=3]; 4249[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 1340[label="",style="solid", color="blue", weight=3]; 4250[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 1341[label="",style="solid", color="blue", weight=3]; 1194 -> 1178[label="",style="dashed", color="red", weight=0]; 1194[label="xwv281 == xwv331 && xwv282 == xwv332",fontsize=16,color="magenta"];1194 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1060 -> 400[label="",style="dashed", color="red", weight=0]; 1060[label="xwv280 * xwv331 == xwv281 * xwv330",fontsize=16,color="magenta"];1060 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1061 -> 387[label="",style="dashed", color="red", weight=0]; 1061[label="xwv280 == xwv330",fontsize=16,color="magenta"];1061 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1062 -> 388[label="",style="dashed", color="red", weight=0]; 1062[label="xwv280 == xwv330",fontsize=16,color="magenta"];1062 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1063 -> 389[label="",style="dashed", color="red", weight=0]; 1063[label="xwv280 == xwv330",fontsize=16,color="magenta"];1063 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1064 -> 390[label="",style="dashed", color="red", weight=0]; 1064[label="xwv280 == xwv330",fontsize=16,color="magenta"];1064 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1065 -> 391[label="",style="dashed", color="red", weight=0]; 1065[label="xwv280 == xwv330",fontsize=16,color="magenta"];1065 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1066 -> 392[label="",style="dashed", color="red", weight=0]; 1066[label="xwv280 == xwv330",fontsize=16,color="magenta"];1066 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1067 -> 393[label="",style="dashed", color="red", weight=0]; 1067[label="xwv280 == xwv330",fontsize=16,color="magenta"];1067 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1068 -> 394[label="",style="dashed", color="red", weight=0]; 1068[label="xwv280 == xwv330",fontsize=16,color="magenta"];1068 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1068 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1069 -> 395[label="",style="dashed", color="red", weight=0]; 1069[label="xwv280 == xwv330",fontsize=16,color="magenta"];1069 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1070 -> 396[label="",style="dashed", color="red", weight=0]; 1070[label="xwv280 == xwv330",fontsize=16,color="magenta"];1070 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1071 -> 397[label="",style="dashed", color="red", weight=0]; 1071[label="xwv280 == xwv330",fontsize=16,color="magenta"];1071 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1071 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1072 -> 398[label="",style="dashed", color="red", weight=0]; 1072[label="xwv280 == xwv330",fontsize=16,color="magenta"];1072 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1073 -> 399[label="",style="dashed", color="red", weight=0]; 1073[label="xwv280 == xwv330",fontsize=16,color="magenta"];1073 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1074 -> 400[label="",style="dashed", color="red", weight=0]; 1074[label="xwv280 == xwv330",fontsize=16,color="magenta"];1074 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1075 -> 387[label="",style="dashed", color="red", weight=0]; 1075[label="xwv280 == xwv330",fontsize=16,color="magenta"];1075 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1075 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1076 -> 388[label="",style="dashed", color="red", weight=0]; 1076[label="xwv280 == xwv330",fontsize=16,color="magenta"];1076 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1076 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1077 -> 389[label="",style="dashed", color="red", weight=0]; 1077[label="xwv280 == xwv330",fontsize=16,color="magenta"];1077 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1078 -> 390[label="",style="dashed", color="red", weight=0]; 1078[label="xwv280 == xwv330",fontsize=16,color="magenta"];1078 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1079 -> 391[label="",style="dashed", color="red", weight=0]; 1079[label="xwv280 == xwv330",fontsize=16,color="magenta"];1079 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1079 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1080 -> 392[label="",style="dashed", color="red", weight=0]; 1080[label="xwv280 == xwv330",fontsize=16,color="magenta"];1080 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1081 -> 393[label="",style="dashed", color="red", weight=0]; 1081[label="xwv280 == xwv330",fontsize=16,color="magenta"];1081 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1082 -> 394[label="",style="dashed", color="red", weight=0]; 1082[label="xwv280 == xwv330",fontsize=16,color="magenta"];1082 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1083 -> 395[label="",style="dashed", color="red", weight=0]; 1083[label="xwv280 == xwv330",fontsize=16,color="magenta"];1083 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1083 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1084 -> 396[label="",style="dashed", color="red", weight=0]; 1084[label="xwv280 == xwv330",fontsize=16,color="magenta"];1084 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1085 -> 397[label="",style="dashed", color="red", weight=0]; 1085[label="xwv280 == xwv330",fontsize=16,color="magenta"];1085 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1085 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1086 -> 398[label="",style="dashed", color="red", weight=0]; 1086[label="xwv280 == xwv330",fontsize=16,color="magenta"];1086 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1087 -> 399[label="",style="dashed", color="red", weight=0]; 1087[label="xwv280 == xwv330",fontsize=16,color="magenta"];1087 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1087 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1088 -> 400[label="",style="dashed", color="red", weight=0]; 1088[label="xwv280 == xwv330",fontsize=16,color="magenta"];1088 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1089[label="primEqNat xwv280 xwv330",fontsize=16,color="burlywood",shape="triangle"];4251[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1089 -> 4251[label="",style="solid", color="burlywood", weight=9]; 4251 -> 1402[label="",style="solid", color="burlywood", weight=3]; 4252[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1089 -> 4252[label="",style="solid", color="burlywood", weight=9]; 4252 -> 1403[label="",style="solid", color="burlywood", weight=3]; 1090[label="primEqInt (Pos (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4253[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1090 -> 4253[label="",style="solid", color="burlywood", weight=9]; 4253 -> 1404[label="",style="solid", color="burlywood", weight=3]; 4254[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1090 -> 4254[label="",style="solid", color="burlywood", weight=9]; 4254 -> 1405[label="",style="solid", color="burlywood", weight=3]; 1091[label="primEqInt (Pos (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="black",shape="box"];1091 -> 1406[label="",style="solid", color="black", weight=3]; 1092[label="primEqInt (Pos Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4255[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1092 -> 4255[label="",style="solid", color="burlywood", weight=9]; 4255 -> 1407[label="",style="solid", color="burlywood", weight=3]; 4256[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1092 -> 4256[label="",style="solid", color="burlywood", weight=9]; 4256 -> 1408[label="",style="solid", color="burlywood", weight=3]; 1093[label="primEqInt (Pos Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4257[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4257[label="",style="solid", color="burlywood", weight=9]; 4257 -> 1409[label="",style="solid", color="burlywood", weight=3]; 4258[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4258[label="",style="solid", color="burlywood", weight=9]; 4258 -> 1410[label="",style="solid", color="burlywood", weight=3]; 1094[label="primEqInt (Neg (Succ xwv2800)) (Pos xwv330)",fontsize=16,color="black",shape="box"];1094 -> 1411[label="",style="solid", color="black", weight=3]; 1095[label="primEqInt (Neg (Succ xwv2800)) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4259[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1095 -> 4259[label="",style="solid", color="burlywood", weight=9]; 4259 -> 1412[label="",style="solid", color="burlywood", weight=3]; 4260[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1095 -> 4260[label="",style="solid", color="burlywood", weight=9]; 4260 -> 1413[label="",style="solid", color="burlywood", weight=3]; 1096[label="primEqInt (Neg Zero) (Pos xwv330)",fontsize=16,color="burlywood",shape="box"];4261[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1096 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 1414[label="",style="solid", color="burlywood", weight=3]; 4262[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1096 -> 4262[label="",style="solid", color="burlywood", weight=9]; 4262 -> 1415[label="",style="solid", color="burlywood", weight=3]; 1097[label="primEqInt (Neg Zero) (Neg xwv330)",fontsize=16,color="burlywood",shape="box"];4263[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1097 -> 4263[label="",style="solid", color="burlywood", weight=9]; 4263 -> 1416[label="",style="solid", color="burlywood", weight=3]; 4264[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1097 -> 4264[label="",style="solid", color="burlywood", weight=9]; 4264 -> 1417[label="",style="solid", color="burlywood", weight=3]; 1098[label="xwv52",fontsize=16,color="green",shape="box"];1099[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1099 -> 1418[label="",style="solid", color="black", weight=3]; 1100[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];1100 -> 1419[label="",style="solid", color="black", weight=3]; 1103[label="FiniteMap.sizeFM xwv35",fontsize=16,color="burlywood",shape="triangle"];4265[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1103 -> 4265[label="",style="solid", color="burlywood", weight=9]; 4265 -> 1551[label="",style="solid", color="burlywood", weight=3]; 4266[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1103 -> 4266[label="",style="solid", color="burlywood", weight=9]; 4266 -> 1552[label="",style="solid", color="burlywood", weight=3]; 1556[label="xwv16",fontsize=16,color="green",shape="box"];1557[label="primPlusInt (Pos xwv1620) (Pos xwv1370)",fontsize=16,color="black",shape="box"];1557 -> 1572[label="",style="solid", color="black", weight=3]; 1558[label="primPlusInt (Pos xwv1620) (Neg xwv1370)",fontsize=16,color="black",shape="box"];1558 -> 1573[label="",style="solid", color="black", weight=3]; 1559[label="primPlusInt (Neg xwv1620) (Pos xwv1370)",fontsize=16,color="black",shape="box"];1559 -> 1574[label="",style="solid", color="black", weight=3]; 1560[label="primPlusInt (Neg xwv1620) (Neg xwv1370)",fontsize=16,color="black",shape="box"];1560 -> 1575[label="",style="solid", color="black", weight=3]; 1104[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1104 -> 1553[label="",style="solid", color="black", weight=3]; 1105 -> 1540[label="",style="dashed", color="red", weight=0]; 1105[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1106 -> 1554[label="",style="dashed", color="red", weight=0]; 1106[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 (FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35)",fontsize=16,color="magenta"];1106 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1107[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv13 xwv14 xwv16 xwv35 xwv16 xwv35 xwv35",fontsize=16,color="burlywood",shape="box"];4267[label="xwv35/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1107 -> 4267[label="",style="solid", color="burlywood", weight=9]; 4267 -> 1561[label="",style="solid", color="burlywood", weight=3]; 4268[label="xwv35/FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354",fontsize=10,color="white",style="solid",shape="box"];1107 -> 4268[label="",style="solid", color="burlywood", weight=9]; 4268 -> 1562[label="",style="solid", color="burlywood", weight=3]; 1108[label="FiniteMap.mkBranchUnbox xwv16 xwv35 xwv13 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13 + FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13)",fontsize=16,color="black",shape="box"];1108 -> 1563[label="",style="solid", color="black", weight=3]; 1109[label="compare0 (Just xwv40) Nothing True",fontsize=16,color="black",shape="box"];1109 -> 1564[label="",style="solid", color="black", weight=3]; 1566[label="Just xwv61 <= Just xwv62",fontsize=16,color="black",shape="box"];1566 -> 1576[label="",style="solid", color="black", weight=3]; 1567[label="xwv61",fontsize=16,color="green",shape="box"];1568[label="xwv62",fontsize=16,color="green",shape="box"];1565[label="compare1 (Just xwv147) (Just xwv148) xwv149",fontsize=16,color="burlywood",shape="triangle"];4269[label="xwv149/False",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4269[label="",style="solid", color="burlywood", weight=9]; 4269 -> 1577[label="",style="solid", color="burlywood", weight=3]; 4270[label="xwv149/True",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4270[label="",style="solid", color="burlywood", weight=9]; 4270 -> 1578[label="",style="solid", color="burlywood", weight=3]; 1580[label="xwv68",fontsize=16,color="green",shape="box"];1581[label="Left xwv68 <= Left xwv69",fontsize=16,color="black",shape="box"];1581 -> 1586[label="",style="solid", color="black", weight=3]; 1582[label="xwv69",fontsize=16,color="green",shape="box"];1579[label="compare1 (Left xwv154) (Left xwv155) xwv156",fontsize=16,color="burlywood",shape="triangle"];4271[label="xwv156/False",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 1587[label="",style="solid", color="burlywood", weight=3]; 4272[label="xwv156/True",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 1588[label="",style="solid", color="burlywood", weight=3]; 1112[label="compare0 (Right xwv40) (Left xwv300) True",fontsize=16,color="black",shape="box"];1112 -> 1589[label="",style="solid", color="black", weight=3]; 1591[label="Right xwv75 <= Right xwv76",fontsize=16,color="black",shape="box"];1591 -> 1597[label="",style="solid", color="black", weight=3]; 1592[label="xwv76",fontsize=16,color="green",shape="box"];1593[label="xwv75",fontsize=16,color="green",shape="box"];1590[label="compare1 (Right xwv161) (Right xwv162) xwv163",fontsize=16,color="burlywood",shape="triangle"];4273[label="xwv163/False",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 1598[label="",style="solid", color="burlywood", weight=3]; 4274[label="xwv163/True",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 1599[label="",style="solid", color="burlywood", weight=3]; 1114[label="Pos (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1114 -> 1600[label="",style="dashed", color="green", weight=3]; 1115[label="Neg (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1115 -> 1601[label="",style="dashed", color="green", weight=3]; 1116[label="Neg (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1116 -> 1602[label="",style="dashed", color="green", weight=3]; 1117[label="Pos (primMulNat xwv400 xwv3010)",fontsize=16,color="green",shape="box"];1117 -> 1603[label="",style="dashed", color="green", weight=3]; 1118 -> 525[label="",style="dashed", color="red", weight=0]; 1118[label="primMulInt xwv400 xwv3010",fontsize=16,color="magenta"];1118 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1422[label="xwv40",fontsize=16,color="green",shape="box"];1423[label="xwv300",fontsize=16,color="green",shape="box"];1424[label="xwv40",fontsize=16,color="green",shape="box"];1425[label="xwv300",fontsize=16,color="green",shape="box"];1426[label="xwv40",fontsize=16,color="green",shape="box"];1427[label="xwv300",fontsize=16,color="green",shape="box"];1428[label="xwv40",fontsize=16,color="green",shape="box"];1429[label="xwv300",fontsize=16,color="green",shape="box"];1430[label="xwv40",fontsize=16,color="green",shape="box"];1431[label="xwv300",fontsize=16,color="green",shape="box"];1432[label="xwv40",fontsize=16,color="green",shape="box"];1433[label="xwv300",fontsize=16,color="green",shape="box"];1434[label="xwv40",fontsize=16,color="green",shape="box"];1435[label="xwv300",fontsize=16,color="green",shape="box"];1436[label="xwv40",fontsize=16,color="green",shape="box"];1437[label="xwv300",fontsize=16,color="green",shape="box"];1438[label="xwv40",fontsize=16,color="green",shape="box"];1439[label="xwv300",fontsize=16,color="green",shape="box"];1440[label="xwv40",fontsize=16,color="green",shape="box"];1441[label="xwv300",fontsize=16,color="green",shape="box"];1442[label="xwv40",fontsize=16,color="green",shape="box"];1443[label="xwv300",fontsize=16,color="green",shape="box"];1444[label="xwv40",fontsize=16,color="green",shape="box"];1445[label="xwv300",fontsize=16,color="green",shape="box"];1446[label="xwv40",fontsize=16,color="green",shape="box"];1447[label="xwv300",fontsize=16,color="green",shape="box"];1448[label="xwv40",fontsize=16,color="green",shape="box"];1449[label="xwv300",fontsize=16,color="green",shape="box"];1450[label="xwv41",fontsize=16,color="green",shape="box"];1451[label="xwv301",fontsize=16,color="green",shape="box"];1452[label="xwv41",fontsize=16,color="green",shape="box"];1453[label="xwv301",fontsize=16,color="green",shape="box"];1454[label="xwv41",fontsize=16,color="green",shape="box"];1455[label="xwv301",fontsize=16,color="green",shape="box"];1456[label="xwv41",fontsize=16,color="green",shape="box"];1457[label="xwv301",fontsize=16,color="green",shape="box"];1458[label="xwv41",fontsize=16,color="green",shape="box"];1459[label="xwv301",fontsize=16,color="green",shape="box"];1460[label="xwv41",fontsize=16,color="green",shape="box"];1461[label="xwv301",fontsize=16,color="green",shape="box"];1462[label="xwv41",fontsize=16,color="green",shape="box"];1463[label="xwv301",fontsize=16,color="green",shape="box"];1464[label="xwv41",fontsize=16,color="green",shape="box"];1465[label="xwv301",fontsize=16,color="green",shape="box"];1466[label="xwv41",fontsize=16,color="green",shape="box"];1467[label="xwv301",fontsize=16,color="green",shape="box"];1468[label="xwv41",fontsize=16,color="green",shape="box"];1469[label="xwv301",fontsize=16,color="green",shape="box"];1470[label="xwv41",fontsize=16,color="green",shape="box"];1471[label="xwv301",fontsize=16,color="green",shape="box"];1472[label="xwv41",fontsize=16,color="green",shape="box"];1473[label="xwv301",fontsize=16,color="green",shape="box"];1474[label="xwv41",fontsize=16,color="green",shape="box"];1475[label="xwv301",fontsize=16,color="green",shape="box"];1476[label="xwv41",fontsize=16,color="green",shape="box"];1477[label="xwv301",fontsize=16,color="green",shape="box"];1478[label="False",fontsize=16,color="green",shape="box"];1479[label="xwv135",fontsize=16,color="green",shape="box"];1480 -> 1915[label="",style="dashed", color="red", weight=0]; 1480[label="compare1 (xwv125,xwv126) (xwv127,xwv128) (xwv125 < xwv127 || xwv125 == xwv127 && xwv126 <= xwv128)",fontsize=16,color="magenta"];1480 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1146[label="compare0 True False True",fontsize=16,color="black",shape="box"];1146 -> 1608[label="",style="solid", color="black", weight=3]; 1481[label="xwv40",fontsize=16,color="green",shape="box"];1482[label="xwv300",fontsize=16,color="green",shape="box"];1483[label="xwv40",fontsize=16,color="green",shape="box"];1484[label="xwv300",fontsize=16,color="green",shape="box"];1485[label="xwv40",fontsize=16,color="green",shape="box"];1486[label="xwv300",fontsize=16,color="green",shape="box"];1487[label="xwv40",fontsize=16,color="green",shape="box"];1488[label="xwv300",fontsize=16,color="green",shape="box"];1489[label="xwv40",fontsize=16,color="green",shape="box"];1490[label="xwv300",fontsize=16,color="green",shape="box"];1491[label="xwv40",fontsize=16,color="green",shape="box"];1492[label="xwv300",fontsize=16,color="green",shape="box"];1493[label="xwv40",fontsize=16,color="green",shape="box"];1494[label="xwv300",fontsize=16,color="green",shape="box"];1495[label="xwv40",fontsize=16,color="green",shape="box"];1496[label="xwv300",fontsize=16,color="green",shape="box"];1497[label="xwv40",fontsize=16,color="green",shape="box"];1498[label="xwv300",fontsize=16,color="green",shape="box"];1499[label="xwv40",fontsize=16,color="green",shape="box"];1500[label="xwv300",fontsize=16,color="green",shape="box"];1501[label="xwv40",fontsize=16,color="green",shape="box"];1502[label="xwv300",fontsize=16,color="green",shape="box"];1503[label="xwv40",fontsize=16,color="green",shape="box"];1504[label="xwv300",fontsize=16,color="green",shape="box"];1505[label="xwv40",fontsize=16,color="green",shape="box"];1506[label="xwv300",fontsize=16,color="green",shape="box"];1507[label="xwv40",fontsize=16,color="green",shape="box"];1508[label="xwv300",fontsize=16,color="green",shape="box"];1509 -> 387[label="",style="dashed", color="red", weight=0]; 1509[label="xwv41 == xwv301",fontsize=16,color="magenta"];1509 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1510 -> 388[label="",style="dashed", color="red", weight=0]; 1510[label="xwv41 == xwv301",fontsize=16,color="magenta"];1510 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1511 -> 389[label="",style="dashed", color="red", weight=0]; 1511[label="xwv41 == xwv301",fontsize=16,color="magenta"];1511 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1512 -> 390[label="",style="dashed", color="red", weight=0]; 1512[label="xwv41 == xwv301",fontsize=16,color="magenta"];1512 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1513 -> 391[label="",style="dashed", color="red", weight=0]; 1513[label="xwv41 == xwv301",fontsize=16,color="magenta"];1513 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1514 -> 392[label="",style="dashed", color="red", weight=0]; 1514[label="xwv41 == xwv301",fontsize=16,color="magenta"];1514 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1515 -> 393[label="",style="dashed", color="red", weight=0]; 1515[label="xwv41 == xwv301",fontsize=16,color="magenta"];1515 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1516 -> 394[label="",style="dashed", color="red", weight=0]; 1516[label="xwv41 == xwv301",fontsize=16,color="magenta"];1516 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1517 -> 395[label="",style="dashed", color="red", weight=0]; 1517[label="xwv41 == xwv301",fontsize=16,color="magenta"];1517 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1518 -> 396[label="",style="dashed", color="red", weight=0]; 1518[label="xwv41 == xwv301",fontsize=16,color="magenta"];1518 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1519 -> 397[label="",style="dashed", color="red", weight=0]; 1519[label="xwv41 == xwv301",fontsize=16,color="magenta"];1519 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1520 -> 398[label="",style="dashed", color="red", weight=0]; 1520[label="xwv41 == xwv301",fontsize=16,color="magenta"];1520 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1521 -> 399[label="",style="dashed", color="red", weight=0]; 1521[label="xwv41 == xwv301",fontsize=16,color="magenta"];1521 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1522 -> 400[label="",style="dashed", color="red", weight=0]; 1522[label="xwv41 == xwv301",fontsize=16,color="magenta"];1522 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1523 -> 387[label="",style="dashed", color="red", weight=0]; 1523[label="xwv42 == xwv302",fontsize=16,color="magenta"];1523 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1524 -> 388[label="",style="dashed", color="red", weight=0]; 1524[label="xwv42 == xwv302",fontsize=16,color="magenta"];1524 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1525 -> 389[label="",style="dashed", color="red", weight=0]; 1525[label="xwv42 == xwv302",fontsize=16,color="magenta"];1525 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1526 -> 390[label="",style="dashed", color="red", weight=0]; 1526[label="xwv42 == xwv302",fontsize=16,color="magenta"];1526 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1527 -> 391[label="",style="dashed", color="red", weight=0]; 1527[label="xwv42 == xwv302",fontsize=16,color="magenta"];1527 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1528 -> 392[label="",style="dashed", color="red", weight=0]; 1528[label="xwv42 == xwv302",fontsize=16,color="magenta"];1528 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1529 -> 393[label="",style="dashed", color="red", weight=0]; 1529[label="xwv42 == xwv302",fontsize=16,color="magenta"];1529 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1530 -> 394[label="",style="dashed", color="red", weight=0]; 1530[label="xwv42 == xwv302",fontsize=16,color="magenta"];1530 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1531 -> 395[label="",style="dashed", color="red", weight=0]; 1531[label="xwv42 == xwv302",fontsize=16,color="magenta"];1531 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1532 -> 396[label="",style="dashed", color="red", weight=0]; 1532[label="xwv42 == xwv302",fontsize=16,color="magenta"];1532 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1533 -> 397[label="",style="dashed", color="red", weight=0]; 1533[label="xwv42 == xwv302",fontsize=16,color="magenta"];1533 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1534 -> 398[label="",style="dashed", color="red", weight=0]; 1534[label="xwv42 == xwv302",fontsize=16,color="magenta"];1534 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1535 -> 399[label="",style="dashed", color="red", weight=0]; 1535[label="xwv42 == xwv302",fontsize=16,color="magenta"];1535 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1536 -> 400[label="",style="dashed", color="red", weight=0]; 1536[label="xwv42 == xwv302",fontsize=16,color="magenta"];1536 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1948[label="",style="dashed", color="red", weight=0]; 1537[label="compare1 (xwv102,xwv103,xwv104) (xwv105,xwv106,xwv107) (xwv102 < xwv105 || xwv102 == xwv105 && (xwv103 < xwv106 || xwv103 == xwv106 && xwv104 <= xwv107))",fontsize=16,color="magenta"];1537 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1247[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1247 -> 1667[label="",style="solid", color="black", weight=3]; 1248[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1248 -> 1668[label="",style="solid", color="black", weight=3]; 1249[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1249 -> 1669[label="",style="solid", color="black", weight=3]; 1250 -> 436[label="",style="dashed", color="red", weight=0]; 1250[label="xwv280 * xwv331",fontsize=16,color="magenta"];1250 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1251 -> 436[label="",style="dashed", color="red", weight=0]; 1251[label="xwv281 * xwv330",fontsize=16,color="magenta"];1251 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1252[label="xwv280",fontsize=16,color="green",shape="box"];1253[label="xwv330",fontsize=16,color="green",shape="box"];1254[label="xwv280",fontsize=16,color="green",shape="box"];1255[label="xwv330",fontsize=16,color="green",shape="box"];1256[label="xwv280",fontsize=16,color="green",shape="box"];1257[label="xwv330",fontsize=16,color="green",shape="box"];1258[label="xwv280",fontsize=16,color="green",shape="box"];1259[label="xwv330",fontsize=16,color="green",shape="box"];1260[label="xwv280",fontsize=16,color="green",shape="box"];1261[label="xwv330",fontsize=16,color="green",shape="box"];1262[label="xwv280",fontsize=16,color="green",shape="box"];1263[label="xwv330",fontsize=16,color="green",shape="box"];1264[label="xwv280",fontsize=16,color="green",shape="box"];1265[label="xwv330",fontsize=16,color="green",shape="box"];1266[label="xwv280",fontsize=16,color="green",shape="box"];1267[label="xwv330",fontsize=16,color="green",shape="box"];1268[label="xwv280",fontsize=16,color="green",shape="box"];1269[label="xwv330",fontsize=16,color="green",shape="box"];1270[label="xwv280",fontsize=16,color="green",shape="box"];1271[label="xwv330",fontsize=16,color="green",shape="box"];1272[label="xwv280",fontsize=16,color="green",shape="box"];1273[label="xwv330",fontsize=16,color="green",shape="box"];1274[label="xwv280",fontsize=16,color="green",shape="box"];1275[label="xwv330",fontsize=16,color="green",shape="box"];1276[label="xwv280",fontsize=16,color="green",shape="box"];1277[label="xwv330",fontsize=16,color="green",shape="box"];1278[label="xwv280",fontsize=16,color="green",shape="box"];1279[label="xwv330",fontsize=16,color="green",shape="box"];1280 -> 387[label="",style="dashed", color="red", weight=0]; 1280[label="xwv280 == xwv330",fontsize=16,color="magenta"];1280 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1281 -> 388[label="",style="dashed", color="red", weight=0]; 1281[label="xwv280 == xwv330",fontsize=16,color="magenta"];1281 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1282 -> 389[label="",style="dashed", color="red", weight=0]; 1282[label="xwv280 == xwv330",fontsize=16,color="magenta"];1282 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1282 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1283 -> 390[label="",style="dashed", color="red", weight=0]; 1283[label="xwv280 == xwv330",fontsize=16,color="magenta"];1283 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1284 -> 391[label="",style="dashed", color="red", weight=0]; 1284[label="xwv280 == xwv330",fontsize=16,color="magenta"];1284 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1285 -> 392[label="",style="dashed", color="red", weight=0]; 1285[label="xwv280 == xwv330",fontsize=16,color="magenta"];1285 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1285 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1286 -> 393[label="",style="dashed", color="red", weight=0]; 1286[label="xwv280 == xwv330",fontsize=16,color="magenta"];1286 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1287 -> 394[label="",style="dashed", color="red", weight=0]; 1287[label="xwv280 == xwv330",fontsize=16,color="magenta"];1287 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1287 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1288 -> 395[label="",style="dashed", color="red", weight=0]; 1288[label="xwv280 == xwv330",fontsize=16,color="magenta"];1288 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1288 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1289 -> 396[label="",style="dashed", color="red", weight=0]; 1289[label="xwv280 == xwv330",fontsize=16,color="magenta"];1289 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1289 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1290 -> 397[label="",style="dashed", color="red", weight=0]; 1290[label="xwv280 == xwv330",fontsize=16,color="magenta"];1290 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1290 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1291 -> 398[label="",style="dashed", color="red", weight=0]; 1291[label="xwv280 == xwv330",fontsize=16,color="magenta"];1291 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1291 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1292 -> 399[label="",style="dashed", color="red", weight=0]; 1292[label="xwv280 == xwv330",fontsize=16,color="magenta"];1292 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1293 -> 400[label="",style="dashed", color="red", weight=0]; 1293[label="xwv280 == xwv330",fontsize=16,color="magenta"];1293 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1294 -> 387[label="",style="dashed", color="red", weight=0]; 1294[label="xwv281 == xwv331",fontsize=16,color="magenta"];1294 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1295 -> 388[label="",style="dashed", color="red", weight=0]; 1295[label="xwv281 == xwv331",fontsize=16,color="magenta"];1295 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1296 -> 389[label="",style="dashed", color="red", weight=0]; 1296[label="xwv281 == xwv331",fontsize=16,color="magenta"];1296 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1297 -> 390[label="",style="dashed", color="red", weight=0]; 1297[label="xwv281 == xwv331",fontsize=16,color="magenta"];1297 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1298 -> 391[label="",style="dashed", color="red", weight=0]; 1298[label="xwv281 == xwv331",fontsize=16,color="magenta"];1298 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1299 -> 392[label="",style="dashed", color="red", weight=0]; 1299[label="xwv281 == xwv331",fontsize=16,color="magenta"];1299 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1300 -> 393[label="",style="dashed", color="red", weight=0]; 1300[label="xwv281 == xwv331",fontsize=16,color="magenta"];1300 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1301 -> 394[label="",style="dashed", color="red", weight=0]; 1301[label="xwv281 == xwv331",fontsize=16,color="magenta"];1301 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1302 -> 395[label="",style="dashed", color="red", weight=0]; 1302[label="xwv281 == xwv331",fontsize=16,color="magenta"];1302 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1303 -> 396[label="",style="dashed", color="red", weight=0]; 1303[label="xwv281 == xwv331",fontsize=16,color="magenta"];1303 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1304 -> 397[label="",style="dashed", color="red", weight=0]; 1304[label="xwv281 == xwv331",fontsize=16,color="magenta"];1304 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1305 -> 398[label="",style="dashed", color="red", weight=0]; 1305[label="xwv281 == xwv331",fontsize=16,color="magenta"];1305 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1306 -> 399[label="",style="dashed", color="red", weight=0]; 1306[label="xwv281 == xwv331",fontsize=16,color="magenta"];1306 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1307 -> 400[label="",style="dashed", color="red", weight=0]; 1307[label="xwv281 == xwv331",fontsize=16,color="magenta"];1307 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1308 -> 387[label="",style="dashed", color="red", weight=0]; 1308[label="xwv280 == xwv330",fontsize=16,color="magenta"];1308 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1309 -> 388[label="",style="dashed", color="red", weight=0]; 1309[label="xwv280 == xwv330",fontsize=16,color="magenta"];1309 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1309 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1310 -> 389[label="",style="dashed", color="red", weight=0]; 1310[label="xwv280 == xwv330",fontsize=16,color="magenta"];1310 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1311 -> 390[label="",style="dashed", color="red", weight=0]; 1311[label="xwv280 == xwv330",fontsize=16,color="magenta"];1311 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1312 -> 391[label="",style="dashed", color="red", weight=0]; 1312[label="xwv280 == xwv330",fontsize=16,color="magenta"];1312 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1313 -> 392[label="",style="dashed", color="red", weight=0]; 1313[label="xwv280 == xwv330",fontsize=16,color="magenta"];1313 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1314 -> 393[label="",style="dashed", color="red", weight=0]; 1314[label="xwv280 == xwv330",fontsize=16,color="magenta"];1314 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1315 -> 394[label="",style="dashed", color="red", weight=0]; 1315[label="xwv280 == xwv330",fontsize=16,color="magenta"];1315 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1316 -> 395[label="",style="dashed", color="red", weight=0]; 1316[label="xwv280 == xwv330",fontsize=16,color="magenta"];1316 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1317 -> 396[label="",style="dashed", color="red", weight=0]; 1317[label="xwv280 == xwv330",fontsize=16,color="magenta"];1317 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1318 -> 397[label="",style="dashed", color="red", weight=0]; 1318[label="xwv280 == xwv330",fontsize=16,color="magenta"];1318 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1319 -> 398[label="",style="dashed", color="red", weight=0]; 1319[label="xwv280 == xwv330",fontsize=16,color="magenta"];1319 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1320 -> 399[label="",style="dashed", color="red", weight=0]; 1320[label="xwv280 == xwv330",fontsize=16,color="magenta"];1320 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1321 -> 400[label="",style="dashed", color="red", weight=0]; 1321[label="xwv280 == xwv330",fontsize=16,color="magenta"];1321 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1322[label="xwv281",fontsize=16,color="green",shape="box"];1323[label="xwv331",fontsize=16,color="green",shape="box"];1324 -> 393[label="",style="dashed", color="red", weight=0]; 1324[label="xwv280 == xwv330",fontsize=16,color="magenta"];1324 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1325 -> 400[label="",style="dashed", color="red", weight=0]; 1325[label="xwv280 == xwv330",fontsize=16,color="magenta"];1325 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1326 -> 393[label="",style="dashed", color="red", weight=0]; 1326[label="xwv281 == xwv331",fontsize=16,color="magenta"];1326 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1327 -> 400[label="",style="dashed", color="red", weight=0]; 1327[label="xwv281 == xwv331",fontsize=16,color="magenta"];1327 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1328 -> 387[label="",style="dashed", color="red", weight=0]; 1328[label="xwv280 == xwv330",fontsize=16,color="magenta"];1328 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1329 -> 388[label="",style="dashed", color="red", weight=0]; 1329[label="xwv280 == xwv330",fontsize=16,color="magenta"];1329 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1330 -> 389[label="",style="dashed", color="red", weight=0]; 1330[label="xwv280 == xwv330",fontsize=16,color="magenta"];1330 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1331 -> 390[label="",style="dashed", color="red", weight=0]; 1331[label="xwv280 == xwv330",fontsize=16,color="magenta"];1331 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1332 -> 391[label="",style="dashed", color="red", weight=0]; 1332[label="xwv280 == xwv330",fontsize=16,color="magenta"];1332 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1333 -> 392[label="",style="dashed", color="red", weight=0]; 1333[label="xwv280 == xwv330",fontsize=16,color="magenta"];1333 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1334 -> 393[label="",style="dashed", color="red", weight=0]; 1334[label="xwv280 == xwv330",fontsize=16,color="magenta"];1334 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1335 -> 394[label="",style="dashed", color="red", weight=0]; 1335[label="xwv280 == xwv330",fontsize=16,color="magenta"];1335 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1336 -> 395[label="",style="dashed", color="red", weight=0]; 1336[label="xwv280 == xwv330",fontsize=16,color="magenta"];1336 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1337 -> 396[label="",style="dashed", color="red", weight=0]; 1337[label="xwv280 == xwv330",fontsize=16,color="magenta"];1337 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1338 -> 397[label="",style="dashed", color="red", weight=0]; 1338[label="xwv280 == xwv330",fontsize=16,color="magenta"];1338 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1339 -> 398[label="",style="dashed", color="red", weight=0]; 1339[label="xwv280 == xwv330",fontsize=16,color="magenta"];1339 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1340 -> 399[label="",style="dashed", color="red", weight=0]; 1340[label="xwv280 == xwv330",fontsize=16,color="magenta"];1340 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1341 -> 400[label="",style="dashed", color="red", weight=0]; 1341[label="xwv280 == xwv330",fontsize=16,color="magenta"];1341 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1342[label="xwv281 == xwv331",fontsize=16,color="blue",shape="box"];4275[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 1794[label="",style="solid", color="blue", weight=3]; 4276[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 1795[label="",style="solid", color="blue", weight=3]; 4277[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 1796[label="",style="solid", color="blue", weight=3]; 4278[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 1797[label="",style="solid", color="blue", weight=3]; 4279[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 1798[label="",style="solid", color="blue", weight=3]; 4280[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 1799[label="",style="solid", color="blue", weight=3]; 4281[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 1800[label="",style="solid", color="blue", weight=3]; 4282[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 1801[label="",style="solid", color="blue", weight=3]; 4283[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 1802[label="",style="solid", color="blue", weight=3]; 4284[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4284[label="",style="solid", color="blue", weight=9]; 4284 -> 1803[label="",style="solid", color="blue", weight=3]; 4285[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4285[label="",style="solid", color="blue", weight=9]; 4285 -> 1804[label="",style="solid", color="blue", weight=3]; 4286[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 1805[label="",style="solid", color="blue", weight=3]; 4287[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 1806[label="",style="solid", color="blue", weight=3]; 4288[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 1807[label="",style="solid", color="blue", weight=3]; 1343[label="xwv282 == xwv332",fontsize=16,color="blue",shape="box"];4289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 1808[label="",style="solid", color="blue", weight=3]; 4290[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 1809[label="",style="solid", color="blue", weight=3]; 4291[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4291[label="",style="solid", color="blue", weight=9]; 4291 -> 1810[label="",style="solid", color="blue", weight=3]; 4292[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 1811[label="",style="solid", color="blue", weight=3]; 4293[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 1812[label="",style="solid", color="blue", weight=3]; 4294[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 1813[label="",style="solid", color="blue", weight=3]; 4295[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 1814[label="",style="solid", color="blue", weight=3]; 4296[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 1815[label="",style="solid", color="blue", weight=3]; 4297[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 1816[label="",style="solid", color="blue", weight=3]; 4298[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 1817[label="",style="solid", color="blue", weight=3]; 4299[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 1818[label="",style="solid", color="blue", weight=3]; 4300[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 1819[label="",style="solid", color="blue", weight=3]; 4301[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 1820[label="",style="solid", color="blue", weight=3]; 4302[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 1821[label="",style="solid", color="blue", weight=3]; 1344 -> 436[label="",style="dashed", color="red", weight=0]; 1344[label="xwv280 * xwv331",fontsize=16,color="magenta"];1344 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1345 -> 436[label="",style="dashed", color="red", weight=0]; 1345[label="xwv281 * xwv330",fontsize=16,color="magenta"];1345 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1346[label="xwv280",fontsize=16,color="green",shape="box"];1347[label="xwv330",fontsize=16,color="green",shape="box"];1348[label="xwv280",fontsize=16,color="green",shape="box"];1349[label="xwv330",fontsize=16,color="green",shape="box"];1350[label="xwv280",fontsize=16,color="green",shape="box"];1351[label="xwv330",fontsize=16,color="green",shape="box"];1352[label="xwv280",fontsize=16,color="green",shape="box"];1353[label="xwv330",fontsize=16,color="green",shape="box"];1354[label="xwv280",fontsize=16,color="green",shape="box"];1355[label="xwv330",fontsize=16,color="green",shape="box"];1356[label="xwv280",fontsize=16,color="green",shape="box"];1357[label="xwv330",fontsize=16,color="green",shape="box"];1358[label="xwv280",fontsize=16,color="green",shape="box"];1359[label="xwv330",fontsize=16,color="green",shape="box"];1360[label="xwv280",fontsize=16,color="green",shape="box"];1361[label="xwv330",fontsize=16,color="green",shape="box"];1362[label="xwv280",fontsize=16,color="green",shape="box"];1363[label="xwv330",fontsize=16,color="green",shape="box"];1364[label="xwv280",fontsize=16,color="green",shape="box"];1365[label="xwv330",fontsize=16,color="green",shape="box"];1366[label="xwv280",fontsize=16,color="green",shape="box"];1367[label="xwv330",fontsize=16,color="green",shape="box"];1368[label="xwv280",fontsize=16,color="green",shape="box"];1369[label="xwv330",fontsize=16,color="green",shape="box"];1370[label="xwv280",fontsize=16,color="green",shape="box"];1371[label="xwv330",fontsize=16,color="green",shape="box"];1372[label="xwv280",fontsize=16,color="green",shape="box"];1373[label="xwv330",fontsize=16,color="green",shape="box"];1374[label="xwv280",fontsize=16,color="green",shape="box"];1375[label="xwv330",fontsize=16,color="green",shape="box"];1376[label="xwv280",fontsize=16,color="green",shape="box"];1377[label="xwv330",fontsize=16,color="green",shape="box"];1378[label="xwv280",fontsize=16,color="green",shape="box"];1379[label="xwv330",fontsize=16,color="green",shape="box"];1380[label="xwv280",fontsize=16,color="green",shape="box"];1381[label="xwv330",fontsize=16,color="green",shape="box"];1382[label="xwv280",fontsize=16,color="green",shape="box"];1383[label="xwv330",fontsize=16,color="green",shape="box"];1384[label="xwv280",fontsize=16,color="green",shape="box"];1385[label="xwv330",fontsize=16,color="green",shape="box"];1386[label="xwv280",fontsize=16,color="green",shape="box"];1387[label="xwv330",fontsize=16,color="green",shape="box"];1388[label="xwv280",fontsize=16,color="green",shape="box"];1389[label="xwv330",fontsize=16,color="green",shape="box"];1390[label="xwv280",fontsize=16,color="green",shape="box"];1391[label="xwv330",fontsize=16,color="green",shape="box"];1392[label="xwv280",fontsize=16,color="green",shape="box"];1393[label="xwv330",fontsize=16,color="green",shape="box"];1394[label="xwv280",fontsize=16,color="green",shape="box"];1395[label="xwv330",fontsize=16,color="green",shape="box"];1396[label="xwv280",fontsize=16,color="green",shape="box"];1397[label="xwv330",fontsize=16,color="green",shape="box"];1398[label="xwv280",fontsize=16,color="green",shape="box"];1399[label="xwv330",fontsize=16,color="green",shape="box"];1400[label="xwv280",fontsize=16,color="green",shape="box"];1401[label="xwv330",fontsize=16,color="green",shape="box"];1402[label="primEqNat (Succ xwv2800) xwv330",fontsize=16,color="burlywood",shape="box"];4303[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1402 -> 4303[label="",style="solid", color="burlywood", weight=9]; 4303 -> 1826[label="",style="solid", color="burlywood", weight=3]; 4304[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1402 -> 4304[label="",style="solid", color="burlywood", weight=9]; 4304 -> 1827[label="",style="solid", color="burlywood", weight=3]; 1403[label="primEqNat Zero xwv330",fontsize=16,color="burlywood",shape="box"];4305[label="xwv330/Succ xwv3300",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4305[label="",style="solid", color="burlywood", weight=9]; 4305 -> 1828[label="",style="solid", color="burlywood", weight=3]; 4306[label="xwv330/Zero",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4306[label="",style="solid", color="burlywood", weight=9]; 4306 -> 1829[label="",style="solid", color="burlywood", weight=3]; 1404[label="primEqInt (Pos (Succ xwv2800)) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1404 -> 1830[label="",style="solid", color="black", weight=3]; 1405[label="primEqInt (Pos (Succ xwv2800)) (Pos Zero)",fontsize=16,color="black",shape="box"];1405 -> 1831[label="",style="solid", color="black", weight=3]; 1406[label="False",fontsize=16,color="green",shape="box"];1407[label="primEqInt (Pos Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1407 -> 1832[label="",style="solid", color="black", weight=3]; 1408[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1408 -> 1833[label="",style="solid", color="black", weight=3]; 1409[label="primEqInt (Pos Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1409 -> 1834[label="",style="solid", color="black", weight=3]; 1410[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1410 -> 1835[label="",style="solid", color="black", weight=3]; 1411[label="False",fontsize=16,color="green",shape="box"];1412[label="primEqInt (Neg (Succ xwv2800)) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1412 -> 1836[label="",style="solid", color="black", weight=3]; 1413[label="primEqInt (Neg (Succ xwv2800)) (Neg Zero)",fontsize=16,color="black",shape="box"];1413 -> 1837[label="",style="solid", color="black", weight=3]; 1414[label="primEqInt (Neg Zero) (Pos (Succ xwv3300))",fontsize=16,color="black",shape="box"];1414 -> 1838[label="",style="solid", color="black", weight=3]; 1415[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1415 -> 1839[label="",style="solid", color="black", weight=3]; 1416[label="primEqInt (Neg Zero) (Neg (Succ xwv3300))",fontsize=16,color="black",shape="box"];1416 -> 1840[label="",style="solid", color="black", weight=3]; 1417[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1417 -> 1841[label="",style="solid", color="black", weight=3]; 1418[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];1419 -> 1842[label="",style="dashed", color="red", weight=0]; 1419[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];1419 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1551[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1551 -> 1844[label="",style="solid", color="black", weight=3]; 1552[label="FiniteMap.sizeFM (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1552 -> 1845[label="",style="solid", color="black", weight=3]; 1572[label="Pos (primPlusNat xwv1620 xwv1370)",fontsize=16,color="green",shape="box"];1572 -> 1846[label="",style="dashed", color="green", weight=3]; 1573[label="primMinusNat xwv1620 xwv1370",fontsize=16,color="burlywood",shape="triangle"];4307[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4307[label="",style="solid", color="burlywood", weight=9]; 4307 -> 1847[label="",style="solid", color="burlywood", weight=3]; 4308[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4308[label="",style="solid", color="burlywood", weight=9]; 4308 -> 1848[label="",style="solid", color="burlywood", weight=3]; 1574 -> 1573[label="",style="dashed", color="red", weight=0]; 1574[label="primMinusNat xwv1370 xwv1620",fontsize=16,color="magenta"];1574 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1575[label="Neg (primPlusNat xwv1620 xwv1370)",fontsize=16,color="green",shape="box"];1575 -> 1851[label="",style="dashed", color="green", weight=3]; 1553[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1555 -> 23[label="",style="dashed", color="red", weight=0]; 1555[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1555 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1554[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 xwv138",fontsize=16,color="burlywood",shape="triangle"];4309[label="xwv138/False",fontsize=10,color="white",style="solid",shape="box"];1554 -> 4309[label="",style="solid", color="burlywood", weight=9]; 4309 -> 1854[label="",style="solid", color="burlywood", weight=3]; 4310[label="xwv138/True",fontsize=10,color="white",style="solid",shape="box"];1554 -> 4310[label="",style="solid", color="burlywood", weight=9]; 4310 -> 1855[label="",style="solid", color="burlywood", weight=3]; 1561[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv13 xwv14 xwv16 FiniteMap.EmptyFM xwv16 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1561 -> 1856[label="",style="solid", color="black", weight=3]; 1562[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1562 -> 1857[label="",style="solid", color="black", weight=3]; 1563[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13 + FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];1563 -> 1858[label="",style="solid", color="black", weight=3]; 1564[label="GT",fontsize=16,color="green",shape="box"];1576[label="xwv61 <= xwv62",fontsize=16,color="blue",shape="box"];4311[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 1859[label="",style="solid", color="blue", weight=3]; 4312[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 1860[label="",style="solid", color="blue", weight=3]; 4313[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 1861[label="",style="solid", color="blue", weight=3]; 4314[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 1862[label="",style="solid", color="blue", weight=3]; 4315[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 1863[label="",style="solid", color="blue", weight=3]; 4316[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 1864[label="",style="solid", color="blue", weight=3]; 4317[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 1865[label="",style="solid", color="blue", weight=3]; 4318[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 1866[label="",style="solid", color="blue", weight=3]; 4319[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 1867[label="",style="solid", color="blue", weight=3]; 4320[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 1868[label="",style="solid", color="blue", weight=3]; 4321[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 1869[label="",style="solid", color="blue", weight=3]; 4322[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 1870[label="",style="solid", color="blue", weight=3]; 4323[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 1871[label="",style="solid", color="blue", weight=3]; 4324[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 1872[label="",style="solid", color="blue", weight=3]; 1577[label="compare1 (Just xwv147) (Just xwv148) False",fontsize=16,color="black",shape="box"];1577 -> 1873[label="",style="solid", color="black", weight=3]; 1578[label="compare1 (Just xwv147) (Just xwv148) True",fontsize=16,color="black",shape="box"];1578 -> 1874[label="",style="solid", color="black", weight=3]; 1586[label="xwv68 <= xwv69",fontsize=16,color="blue",shape="box"];4325[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 1875[label="",style="solid", color="blue", weight=3]; 4326[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 1876[label="",style="solid", color="blue", weight=3]; 4327[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 1877[label="",style="solid", color="blue", weight=3]; 4328[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 1878[label="",style="solid", color="blue", weight=3]; 4329[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 1879[label="",style="solid", color="blue", weight=3]; 4330[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 1880[label="",style="solid", color="blue", weight=3]; 4331[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 1881[label="",style="solid", color="blue", weight=3]; 4332[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 1882[label="",style="solid", color="blue", weight=3]; 4333[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4333[label="",style="solid", color="blue", weight=9]; 4333 -> 1883[label="",style="solid", color="blue", weight=3]; 4334[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4334[label="",style="solid", color="blue", weight=9]; 4334 -> 1884[label="",style="solid", color="blue", weight=3]; 4335[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4335[label="",style="solid", color="blue", weight=9]; 4335 -> 1885[label="",style="solid", color="blue", weight=3]; 4336[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4336[label="",style="solid", color="blue", weight=9]; 4336 -> 1886[label="",style="solid", color="blue", weight=3]; 4337[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4337[label="",style="solid", color="blue", weight=9]; 4337 -> 1887[label="",style="solid", color="blue", weight=3]; 4338[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4338[label="",style="solid", color="blue", weight=9]; 4338 -> 1888[label="",style="solid", color="blue", weight=3]; 1587[label="compare1 (Left xwv154) (Left xwv155) False",fontsize=16,color="black",shape="box"];1587 -> 1889[label="",style="solid", color="black", weight=3]; 1588[label="compare1 (Left xwv154) (Left xwv155) True",fontsize=16,color="black",shape="box"];1588 -> 1890[label="",style="solid", color="black", weight=3]; 1589[label="GT",fontsize=16,color="green",shape="box"];1597[label="xwv75 <= xwv76",fontsize=16,color="blue",shape="box"];4339[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4339[label="",style="solid", color="blue", weight=9]; 4339 -> 1891[label="",style="solid", color="blue", weight=3]; 4340[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4340[label="",style="solid", color="blue", weight=9]; 4340 -> 1892[label="",style="solid", color="blue", weight=3]; 4341[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4341[label="",style="solid", color="blue", weight=9]; 4341 -> 1893[label="",style="solid", color="blue", weight=3]; 4342[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4342[label="",style="solid", color="blue", weight=9]; 4342 -> 1894[label="",style="solid", color="blue", weight=3]; 4343[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4343[label="",style="solid", color="blue", weight=9]; 4343 -> 1895[label="",style="solid", color="blue", weight=3]; 4344[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4344[label="",style="solid", color="blue", weight=9]; 4344 -> 1896[label="",style="solid", color="blue", weight=3]; 4345[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4345[label="",style="solid", color="blue", weight=9]; 4345 -> 1897[label="",style="solid", color="blue", weight=3]; 4346[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4346[label="",style="solid", color="blue", weight=9]; 4346 -> 1898[label="",style="solid", color="blue", weight=3]; 4347[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4347[label="",style="solid", color="blue", weight=9]; 4347 -> 1899[label="",style="solid", color="blue", weight=3]; 4348[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4348[label="",style="solid", color="blue", weight=9]; 4348 -> 1900[label="",style="solid", color="blue", weight=3]; 4349[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4349[label="",style="solid", color="blue", weight=9]; 4349 -> 1901[label="",style="solid", color="blue", weight=3]; 4350[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4350[label="",style="solid", color="blue", weight=9]; 4350 -> 1902[label="",style="solid", color="blue", weight=3]; 4351[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4351[label="",style="solid", color="blue", weight=9]; 4351 -> 1903[label="",style="solid", color="blue", weight=3]; 4352[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 4352[label="",style="solid", color="blue", weight=9]; 4352 -> 1904[label="",style="solid", color="blue", weight=3]; 1598[label="compare1 (Right xwv161) (Right xwv162) False",fontsize=16,color="black",shape="box"];1598 -> 1905[label="",style="solid", color="black", weight=3]; 1599[label="compare1 (Right xwv161) (Right xwv162) True",fontsize=16,color="black",shape="box"];1599 -> 1906[label="",style="solid", color="black", weight=3]; 1600[label="primMulNat xwv400 xwv3010",fontsize=16,color="burlywood",shape="triangle"];4353[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];1600 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 1907[label="",style="solid", color="burlywood", weight=3]; 4354[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];1600 -> 4354[label="",style="solid", color="burlywood", weight=9]; 4354 -> 1908[label="",style="solid", color="burlywood", weight=3]; 1601 -> 1600[label="",style="dashed", color="red", weight=0]; 1601[label="primMulNat xwv400 xwv3010",fontsize=16,color="magenta"];1601 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1600[label="",style="dashed", color="red", weight=0]; 1602[label="primMulNat xwv400 xwv3010",fontsize=16,color="magenta"];1602 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1600[label="",style="dashed", color="red", weight=0]; 1603[label="primMulNat xwv400 xwv3010",fontsize=16,color="magenta"];1603 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1604[label="xwv400",fontsize=16,color="green",shape="box"];1605[label="xwv3010",fontsize=16,color="green",shape="box"];1916[label="xwv125",fontsize=16,color="green",shape="box"];1917[label="xwv125 < xwv127",fontsize=16,color="blue",shape="box"];4355[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4355[label="",style="solid", color="blue", weight=9]; 4355 -> 1928[label="",style="solid", color="blue", weight=3]; 4356[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 1929[label="",style="solid", color="blue", weight=3]; 4357[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 1930[label="",style="solid", color="blue", weight=3]; 4358[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 1931[label="",style="solid", color="blue", weight=3]; 4359[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 1932[label="",style="solid", color="blue", weight=3]; 4360[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 1933[label="",style="solid", color="blue", weight=3]; 4361[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 1934[label="",style="solid", color="blue", weight=3]; 4362[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 1935[label="",style="solid", color="blue", weight=3]; 4363[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 1936[label="",style="solid", color="blue", weight=3]; 4364[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 1937[label="",style="solid", color="blue", weight=3]; 4365[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 1938[label="",style="solid", color="blue", weight=3]; 4366[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 1939[label="",style="solid", color="blue", weight=3]; 4367[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 1940[label="",style="solid", color="blue", weight=3]; 4368[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 1941[label="",style="solid", color="blue", weight=3]; 1918[label="xwv126",fontsize=16,color="green",shape="box"];1919[label="xwv127",fontsize=16,color="green",shape="box"];1920[label="xwv128",fontsize=16,color="green",shape="box"];1921 -> 1178[label="",style="dashed", color="red", weight=0]; 1921[label="xwv125 == xwv127 && xwv126 <= xwv128",fontsize=16,color="magenta"];1921 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1921 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1915[label="compare1 (xwv177,xwv178) (xwv179,xwv180) (xwv181 || xwv182)",fontsize=16,color="burlywood",shape="triangle"];4369[label="xwv181/False",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4369[label="",style="solid", color="burlywood", weight=9]; 4369 -> 1944[label="",style="solid", color="burlywood", weight=3]; 4370[label="xwv181/True",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 1945[label="",style="solid", color="burlywood", weight=3]; 1608[label="GT",fontsize=16,color="green",shape="box"];1609[label="xwv41",fontsize=16,color="green",shape="box"];1610[label="xwv301",fontsize=16,color="green",shape="box"];1611[label="xwv41",fontsize=16,color="green",shape="box"];1612[label="xwv301",fontsize=16,color="green",shape="box"];1613[label="xwv41",fontsize=16,color="green",shape="box"];1614[label="xwv301",fontsize=16,color="green",shape="box"];1615[label="xwv41",fontsize=16,color="green",shape="box"];1616[label="xwv301",fontsize=16,color="green",shape="box"];1617[label="xwv41",fontsize=16,color="green",shape="box"];1618[label="xwv301",fontsize=16,color="green",shape="box"];1619[label="xwv41",fontsize=16,color="green",shape="box"];1620[label="xwv301",fontsize=16,color="green",shape="box"];1621[label="xwv41",fontsize=16,color="green",shape="box"];1622[label="xwv301",fontsize=16,color="green",shape="box"];1623[label="xwv41",fontsize=16,color="green",shape="box"];1624[label="xwv301",fontsize=16,color="green",shape="box"];1625[label="xwv41",fontsize=16,color="green",shape="box"];1626[label="xwv301",fontsize=16,color="green",shape="box"];1627[label="xwv41",fontsize=16,color="green",shape="box"];1628[label="xwv301",fontsize=16,color="green",shape="box"];1629[label="xwv41",fontsize=16,color="green",shape="box"];1630[label="xwv301",fontsize=16,color="green",shape="box"];1631[label="xwv41",fontsize=16,color="green",shape="box"];1632[label="xwv301",fontsize=16,color="green",shape="box"];1633[label="xwv41",fontsize=16,color="green",shape="box"];1634[label="xwv301",fontsize=16,color="green",shape="box"];1635[label="xwv41",fontsize=16,color="green",shape="box"];1636[label="xwv301",fontsize=16,color="green",shape="box"];1637[label="xwv42",fontsize=16,color="green",shape="box"];1638[label="xwv302",fontsize=16,color="green",shape="box"];1639[label="xwv42",fontsize=16,color="green",shape="box"];1640[label="xwv302",fontsize=16,color="green",shape="box"];1641[label="xwv42",fontsize=16,color="green",shape="box"];1642[label="xwv302",fontsize=16,color="green",shape="box"];1643[label="xwv42",fontsize=16,color="green",shape="box"];1644[label="xwv302",fontsize=16,color="green",shape="box"];1645[label="xwv42",fontsize=16,color="green",shape="box"];1646[label="xwv302",fontsize=16,color="green",shape="box"];1647[label="xwv42",fontsize=16,color="green",shape="box"];1648[label="xwv302",fontsize=16,color="green",shape="box"];1649[label="xwv42",fontsize=16,color="green",shape="box"];1650[label="xwv302",fontsize=16,color="green",shape="box"];1651[label="xwv42",fontsize=16,color="green",shape="box"];1652[label="xwv302",fontsize=16,color="green",shape="box"];1653[label="xwv42",fontsize=16,color="green",shape="box"];1654[label="xwv302",fontsize=16,color="green",shape="box"];1655[label="xwv42",fontsize=16,color="green",shape="box"];1656[label="xwv302",fontsize=16,color="green",shape="box"];1657[label="xwv42",fontsize=16,color="green",shape="box"];1658[label="xwv302",fontsize=16,color="green",shape="box"];1659[label="xwv42",fontsize=16,color="green",shape="box"];1660[label="xwv302",fontsize=16,color="green",shape="box"];1661[label="xwv42",fontsize=16,color="green",shape="box"];1662[label="xwv302",fontsize=16,color="green",shape="box"];1663[label="xwv42",fontsize=16,color="green",shape="box"];1664[label="xwv302",fontsize=16,color="green",shape="box"];1949[label="xwv105",fontsize=16,color="green",shape="box"];1950[label="xwv106",fontsize=16,color="green",shape="box"];1951[label="xwv107",fontsize=16,color="green",shape="box"];1952[label="xwv102",fontsize=16,color="green",shape="box"];1953[label="xwv104",fontsize=16,color="green",shape="box"];1954[label="xwv103",fontsize=16,color="green",shape="box"];1955[label="xwv102 < xwv105",fontsize=16,color="blue",shape="box"];4371[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4371[label="",style="solid", color="blue", weight=9]; 4371 -> 1965[label="",style="solid", color="blue", weight=3]; 4372[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4372[label="",style="solid", color="blue", weight=9]; 4372 -> 1966[label="",style="solid", color="blue", weight=3]; 4373[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 1967[label="",style="solid", color="blue", weight=3]; 4374[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 1968[label="",style="solid", color="blue", weight=3]; 4375[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 1969[label="",style="solid", color="blue", weight=3]; 4376[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 1970[label="",style="solid", color="blue", weight=3]; 4377[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4377[label="",style="solid", color="blue", weight=9]; 4377 -> 1971[label="",style="solid", color="blue", weight=3]; 4378[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4378[label="",style="solid", color="blue", weight=9]; 4378 -> 1972[label="",style="solid", color="blue", weight=3]; 4379[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4379[label="",style="solid", color="blue", weight=9]; 4379 -> 1973[label="",style="solid", color="blue", weight=3]; 4380[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 1974[label="",style="solid", color="blue", weight=3]; 4381[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 1975[label="",style="solid", color="blue", weight=3]; 4382[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 1976[label="",style="solid", color="blue", weight=3]; 4383[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 1977[label="",style="solid", color="blue", weight=3]; 4384[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 1978[label="",style="solid", color="blue", weight=3]; 1956 -> 1178[label="",style="dashed", color="red", weight=0]; 1956[label="xwv102 == xwv105 && (xwv103 < xwv106 || xwv103 == xwv106 && xwv104 <= xwv107)",fontsize=16,color="magenta"];1956 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1956 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1948[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) (xwv198 || xwv199)",fontsize=16,color="burlywood",shape="triangle"];4385[label="xwv198/False",fontsize=10,color="white",style="solid",shape="box"];1948 -> 4385[label="",style="solid", color="burlywood", weight=9]; 4385 -> 1981[label="",style="solid", color="burlywood", weight=3]; 4386[label="xwv198/True",fontsize=10,color="white",style="solid",shape="box"];1948 -> 4386[label="",style="solid", color="burlywood", weight=9]; 4386 -> 1982[label="",style="solid", color="burlywood", weight=3]; 1667[label="GT",fontsize=16,color="green",shape="box"];1668[label="GT",fontsize=16,color="green",shape="box"];1669[label="GT",fontsize=16,color="green",shape="box"];1670[label="xwv280",fontsize=16,color="green",shape="box"];1671[label="xwv331",fontsize=16,color="green",shape="box"];1672[label="xwv281",fontsize=16,color="green",shape="box"];1673[label="xwv330",fontsize=16,color="green",shape="box"];1674[label="xwv280",fontsize=16,color="green",shape="box"];1675[label="xwv330",fontsize=16,color="green",shape="box"];1676[label="xwv280",fontsize=16,color="green",shape="box"];1677[label="xwv330",fontsize=16,color="green",shape="box"];1678[label="xwv280",fontsize=16,color="green",shape="box"];1679[label="xwv330",fontsize=16,color="green",shape="box"];1680[label="xwv280",fontsize=16,color="green",shape="box"];1681[label="xwv330",fontsize=16,color="green",shape="box"];1682[label="xwv280",fontsize=16,color="green",shape="box"];1683[label="xwv330",fontsize=16,color="green",shape="box"];1684[label="xwv280",fontsize=16,color="green",shape="box"];1685[label="xwv330",fontsize=16,color="green",shape="box"];1686[label="xwv280",fontsize=16,color="green",shape="box"];1687[label="xwv330",fontsize=16,color="green",shape="box"];1688[label="xwv280",fontsize=16,color="green",shape="box"];1689[label="xwv330",fontsize=16,color="green",shape="box"];1690[label="xwv280",fontsize=16,color="green",shape="box"];1691[label="xwv330",fontsize=16,color="green",shape="box"];1692[label="xwv280",fontsize=16,color="green",shape="box"];1693[label="xwv330",fontsize=16,color="green",shape="box"];1694[label="xwv280",fontsize=16,color="green",shape="box"];1695[label="xwv330",fontsize=16,color="green",shape="box"];1696[label="xwv280",fontsize=16,color="green",shape="box"];1697[label="xwv330",fontsize=16,color="green",shape="box"];1698[label="xwv280",fontsize=16,color="green",shape="box"];1699[label="xwv330",fontsize=16,color="green",shape="box"];1700[label="xwv280",fontsize=16,color="green",shape="box"];1701[label="xwv330",fontsize=16,color="green",shape="box"];1702[label="xwv281",fontsize=16,color="green",shape="box"];1703[label="xwv331",fontsize=16,color="green",shape="box"];1704[label="xwv281",fontsize=16,color="green",shape="box"];1705[label="xwv331",fontsize=16,color="green",shape="box"];1706[label="xwv281",fontsize=16,color="green",shape="box"];1707[label="xwv331",fontsize=16,color="green",shape="box"];1708[label="xwv281",fontsize=16,color="green",shape="box"];1709[label="xwv331",fontsize=16,color="green",shape="box"];1710[label="xwv281",fontsize=16,color="green",shape="box"];1711[label="xwv331",fontsize=16,color="green",shape="box"];1712[label="xwv281",fontsize=16,color="green",shape="box"];1713[label="xwv331",fontsize=16,color="green",shape="box"];1714[label="xwv281",fontsize=16,color="green",shape="box"];1715[label="xwv331",fontsize=16,color="green",shape="box"];1716[label="xwv281",fontsize=16,color="green",shape="box"];1717[label="xwv331",fontsize=16,color="green",shape="box"];1718[label="xwv281",fontsize=16,color="green",shape="box"];1719[label="xwv331",fontsize=16,color="green",shape="box"];1720[label="xwv281",fontsize=16,color="green",shape="box"];1721[label="xwv331",fontsize=16,color="green",shape="box"];1722[label="xwv281",fontsize=16,color="green",shape="box"];1723[label="xwv331",fontsize=16,color="green",shape="box"];1724[label="xwv281",fontsize=16,color="green",shape="box"];1725[label="xwv331",fontsize=16,color="green",shape="box"];1726[label="xwv281",fontsize=16,color="green",shape="box"];1727[label="xwv331",fontsize=16,color="green",shape="box"];1728[label="xwv281",fontsize=16,color="green",shape="box"];1729[label="xwv331",fontsize=16,color="green",shape="box"];1730[label="xwv280",fontsize=16,color="green",shape="box"];1731[label="xwv330",fontsize=16,color="green",shape="box"];1732[label="xwv280",fontsize=16,color="green",shape="box"];1733[label="xwv330",fontsize=16,color="green",shape="box"];1734[label="xwv280",fontsize=16,color="green",shape="box"];1735[label="xwv330",fontsize=16,color="green",shape="box"];1736[label="xwv280",fontsize=16,color="green",shape="box"];1737[label="xwv330",fontsize=16,color="green",shape="box"];1738[label="xwv280",fontsize=16,color="green",shape="box"];1739[label="xwv330",fontsize=16,color="green",shape="box"];1740[label="xwv280",fontsize=16,color="green",shape="box"];1741[label="xwv330",fontsize=16,color="green",shape="box"];1742[label="xwv280",fontsize=16,color="green",shape="box"];1743[label="xwv330",fontsize=16,color="green",shape="box"];1744[label="xwv280",fontsize=16,color="green",shape="box"];1745[label="xwv330",fontsize=16,color="green",shape="box"];1746[label="xwv280",fontsize=16,color="green",shape="box"];1747[label="xwv330",fontsize=16,color="green",shape="box"];1748[label="xwv280",fontsize=16,color="green",shape="box"];1749[label="xwv330",fontsize=16,color="green",shape="box"];1750[label="xwv280",fontsize=16,color="green",shape="box"];1751[label="xwv330",fontsize=16,color="green",shape="box"];1752[label="xwv280",fontsize=16,color="green",shape="box"];1753[label="xwv330",fontsize=16,color="green",shape="box"];1754[label="xwv280",fontsize=16,color="green",shape="box"];1755[label="xwv330",fontsize=16,color="green",shape="box"];1756[label="xwv280",fontsize=16,color="green",shape="box"];1757[label="xwv330",fontsize=16,color="green",shape="box"];1758[label="xwv280",fontsize=16,color="green",shape="box"];1759[label="xwv330",fontsize=16,color="green",shape="box"];1760[label="xwv280",fontsize=16,color="green",shape="box"];1761[label="xwv330",fontsize=16,color="green",shape="box"];1762[label="xwv281",fontsize=16,color="green",shape="box"];1763[label="xwv331",fontsize=16,color="green",shape="box"];1764[label="xwv281",fontsize=16,color="green",shape="box"];1765[label="xwv331",fontsize=16,color="green",shape="box"];1766[label="xwv280",fontsize=16,color="green",shape="box"];1767[label="xwv330",fontsize=16,color="green",shape="box"];1768[label="xwv280",fontsize=16,color="green",shape="box"];1769[label="xwv330",fontsize=16,color="green",shape="box"];1770[label="xwv280",fontsize=16,color="green",shape="box"];1771[label="xwv330",fontsize=16,color="green",shape="box"];1772[label="xwv280",fontsize=16,color="green",shape="box"];1773[label="xwv330",fontsize=16,color="green",shape="box"];1774[label="xwv280",fontsize=16,color="green",shape="box"];1775[label="xwv330",fontsize=16,color="green",shape="box"];1776[label="xwv280",fontsize=16,color="green",shape="box"];1777[label="xwv330",fontsize=16,color="green",shape="box"];1778[label="xwv280",fontsize=16,color="green",shape="box"];1779[label="xwv330",fontsize=16,color="green",shape="box"];1780[label="xwv280",fontsize=16,color="green",shape="box"];1781[label="xwv330",fontsize=16,color="green",shape="box"];1782[label="xwv280",fontsize=16,color="green",shape="box"];1783[label="xwv330",fontsize=16,color="green",shape="box"];1784[label="xwv280",fontsize=16,color="green",shape="box"];1785[label="xwv330",fontsize=16,color="green",shape="box"];1786[label="xwv280",fontsize=16,color="green",shape="box"];1787[label="xwv330",fontsize=16,color="green",shape="box"];1788[label="xwv280",fontsize=16,color="green",shape="box"];1789[label="xwv330",fontsize=16,color="green",shape="box"];1790[label="xwv280",fontsize=16,color="green",shape="box"];1791[label="xwv330",fontsize=16,color="green",shape="box"];1792[label="xwv280",fontsize=16,color="green",shape="box"];1793[label="xwv330",fontsize=16,color="green",shape="box"];1794 -> 387[label="",style="dashed", color="red", weight=0]; 1794[label="xwv281 == xwv331",fontsize=16,color="magenta"];1794 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1794 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1795 -> 388[label="",style="dashed", color="red", weight=0]; 1795[label="xwv281 == xwv331",fontsize=16,color="magenta"];1795 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1795 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1796 -> 389[label="",style="dashed", color="red", weight=0]; 1796[label="xwv281 == xwv331",fontsize=16,color="magenta"];1796 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1796 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1797 -> 390[label="",style="dashed", color="red", weight=0]; 1797[label="xwv281 == xwv331",fontsize=16,color="magenta"];1797 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1797 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1798 -> 391[label="",style="dashed", color="red", weight=0]; 1798[label="xwv281 == xwv331",fontsize=16,color="magenta"];1798 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1798 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1799 -> 392[label="",style="dashed", color="red", weight=0]; 1799[label="xwv281 == xwv331",fontsize=16,color="magenta"];1799 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1799 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1800 -> 393[label="",style="dashed", color="red", weight=0]; 1800[label="xwv281 == xwv331",fontsize=16,color="magenta"];1800 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1800 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1801 -> 394[label="",style="dashed", color="red", weight=0]; 1801[label="xwv281 == xwv331",fontsize=16,color="magenta"];1801 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1802 -> 395[label="",style="dashed", color="red", weight=0]; 1802[label="xwv281 == xwv331",fontsize=16,color="magenta"];1802 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1802 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1803 -> 396[label="",style="dashed", color="red", weight=0]; 1803[label="xwv281 == xwv331",fontsize=16,color="magenta"];1803 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1803 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1804 -> 397[label="",style="dashed", color="red", weight=0]; 1804[label="xwv281 == xwv331",fontsize=16,color="magenta"];1804 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1804 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1805 -> 398[label="",style="dashed", color="red", weight=0]; 1805[label="xwv281 == xwv331",fontsize=16,color="magenta"];1805 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1805 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1806 -> 399[label="",style="dashed", color="red", weight=0]; 1806[label="xwv281 == xwv331",fontsize=16,color="magenta"];1806 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1806 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1807 -> 400[label="",style="dashed", color="red", weight=0]; 1807[label="xwv281 == xwv331",fontsize=16,color="magenta"];1807 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1807 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1808 -> 387[label="",style="dashed", color="red", weight=0]; 1808[label="xwv282 == xwv332",fontsize=16,color="magenta"];1808 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1808 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1809 -> 388[label="",style="dashed", color="red", weight=0]; 1809[label="xwv282 == xwv332",fontsize=16,color="magenta"];1809 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1809 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1810 -> 389[label="",style="dashed", color="red", weight=0]; 1810[label="xwv282 == xwv332",fontsize=16,color="magenta"];1810 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1810 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1811 -> 390[label="",style="dashed", color="red", weight=0]; 1811[label="xwv282 == xwv332",fontsize=16,color="magenta"];1811 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1811 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1812 -> 391[label="",style="dashed", color="red", weight=0]; 1812[label="xwv282 == xwv332",fontsize=16,color="magenta"];1812 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1812 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1813 -> 392[label="",style="dashed", color="red", weight=0]; 1813[label="xwv282 == xwv332",fontsize=16,color="magenta"];1813 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1813 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1814 -> 393[label="",style="dashed", color="red", weight=0]; 1814[label="xwv282 == xwv332",fontsize=16,color="magenta"];1814 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1814 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1815 -> 394[label="",style="dashed", color="red", weight=0]; 1815[label="xwv282 == xwv332",fontsize=16,color="magenta"];1815 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1815 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1816 -> 395[label="",style="dashed", color="red", weight=0]; 1816[label="xwv282 == xwv332",fontsize=16,color="magenta"];1816 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1816 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1817 -> 396[label="",style="dashed", color="red", weight=0]; 1817[label="xwv282 == xwv332",fontsize=16,color="magenta"];1817 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1817 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1818 -> 397[label="",style="dashed", color="red", weight=0]; 1818[label="xwv282 == xwv332",fontsize=16,color="magenta"];1818 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1818 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1819 -> 398[label="",style="dashed", color="red", weight=0]; 1819[label="xwv282 == xwv332",fontsize=16,color="magenta"];1819 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1819 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1820 -> 399[label="",style="dashed", color="red", weight=0]; 1820[label="xwv282 == xwv332",fontsize=16,color="magenta"];1820 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1820 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1821 -> 400[label="",style="dashed", color="red", weight=0]; 1821[label="xwv282 == xwv332",fontsize=16,color="magenta"];1821 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1821 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1822[label="xwv280",fontsize=16,color="green",shape="box"];1823[label="xwv331",fontsize=16,color="green",shape="box"];1824[label="xwv281",fontsize=16,color="green",shape="box"];1825[label="xwv330",fontsize=16,color="green",shape="box"];1826[label="primEqNat (Succ xwv2800) (Succ xwv3300)",fontsize=16,color="black",shape="box"];1826 -> 2039[label="",style="solid", color="black", weight=3]; 1827[label="primEqNat (Succ xwv2800) Zero",fontsize=16,color="black",shape="box"];1827 -> 2040[label="",style="solid", color="black", weight=3]; 1828[label="primEqNat Zero (Succ xwv3300)",fontsize=16,color="black",shape="box"];1828 -> 2041[label="",style="solid", color="black", weight=3]; 1829[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1829 -> 2042[label="",style="solid", color="black", weight=3]; 1830 -> 1089[label="",style="dashed", color="red", weight=0]; 1830[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1830 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1830 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1831[label="False",fontsize=16,color="green",shape="box"];1832[label="False",fontsize=16,color="green",shape="box"];1833[label="True",fontsize=16,color="green",shape="box"];1834[label="False",fontsize=16,color="green",shape="box"];1835[label="True",fontsize=16,color="green",shape="box"];1836 -> 1089[label="",style="dashed", color="red", weight=0]; 1836[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];1836 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1836 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1837[label="False",fontsize=16,color="green",shape="box"];1838[label="False",fontsize=16,color="green",shape="box"];1839[label="True",fontsize=16,color="green",shape="box"];1840[label="False",fontsize=16,color="green",shape="box"];1841[label="True",fontsize=16,color="green",shape="box"];1843 -> 23[label="",style="dashed", color="red", weight=0]; 1843[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) > FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];1843 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1843 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1842[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) xwv167",fontsize=16,color="burlywood",shape="triangle"];4387[label="xwv167/False",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4387[label="",style="solid", color="burlywood", weight=9]; 4387 -> 2049[label="",style="solid", color="burlywood", weight=3]; 4388[label="xwv167/True",fontsize=10,color="white",style="solid",shape="box"];1842 -> 4388[label="",style="solid", color="burlywood", weight=9]; 4388 -> 2050[label="",style="solid", color="burlywood", weight=3]; 1844[label="Pos Zero",fontsize=16,color="green",shape="box"];1845[label="xwv352",fontsize=16,color="green",shape="box"];1846[label="primPlusNat xwv1620 xwv1370",fontsize=16,color="burlywood",shape="triangle"];4389[label="xwv1620/Succ xwv16200",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4389[label="",style="solid", color="burlywood", weight=9]; 4389 -> 2051[label="",style="solid", color="burlywood", weight=3]; 4390[label="xwv1620/Zero",fontsize=10,color="white",style="solid",shape="box"];1846 -> 4390[label="",style="solid", color="burlywood", weight=9]; 4390 -> 2052[label="",style="solid", color="burlywood", weight=3]; 1847[label="primMinusNat (Succ xwv16200) xwv1370",fontsize=16,color="burlywood",shape="box"];4391[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 2053[label="",style="solid", color="burlywood", weight=3]; 4392[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 2054[label="",style="solid", color="burlywood", weight=3]; 1848[label="primMinusNat Zero xwv1370",fontsize=16,color="burlywood",shape="box"];4393[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 2055[label="",style="solid", color="burlywood", weight=3]; 4394[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 2056[label="",style="solid", color="burlywood", weight=3]; 1849[label="xwv1620",fontsize=16,color="green",shape="box"];1850[label="xwv1370",fontsize=16,color="green",shape="box"];1851 -> 1846[label="",style="dashed", color="red", weight=0]; 1851[label="primPlusNat xwv1620 xwv1370",fontsize=16,color="magenta"];1851 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1851 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1540[label="",style="dashed", color="red", weight=0]; 1852[label="FiniteMap.mkBalBranch6Size_l xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1853 -> 436[label="",style="dashed", color="red", weight=0]; 1853[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];1853 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1853 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1854[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 False",fontsize=16,color="black",shape="box"];1854 -> 2061[label="",style="solid", color="black", weight=3]; 1855[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];1855 -> 2062[label="",style="solid", color="black", weight=3]; 1856[label="error []",fontsize=16,color="red",shape="box"];1857[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];1857 -> 2063[label="",style="solid", color="black", weight=3]; 1858 -> 1538[label="",style="dashed", color="red", weight=0]; 1858[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13) (FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13)",fontsize=16,color="magenta"];1858 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1859[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1859 -> 2066[label="",style="solid", color="black", weight=3]; 1860[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4395[label="xwv61/Nothing",fontsize=10,color="white",style="solid",shape="box"];1860 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 2067[label="",style="solid", color="burlywood", weight=3]; 4396[label="xwv61/Just xwv610",fontsize=10,color="white",style="solid",shape="box"];1860 -> 4396[label="",style="solid", color="burlywood", weight=9]; 4396 -> 2068[label="",style="solid", color="burlywood", weight=3]; 1861[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4397[label="xwv61/Left xwv610",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4397[label="",style="solid", color="burlywood", weight=9]; 4397 -> 2069[label="",style="solid", color="burlywood", weight=3]; 4398[label="xwv61/Right xwv610",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4398[label="",style="solid", color="burlywood", weight=9]; 4398 -> 2070[label="",style="solid", color="burlywood", weight=3]; 1862[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1862 -> 2071[label="",style="solid", color="black", weight=3]; 1863[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1863 -> 2072[label="",style="solid", color="black", weight=3]; 1864[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1864 -> 2073[label="",style="solid", color="black", weight=3]; 1865[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1865 -> 2074[label="",style="solid", color="black", weight=3]; 1866[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4399[label="xwv61/(xwv610,xwv611)",fontsize=10,color="white",style="solid",shape="box"];1866 -> 4399[label="",style="solid", color="burlywood", weight=9]; 4399 -> 2075[label="",style="solid", color="burlywood", weight=3]; 1867[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1867 -> 2076[label="",style="solid", color="black", weight=3]; 1868[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4400[label="xwv61/False",fontsize=10,color="white",style="solid",shape="box"];1868 -> 4400[label="",style="solid", color="burlywood", weight=9]; 4400 -> 2077[label="",style="solid", color="burlywood", weight=3]; 4401[label="xwv61/True",fontsize=10,color="white",style="solid",shape="box"];1868 -> 4401[label="",style="solid", color="burlywood", weight=9]; 4401 -> 2078[label="",style="solid", color="burlywood", weight=3]; 1869[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4402[label="xwv61/(xwv610,xwv611,xwv612)",fontsize=10,color="white",style="solid",shape="box"];1869 -> 4402[label="",style="solid", color="burlywood", weight=9]; 4402 -> 2079[label="",style="solid", color="burlywood", weight=3]; 1870[label="xwv61 <= xwv62",fontsize=16,color="burlywood",shape="triangle"];4403[label="xwv61/LT",fontsize=10,color="white",style="solid",shape="box"];1870 -> 4403[label="",style="solid", color="burlywood", weight=9]; 4403 -> 2080[label="",style="solid", color="burlywood", weight=3]; 4404[label="xwv61/EQ",fontsize=10,color="white",style="solid",shape="box"];1870 -> 4404[label="",style="solid", color="burlywood", weight=9]; 4404 -> 2081[label="",style="solid", color="burlywood", weight=3]; 4405[label="xwv61/GT",fontsize=10,color="white",style="solid",shape="box"];1870 -> 4405[label="",style="solid", color="burlywood", weight=9]; 4405 -> 2082[label="",style="solid", color="burlywood", weight=3]; 1871[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1871 -> 2083[label="",style="solid", color="black", weight=3]; 1872[label="xwv61 <= xwv62",fontsize=16,color="black",shape="triangle"];1872 -> 2084[label="",style="solid", color="black", weight=3]; 1873[label="compare0 (Just xwv147) (Just xwv148) otherwise",fontsize=16,color="black",shape="box"];1873 -> 2085[label="",style="solid", color="black", weight=3]; 1874[label="LT",fontsize=16,color="green",shape="box"];1875 -> 1859[label="",style="dashed", color="red", weight=0]; 1875[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1875 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1860[label="",style="dashed", color="red", weight=0]; 1876[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1876 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1861[label="",style="dashed", color="red", weight=0]; 1877[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1877 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1862[label="",style="dashed", color="red", weight=0]; 1878[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1878 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1863[label="",style="dashed", color="red", weight=0]; 1879[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1879 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1864[label="",style="dashed", color="red", weight=0]; 1880[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1880 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1865[label="",style="dashed", color="red", weight=0]; 1881[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1881 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1866[label="",style="dashed", color="red", weight=0]; 1882[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1882 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1867[label="",style="dashed", color="red", weight=0]; 1883[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1883 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1868[label="",style="dashed", color="red", weight=0]; 1884[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1884 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1869[label="",style="dashed", color="red", weight=0]; 1885[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1885 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1870[label="",style="dashed", color="red", weight=0]; 1886[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1886 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1871[label="",style="dashed", color="red", weight=0]; 1887[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1887 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1888 -> 1872[label="",style="dashed", color="red", weight=0]; 1888[label="xwv68 <= xwv69",fontsize=16,color="magenta"];1888 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1889[label="compare0 (Left xwv154) (Left xwv155) otherwise",fontsize=16,color="black",shape="box"];1889 -> 2114[label="",style="solid", color="black", weight=3]; 1890[label="LT",fontsize=16,color="green",shape="box"];1891 -> 1859[label="",style="dashed", color="red", weight=0]; 1891[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1891 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1892 -> 1860[label="",style="dashed", color="red", weight=0]; 1892[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1892 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1893 -> 1861[label="",style="dashed", color="red", weight=0]; 1893[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1893 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1894 -> 1862[label="",style="dashed", color="red", weight=0]; 1894[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1894 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1895 -> 1863[label="",style="dashed", color="red", weight=0]; 1895[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1895 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1896 -> 1864[label="",style="dashed", color="red", weight=0]; 1896[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1896 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1897 -> 1865[label="",style="dashed", color="red", weight=0]; 1897[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1897 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1898 -> 1866[label="",style="dashed", color="red", weight=0]; 1898[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1898 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1899 -> 1867[label="",style="dashed", color="red", weight=0]; 1899[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1899 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1900 -> 1868[label="",style="dashed", color="red", weight=0]; 1900[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1900 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1869[label="",style="dashed", color="red", weight=0]; 1901[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1901 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1870[label="",style="dashed", color="red", weight=0]; 1902[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1902 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1871[label="",style="dashed", color="red", weight=0]; 1903[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1903 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1872[label="",style="dashed", color="red", weight=0]; 1904[label="xwv75 <= xwv76",fontsize=16,color="magenta"];1904 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1905[label="compare0 (Right xwv161) (Right xwv162) otherwise",fontsize=16,color="black",shape="box"];1905 -> 2143[label="",style="solid", color="black", weight=3]; 1906[label="LT",fontsize=16,color="green",shape="box"];1907[label="primMulNat (Succ xwv4000) xwv3010",fontsize=16,color="burlywood",shape="box"];4406[label="xwv3010/Succ xwv30100",fontsize=10,color="white",style="solid",shape="box"];1907 -> 4406[label="",style="solid", color="burlywood", weight=9]; 4406 -> 2144[label="",style="solid", color="burlywood", weight=3]; 4407[label="xwv3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1907 -> 4407[label="",style="solid", color="burlywood", weight=9]; 4407 -> 2145[label="",style="solid", color="burlywood", weight=3]; 1908[label="primMulNat Zero xwv3010",fontsize=16,color="burlywood",shape="box"];4408[label="xwv3010/Succ xwv30100",fontsize=10,color="white",style="solid",shape="box"];1908 -> 4408[label="",style="solid", color="burlywood", weight=9]; 4408 -> 2146[label="",style="solid", color="burlywood", weight=3]; 4409[label="xwv3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1908 -> 4409[label="",style="solid", color="burlywood", weight=9]; 4409 -> 2147[label="",style="solid", color="burlywood", weight=3]; 1909[label="xwv3010",fontsize=16,color="green",shape="box"];1910[label="xwv400",fontsize=16,color="green",shape="box"];1911[label="xwv3010",fontsize=16,color="green",shape="box"];1912[label="xwv400",fontsize=16,color="green",shape="box"];1928 -> 95[label="",style="dashed", color="red", weight=0]; 1928[label="xwv125 < xwv127",fontsize=16,color="magenta"];1928 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1929 -> 96[label="",style="dashed", color="red", weight=0]; 1929[label="xwv125 < xwv127",fontsize=16,color="magenta"];1929 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1930 -> 97[label="",style="dashed", color="red", weight=0]; 1930[label="xwv125 < xwv127",fontsize=16,color="magenta"];1930 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1931 -> 98[label="",style="dashed", color="red", weight=0]; 1931[label="xwv125 < xwv127",fontsize=16,color="magenta"];1931 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1932 -> 99[label="",style="dashed", color="red", weight=0]; 1932[label="xwv125 < xwv127",fontsize=16,color="magenta"];1932 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1933 -> 100[label="",style="dashed", color="red", weight=0]; 1933[label="xwv125 < xwv127",fontsize=16,color="magenta"];1933 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1934 -> 101[label="",style="dashed", color="red", weight=0]; 1934[label="xwv125 < xwv127",fontsize=16,color="magenta"];1934 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1935 -> 102[label="",style="dashed", color="red", weight=0]; 1935[label="xwv125 < xwv127",fontsize=16,color="magenta"];1935 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1936 -> 103[label="",style="dashed", color="red", weight=0]; 1936[label="xwv125 < xwv127",fontsize=16,color="magenta"];1936 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1937 -> 104[label="",style="dashed", color="red", weight=0]; 1937[label="xwv125 < xwv127",fontsize=16,color="magenta"];1937 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1938 -> 105[label="",style="dashed", color="red", weight=0]; 1938[label="xwv125 < xwv127",fontsize=16,color="magenta"];1938 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1938 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1939 -> 106[label="",style="dashed", color="red", weight=0]; 1939[label="xwv125 < xwv127",fontsize=16,color="magenta"];1939 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1940 -> 107[label="",style="dashed", color="red", weight=0]; 1940[label="xwv125 < xwv127",fontsize=16,color="magenta"];1940 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1941 -> 108[label="",style="dashed", color="red", weight=0]; 1941[label="xwv125 < xwv127",fontsize=16,color="magenta"];1941 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1942[label="xwv125 == xwv127",fontsize=16,color="blue",shape="box"];4410[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2176[label="",style="solid", color="blue", weight=3]; 4411[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2177[label="",style="solid", color="blue", weight=3]; 4412[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2178[label="",style="solid", color="blue", weight=3]; 4413[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2179[label="",style="solid", color="blue", weight=3]; 4414[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2180[label="",style="solid", color="blue", weight=3]; 4415[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 2181[label="",style="solid", color="blue", weight=3]; 4416[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2182[label="",style="solid", color="blue", weight=3]; 4417[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 2183[label="",style="solid", color="blue", weight=3]; 4418[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 2184[label="",style="solid", color="blue", weight=3]; 4419[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2185[label="",style="solid", color="blue", weight=3]; 4420[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2186[label="",style="solid", color="blue", weight=3]; 4421[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2187[label="",style="solid", color="blue", weight=3]; 4422[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2188[label="",style="solid", color="blue", weight=3]; 4423[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1942 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2189[label="",style="solid", color="blue", weight=3]; 1943[label="xwv126 <= xwv128",fontsize=16,color="blue",shape="box"];4424[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2190[label="",style="solid", color="blue", weight=3]; 4425[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2191[label="",style="solid", color="blue", weight=3]; 4426[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2192[label="",style="solid", color="blue", weight=3]; 4427[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2193[label="",style="solid", color="blue", weight=3]; 4428[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2194[label="",style="solid", color="blue", weight=3]; 4429[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2195[label="",style="solid", color="blue", weight=3]; 4430[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2196[label="",style="solid", color="blue", weight=3]; 4431[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2197[label="",style="solid", color="blue", weight=3]; 4432[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2198[label="",style="solid", color="blue", weight=3]; 4433[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2199[label="",style="solid", color="blue", weight=3]; 4434[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2200[label="",style="solid", color="blue", weight=3]; 4435[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2201[label="",style="solid", color="blue", weight=3]; 4436[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2202[label="",style="solid", color="blue", weight=3]; 4437[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2203[label="",style="solid", color="blue", weight=3]; 1944[label="compare1 (xwv177,xwv178) (xwv179,xwv180) (False || xwv182)",fontsize=16,color="black",shape="box"];1944 -> 2204[label="",style="solid", color="black", weight=3]; 1945[label="compare1 (xwv177,xwv178) (xwv179,xwv180) (True || xwv182)",fontsize=16,color="black",shape="box"];1945 -> 2205[label="",style="solid", color="black", weight=3]; 1965 -> 95[label="",style="dashed", color="red", weight=0]; 1965[label="xwv102 < xwv105",fontsize=16,color="magenta"];1965 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1966 -> 96[label="",style="dashed", color="red", weight=0]; 1966[label="xwv102 < xwv105",fontsize=16,color="magenta"];1966 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1967 -> 97[label="",style="dashed", color="red", weight=0]; 1967[label="xwv102 < xwv105",fontsize=16,color="magenta"];1967 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1968 -> 98[label="",style="dashed", color="red", weight=0]; 1968[label="xwv102 < xwv105",fontsize=16,color="magenta"];1968 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1969 -> 99[label="",style="dashed", color="red", weight=0]; 1969[label="xwv102 < xwv105",fontsize=16,color="magenta"];1969 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1970 -> 100[label="",style="dashed", color="red", weight=0]; 1970[label="xwv102 < xwv105",fontsize=16,color="magenta"];1970 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1971 -> 101[label="",style="dashed", color="red", weight=0]; 1971[label="xwv102 < xwv105",fontsize=16,color="magenta"];1971 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1972 -> 102[label="",style="dashed", color="red", weight=0]; 1972[label="xwv102 < xwv105",fontsize=16,color="magenta"];1972 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1973 -> 103[label="",style="dashed", color="red", weight=0]; 1973[label="xwv102 < xwv105",fontsize=16,color="magenta"];1973 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1974 -> 104[label="",style="dashed", color="red", weight=0]; 1974[label="xwv102 < xwv105",fontsize=16,color="magenta"];1974 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1975 -> 105[label="",style="dashed", color="red", weight=0]; 1975[label="xwv102 < xwv105",fontsize=16,color="magenta"];1975 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1976 -> 106[label="",style="dashed", color="red", weight=0]; 1976[label="xwv102 < xwv105",fontsize=16,color="magenta"];1976 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1977 -> 107[label="",style="dashed", color="red", weight=0]; 1977[label="xwv102 < xwv105",fontsize=16,color="magenta"];1977 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1978 -> 108[label="",style="dashed", color="red", weight=0]; 1978[label="xwv102 < xwv105",fontsize=16,color="magenta"];1978 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1979[label="xwv102 == xwv105",fontsize=16,color="blue",shape="box"];4438[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2234[label="",style="solid", color="blue", weight=3]; 4439[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2235[label="",style="solid", color="blue", weight=3]; 4440[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2236[label="",style="solid", color="blue", weight=3]; 4441[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 2237[label="",style="solid", color="blue", weight=3]; 4442[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2238[label="",style="solid", color="blue", weight=3]; 4443[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2239[label="",style="solid", color="blue", weight=3]; 4444[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 2240[label="",style="solid", color="blue", weight=3]; 4445[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 2241[label="",style="solid", color="blue", weight=3]; 4446[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2242[label="",style="solid", color="blue", weight=3]; 4447[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 2243[label="",style="solid", color="blue", weight=3]; 4448[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 2244[label="",style="solid", color="blue", weight=3]; 4449[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 2245[label="",style="solid", color="blue", weight=3]; 4450[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 2246[label="",style="solid", color="blue", weight=3]; 4451[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2247[label="",style="solid", color="blue", weight=3]; 1980 -> 2401[label="",style="dashed", color="red", weight=0]; 1980[label="xwv103 < xwv106 || xwv103 == xwv106 && xwv104 <= xwv107",fontsize=16,color="magenta"];1980 -> 2402[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2403[label="",style="dashed", color="magenta", weight=3]; 1981[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) (False || xwv199)",fontsize=16,color="black",shape="box"];1981 -> 2250[label="",style="solid", color="black", weight=3]; 1982[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) (True || xwv199)",fontsize=16,color="black",shape="box"];1982 -> 2251[label="",style="solid", color="black", weight=3]; 1983[label="xwv281",fontsize=16,color="green",shape="box"];1984[label="xwv331",fontsize=16,color="green",shape="box"];1985[label="xwv281",fontsize=16,color="green",shape="box"];1986[label="xwv331",fontsize=16,color="green",shape="box"];1987[label="xwv281",fontsize=16,color="green",shape="box"];1988[label="xwv331",fontsize=16,color="green",shape="box"];1989[label="xwv281",fontsize=16,color="green",shape="box"];1990[label="xwv331",fontsize=16,color="green",shape="box"];1991[label="xwv281",fontsize=16,color="green",shape="box"];1992[label="xwv331",fontsize=16,color="green",shape="box"];1993[label="xwv281",fontsize=16,color="green",shape="box"];1994[label="xwv331",fontsize=16,color="green",shape="box"];1995[label="xwv281",fontsize=16,color="green",shape="box"];1996[label="xwv331",fontsize=16,color="green",shape="box"];1997[label="xwv281",fontsize=16,color="green",shape="box"];1998[label="xwv331",fontsize=16,color="green",shape="box"];1999[label="xwv281",fontsize=16,color="green",shape="box"];2000[label="xwv331",fontsize=16,color="green",shape="box"];2001[label="xwv281",fontsize=16,color="green",shape="box"];2002[label="xwv331",fontsize=16,color="green",shape="box"];2003[label="xwv281",fontsize=16,color="green",shape="box"];2004[label="xwv331",fontsize=16,color="green",shape="box"];2005[label="xwv281",fontsize=16,color="green",shape="box"];2006[label="xwv331",fontsize=16,color="green",shape="box"];2007[label="xwv281",fontsize=16,color="green",shape="box"];2008[label="xwv331",fontsize=16,color="green",shape="box"];2009[label="xwv281",fontsize=16,color="green",shape="box"];2010[label="xwv331",fontsize=16,color="green",shape="box"];2011[label="xwv282",fontsize=16,color="green",shape="box"];2012[label="xwv332",fontsize=16,color="green",shape="box"];2013[label="xwv282",fontsize=16,color="green",shape="box"];2014[label="xwv332",fontsize=16,color="green",shape="box"];2015[label="xwv282",fontsize=16,color="green",shape="box"];2016[label="xwv332",fontsize=16,color="green",shape="box"];2017[label="xwv282",fontsize=16,color="green",shape="box"];2018[label="xwv332",fontsize=16,color="green",shape="box"];2019[label="xwv282",fontsize=16,color="green",shape="box"];2020[label="xwv332",fontsize=16,color="green",shape="box"];2021[label="xwv282",fontsize=16,color="green",shape="box"];2022[label="xwv332",fontsize=16,color="green",shape="box"];2023[label="xwv282",fontsize=16,color="green",shape="box"];2024[label="xwv332",fontsize=16,color="green",shape="box"];2025[label="xwv282",fontsize=16,color="green",shape="box"];2026[label="xwv332",fontsize=16,color="green",shape="box"];2027[label="xwv282",fontsize=16,color="green",shape="box"];2028[label="xwv332",fontsize=16,color="green",shape="box"];2029[label="xwv282",fontsize=16,color="green",shape="box"];2030[label="xwv332",fontsize=16,color="green",shape="box"];2031[label="xwv282",fontsize=16,color="green",shape="box"];2032[label="xwv332",fontsize=16,color="green",shape="box"];2033[label="xwv282",fontsize=16,color="green",shape="box"];2034[label="xwv332",fontsize=16,color="green",shape="box"];2035[label="xwv282",fontsize=16,color="green",shape="box"];2036[label="xwv332",fontsize=16,color="green",shape="box"];2037[label="xwv282",fontsize=16,color="green",shape="box"];2038[label="xwv332",fontsize=16,color="green",shape="box"];2039 -> 1089[label="",style="dashed", color="red", weight=0]; 2039[label="primEqNat xwv2800 xwv3300",fontsize=16,color="magenta"];2039 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2040[label="False",fontsize=16,color="green",shape="box"];2041[label="False",fontsize=16,color="green",shape="box"];2042[label="True",fontsize=16,color="green",shape="box"];2043[label="xwv3300",fontsize=16,color="green",shape="box"];2044[label="xwv2800",fontsize=16,color="green",shape="box"];2045[label="xwv3300",fontsize=16,color="green",shape="box"];2046[label="xwv2800",fontsize=16,color="green",shape="box"];2047 -> 1103[label="",style="dashed", color="red", weight=0]; 2047[label="FiniteMap.sizeFM (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2047 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2048 -> 1103[label="",style="dashed", color="red", weight=0]; 2048[label="FiniteMap.sizeFM (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="magenta"];2048 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2049[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) False",fontsize=16,color="black",shape="box"];2049 -> 2256[label="",style="solid", color="black", weight=3]; 2050[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2050 -> 2257[label="",style="solid", color="black", weight=3]; 2051[label="primPlusNat (Succ xwv16200) xwv1370",fontsize=16,color="burlywood",shape="box"];4452[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4452[label="",style="solid", color="burlywood", weight=9]; 4452 -> 2258[label="",style="solid", color="burlywood", weight=3]; 4453[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4453[label="",style="solid", color="burlywood", weight=9]; 4453 -> 2259[label="",style="solid", color="burlywood", weight=3]; 2052[label="primPlusNat Zero xwv1370",fontsize=16,color="burlywood",shape="box"];4454[label="xwv1370/Succ xwv13700",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4454[label="",style="solid", color="burlywood", weight=9]; 4454 -> 2260[label="",style="solid", color="burlywood", weight=3]; 4455[label="xwv1370/Zero",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4455[label="",style="solid", color="burlywood", weight=9]; 4455 -> 2261[label="",style="solid", color="burlywood", weight=3]; 2053[label="primMinusNat (Succ xwv16200) (Succ xwv13700)",fontsize=16,color="black",shape="box"];2053 -> 2262[label="",style="solid", color="black", weight=3]; 2054[label="primMinusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2054 -> 2263[label="",style="solid", color="black", weight=3]; 2055[label="primMinusNat Zero (Succ xwv13700)",fontsize=16,color="black",shape="box"];2055 -> 2264[label="",style="solid", color="black", weight=3]; 2056[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2056 -> 2265[label="",style="solid", color="black", weight=3]; 2057[label="xwv1370",fontsize=16,color="green",shape="box"];2058[label="xwv1620",fontsize=16,color="green",shape="box"];2059 -> 1104[label="",style="dashed", color="red", weight=0]; 2059[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2060 -> 785[label="",style="dashed", color="red", weight=0]; 2060[label="FiniteMap.mkBalBranch6Size_r xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];2061[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 otherwise",fontsize=16,color="black",shape="box"];2061 -> 2266[label="",style="solid", color="black", weight=3]; 2062[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv13 xwv14 xwv16 xwv35 xwv16 xwv35 xwv16",fontsize=16,color="burlywood",shape="box"];4456[label="xwv16/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4456[label="",style="solid", color="burlywood", weight=9]; 4456 -> 2267[label="",style="solid", color="burlywood", weight=3]; 4457[label="xwv16/FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4457[label="",style="solid", color="burlywood", weight=9]; 4457 -> 2268[label="",style="solid", color="burlywood", weight=3]; 2063 -> 2269[label="",style="dashed", color="red", weight=0]; 2063[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 (FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354)",fontsize=16,color="magenta"];2063 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2064[label="FiniteMap.mkBranchRight_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];2064 -> 2271[label="",style="solid", color="black", weight=3]; 2065[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];2065 -> 2272[label="",style="solid", color="black", weight=3]; 2066 -> 2273[label="",style="dashed", color="red", weight=0]; 2066[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2066 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2067[label="Nothing <= xwv62",fontsize=16,color="burlywood",shape="box"];4458[label="xwv62/Nothing",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4458[label="",style="solid", color="burlywood", weight=9]; 4458 -> 2282[label="",style="solid", color="burlywood", weight=3]; 4459[label="xwv62/Just xwv620",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4459[label="",style="solid", color="burlywood", weight=9]; 4459 -> 2283[label="",style="solid", color="burlywood", weight=3]; 2068[label="Just xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4460[label="xwv62/Nothing",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4460[label="",style="solid", color="burlywood", weight=9]; 4460 -> 2284[label="",style="solid", color="burlywood", weight=3]; 4461[label="xwv62/Just xwv620",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4461[label="",style="solid", color="burlywood", weight=9]; 4461 -> 2285[label="",style="solid", color="burlywood", weight=3]; 2069[label="Left xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4462[label="xwv62/Left xwv620",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4462[label="",style="solid", color="burlywood", weight=9]; 4462 -> 2286[label="",style="solid", color="burlywood", weight=3]; 4463[label="xwv62/Right xwv620",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4463[label="",style="solid", color="burlywood", weight=9]; 4463 -> 2287[label="",style="solid", color="burlywood", weight=3]; 2070[label="Right xwv610 <= xwv62",fontsize=16,color="burlywood",shape="box"];4464[label="xwv62/Left xwv620",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4464[label="",style="solid", color="burlywood", weight=9]; 4464 -> 2288[label="",style="solid", color="burlywood", weight=3]; 4465[label="xwv62/Right xwv620",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4465[label="",style="solid", color="burlywood", weight=9]; 4465 -> 2289[label="",style="solid", color="burlywood", weight=3]; 2071 -> 2273[label="",style="dashed", color="red", weight=0]; 2071[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2071 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2273[label="",style="dashed", color="red", weight=0]; 2072[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2072 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2273[label="",style="dashed", color="red", weight=0]; 2073[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2073 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2273[label="",style="dashed", color="red", weight=0]; 2074[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2074 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2075[label="(xwv610,xwv611) <= xwv62",fontsize=16,color="burlywood",shape="box"];4466[label="xwv62/(xwv620,xwv621)",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4466[label="",style="solid", color="burlywood", weight=9]; 4466 -> 2290[label="",style="solid", color="burlywood", weight=3]; 2076 -> 2273[label="",style="dashed", color="red", weight=0]; 2076[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2076 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2077[label="False <= xwv62",fontsize=16,color="burlywood",shape="box"];4467[label="xwv62/False",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4467[label="",style="solid", color="burlywood", weight=9]; 4467 -> 2291[label="",style="solid", color="burlywood", weight=3]; 4468[label="xwv62/True",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4468[label="",style="solid", color="burlywood", weight=9]; 4468 -> 2292[label="",style="solid", color="burlywood", weight=3]; 2078[label="True <= xwv62",fontsize=16,color="burlywood",shape="box"];4469[label="xwv62/False",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 2293[label="",style="solid", color="burlywood", weight=3]; 4470[label="xwv62/True",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 2294[label="",style="solid", color="burlywood", weight=3]; 2079[label="(xwv610,xwv611,xwv612) <= xwv62",fontsize=16,color="burlywood",shape="box"];4471[label="xwv62/(xwv620,xwv621,xwv622)",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 2295[label="",style="solid", color="burlywood", weight=3]; 2080[label="LT <= xwv62",fontsize=16,color="burlywood",shape="box"];4472[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 2296[label="",style="solid", color="burlywood", weight=3]; 4473[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2297[label="",style="solid", color="burlywood", weight=3]; 4474[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2298[label="",style="solid", color="burlywood", weight=3]; 2081[label="EQ <= xwv62",fontsize=16,color="burlywood",shape="box"];4475[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2081 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 2299[label="",style="solid", color="burlywood", weight=3]; 4476[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2081 -> 4476[label="",style="solid", color="burlywood", weight=9]; 4476 -> 2300[label="",style="solid", color="burlywood", weight=3]; 4477[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2081 -> 4477[label="",style="solid", color="burlywood", weight=9]; 4477 -> 2301[label="",style="solid", color="burlywood", weight=3]; 2082[label="GT <= xwv62",fontsize=16,color="burlywood",shape="box"];4478[label="xwv62/LT",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4478[label="",style="solid", color="burlywood", weight=9]; 4478 -> 2302[label="",style="solid", color="burlywood", weight=3]; 4479[label="xwv62/EQ",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4479[label="",style="solid", color="burlywood", weight=9]; 4479 -> 2303[label="",style="solid", color="burlywood", weight=3]; 4480[label="xwv62/GT",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4480[label="",style="solid", color="burlywood", weight=9]; 4480 -> 2304[label="",style="solid", color="burlywood", weight=3]; 2083 -> 2273[label="",style="dashed", color="red", weight=0]; 2083[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2083 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2273[label="",style="dashed", color="red", weight=0]; 2084[label="compare xwv61 xwv62 /= GT",fontsize=16,color="magenta"];2084 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2085[label="compare0 (Just xwv147) (Just xwv148) True",fontsize=16,color="black",shape="box"];2085 -> 2305[label="",style="solid", color="black", weight=3]; 2086[label="xwv69",fontsize=16,color="green",shape="box"];2087[label="xwv68",fontsize=16,color="green",shape="box"];2088[label="xwv69",fontsize=16,color="green",shape="box"];2089[label="xwv68",fontsize=16,color="green",shape="box"];2090[label="xwv69",fontsize=16,color="green",shape="box"];2091[label="xwv68",fontsize=16,color="green",shape="box"];2092[label="xwv69",fontsize=16,color="green",shape="box"];2093[label="xwv68",fontsize=16,color="green",shape="box"];2094[label="xwv69",fontsize=16,color="green",shape="box"];2095[label="xwv68",fontsize=16,color="green",shape="box"];2096[label="xwv69",fontsize=16,color="green",shape="box"];2097[label="xwv68",fontsize=16,color="green",shape="box"];2098[label="xwv69",fontsize=16,color="green",shape="box"];2099[label="xwv68",fontsize=16,color="green",shape="box"];2100[label="xwv69",fontsize=16,color="green",shape="box"];2101[label="xwv68",fontsize=16,color="green",shape="box"];2102[label="xwv69",fontsize=16,color="green",shape="box"];2103[label="xwv68",fontsize=16,color="green",shape="box"];2104[label="xwv69",fontsize=16,color="green",shape="box"];2105[label="xwv68",fontsize=16,color="green",shape="box"];2106[label="xwv69",fontsize=16,color="green",shape="box"];2107[label="xwv68",fontsize=16,color="green",shape="box"];2108[label="xwv69",fontsize=16,color="green",shape="box"];2109[label="xwv68",fontsize=16,color="green",shape="box"];2110[label="xwv69",fontsize=16,color="green",shape="box"];2111[label="xwv68",fontsize=16,color="green",shape="box"];2112[label="xwv69",fontsize=16,color="green",shape="box"];2113[label="xwv68",fontsize=16,color="green",shape="box"];2114[label="compare0 (Left xwv154) (Left xwv155) True",fontsize=16,color="black",shape="box"];2114 -> 2306[label="",style="solid", color="black", weight=3]; 2115[label="xwv76",fontsize=16,color="green",shape="box"];2116[label="xwv75",fontsize=16,color="green",shape="box"];2117[label="xwv76",fontsize=16,color="green",shape="box"];2118[label="xwv75",fontsize=16,color="green",shape="box"];2119[label="xwv76",fontsize=16,color="green",shape="box"];2120[label="xwv75",fontsize=16,color="green",shape="box"];2121[label="xwv76",fontsize=16,color="green",shape="box"];2122[label="xwv75",fontsize=16,color="green",shape="box"];2123[label="xwv76",fontsize=16,color="green",shape="box"];2124[label="xwv75",fontsize=16,color="green",shape="box"];2125[label="xwv76",fontsize=16,color="green",shape="box"];2126[label="xwv75",fontsize=16,color="green",shape="box"];2127[label="xwv76",fontsize=16,color="green",shape="box"];2128[label="xwv75",fontsize=16,color="green",shape="box"];2129[label="xwv76",fontsize=16,color="green",shape="box"];2130[label="xwv75",fontsize=16,color="green",shape="box"];2131[label="xwv76",fontsize=16,color="green",shape="box"];2132[label="xwv75",fontsize=16,color="green",shape="box"];2133[label="xwv76",fontsize=16,color="green",shape="box"];2134[label="xwv75",fontsize=16,color="green",shape="box"];2135[label="xwv76",fontsize=16,color="green",shape="box"];2136[label="xwv75",fontsize=16,color="green",shape="box"];2137[label="xwv76",fontsize=16,color="green",shape="box"];2138[label="xwv75",fontsize=16,color="green",shape="box"];2139[label="xwv76",fontsize=16,color="green",shape="box"];2140[label="xwv75",fontsize=16,color="green",shape="box"];2141[label="xwv76",fontsize=16,color="green",shape="box"];2142[label="xwv75",fontsize=16,color="green",shape="box"];2143[label="compare0 (Right xwv161) (Right xwv162) True",fontsize=16,color="black",shape="box"];2143 -> 2307[label="",style="solid", color="black", weight=3]; 2144[label="primMulNat (Succ xwv4000) (Succ xwv30100)",fontsize=16,color="black",shape="box"];2144 -> 2308[label="",style="solid", color="black", weight=3]; 2145[label="primMulNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];2145 -> 2309[label="",style="solid", color="black", weight=3]; 2146[label="primMulNat Zero (Succ xwv30100)",fontsize=16,color="black",shape="box"];2146 -> 2310[label="",style="solid", color="black", weight=3]; 2147[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2147 -> 2311[label="",style="solid", color="black", weight=3]; 2148[label="xwv127",fontsize=16,color="green",shape="box"];2149[label="xwv125",fontsize=16,color="green",shape="box"];2150[label="xwv127",fontsize=16,color="green",shape="box"];2151[label="xwv125",fontsize=16,color="green",shape="box"];2152[label="xwv127",fontsize=16,color="green",shape="box"];2153[label="xwv125",fontsize=16,color="green",shape="box"];2154[label="xwv127",fontsize=16,color="green",shape="box"];2155[label="xwv125",fontsize=16,color="green",shape="box"];2156[label="xwv127",fontsize=16,color="green",shape="box"];2157[label="xwv125",fontsize=16,color="green",shape="box"];2158[label="xwv127",fontsize=16,color="green",shape="box"];2159[label="xwv125",fontsize=16,color="green",shape="box"];2160[label="xwv127",fontsize=16,color="green",shape="box"];2161[label="xwv125",fontsize=16,color="green",shape="box"];2162[label="xwv127",fontsize=16,color="green",shape="box"];2163[label="xwv125",fontsize=16,color="green",shape="box"];2164[label="xwv127",fontsize=16,color="green",shape="box"];2165[label="xwv125",fontsize=16,color="green",shape="box"];2166[label="xwv127",fontsize=16,color="green",shape="box"];2167[label="xwv125",fontsize=16,color="green",shape="box"];2168[label="xwv127",fontsize=16,color="green",shape="box"];2169[label="xwv125",fontsize=16,color="green",shape="box"];2170[label="xwv127",fontsize=16,color="green",shape="box"];2171[label="xwv125",fontsize=16,color="green",shape="box"];2172[label="xwv127",fontsize=16,color="green",shape="box"];2173[label="xwv125",fontsize=16,color="green",shape="box"];2174[label="xwv127",fontsize=16,color="green",shape="box"];2175[label="xwv125",fontsize=16,color="green",shape="box"];2176 -> 394[label="",style="dashed", color="red", weight=0]; 2176[label="xwv125 == xwv127",fontsize=16,color="magenta"];2176 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2177 -> 388[label="",style="dashed", color="red", weight=0]; 2177[label="xwv125 == xwv127",fontsize=16,color="magenta"];2177 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2178 -> 398[label="",style="dashed", color="red", weight=0]; 2178[label="xwv125 == xwv127",fontsize=16,color="magenta"];2178 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2179 -> 400[label="",style="dashed", color="red", weight=0]; 2179[label="xwv125 == xwv127",fontsize=16,color="magenta"];2179 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2180 -> 392[label="",style="dashed", color="red", weight=0]; 2180[label="xwv125 == xwv127",fontsize=16,color="magenta"];2180 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2181 -> 397[label="",style="dashed", color="red", weight=0]; 2181[label="xwv125 == xwv127",fontsize=16,color="magenta"];2181 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2182 -> 395[label="",style="dashed", color="red", weight=0]; 2182[label="xwv125 == xwv127",fontsize=16,color="magenta"];2182 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2183 -> 391[label="",style="dashed", color="red", weight=0]; 2183[label="xwv125 == xwv127",fontsize=16,color="magenta"];2183 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2184 -> 393[label="",style="dashed", color="red", weight=0]; 2184[label="xwv125 == xwv127",fontsize=16,color="magenta"];2184 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2185 -> 389[label="",style="dashed", color="red", weight=0]; 2185[label="xwv125 == xwv127",fontsize=16,color="magenta"];2185 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2186 -> 396[label="",style="dashed", color="red", weight=0]; 2186[label="xwv125 == xwv127",fontsize=16,color="magenta"];2186 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2187 -> 390[label="",style="dashed", color="red", weight=0]; 2187[label="xwv125 == xwv127",fontsize=16,color="magenta"];2187 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2188 -> 399[label="",style="dashed", color="red", weight=0]; 2188[label="xwv125 == xwv127",fontsize=16,color="magenta"];2188 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2189 -> 387[label="",style="dashed", color="red", weight=0]; 2189[label="xwv125 == xwv127",fontsize=16,color="magenta"];2189 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1859[label="",style="dashed", color="red", weight=0]; 2190[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2190 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1860[label="",style="dashed", color="red", weight=0]; 2191[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2191 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1861[label="",style="dashed", color="red", weight=0]; 2192[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2192 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1862[label="",style="dashed", color="red", weight=0]; 2193[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2193 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1863[label="",style="dashed", color="red", weight=0]; 2194[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2194 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1864[label="",style="dashed", color="red", weight=0]; 2195[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2195 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2196 -> 1865[label="",style="dashed", color="red", weight=0]; 2196[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2196 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2197 -> 1866[label="",style="dashed", color="red", weight=0]; 2197[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2197 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2198 -> 1867[label="",style="dashed", color="red", weight=0]; 2198[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2198 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2199 -> 1868[label="",style="dashed", color="red", weight=0]; 2199[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2199 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2200 -> 1869[label="",style="dashed", color="red", weight=0]; 2200[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2200 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2201 -> 1870[label="",style="dashed", color="red", weight=0]; 2201[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2201 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2202 -> 1871[label="",style="dashed", color="red", weight=0]; 2202[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2202 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2203 -> 1872[label="",style="dashed", color="red", weight=0]; 2203[label="xwv126 <= xwv128",fontsize=16,color="magenta"];2203 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2204[label="compare1 (xwv177,xwv178) (xwv179,xwv180) xwv182",fontsize=16,color="burlywood",shape="triangle"];4481[label="xwv182/False",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4481[label="",style="solid", color="burlywood", weight=9]; 4481 -> 2368[label="",style="solid", color="burlywood", weight=3]; 4482[label="xwv182/True",fontsize=10,color="white",style="solid",shape="box"];2204 -> 4482[label="",style="solid", color="burlywood", weight=9]; 4482 -> 2369[label="",style="solid", color="burlywood", weight=3]; 2205 -> 2204[label="",style="dashed", color="red", weight=0]; 2205[label="compare1 (xwv177,xwv178) (xwv179,xwv180) True",fontsize=16,color="magenta"];2205 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2206[label="xwv105",fontsize=16,color="green",shape="box"];2207[label="xwv102",fontsize=16,color="green",shape="box"];2208[label="xwv105",fontsize=16,color="green",shape="box"];2209[label="xwv102",fontsize=16,color="green",shape="box"];2210[label="xwv105",fontsize=16,color="green",shape="box"];2211[label="xwv102",fontsize=16,color="green",shape="box"];2212[label="xwv105",fontsize=16,color="green",shape="box"];2213[label="xwv102",fontsize=16,color="green",shape="box"];2214[label="xwv105",fontsize=16,color="green",shape="box"];2215[label="xwv102",fontsize=16,color="green",shape="box"];2216[label="xwv105",fontsize=16,color="green",shape="box"];2217[label="xwv102",fontsize=16,color="green",shape="box"];2218[label="xwv105",fontsize=16,color="green",shape="box"];2219[label="xwv102",fontsize=16,color="green",shape="box"];2220[label="xwv105",fontsize=16,color="green",shape="box"];2221[label="xwv102",fontsize=16,color="green",shape="box"];2222[label="xwv105",fontsize=16,color="green",shape="box"];2223[label="xwv102",fontsize=16,color="green",shape="box"];2224[label="xwv105",fontsize=16,color="green",shape="box"];2225[label="xwv102",fontsize=16,color="green",shape="box"];2226[label="xwv105",fontsize=16,color="green",shape="box"];2227[label="xwv102",fontsize=16,color="green",shape="box"];2228[label="xwv105",fontsize=16,color="green",shape="box"];2229[label="xwv102",fontsize=16,color="green",shape="box"];2230[label="xwv105",fontsize=16,color="green",shape="box"];2231[label="xwv102",fontsize=16,color="green",shape="box"];2232[label="xwv105",fontsize=16,color="green",shape="box"];2233[label="xwv102",fontsize=16,color="green",shape="box"];2234 -> 394[label="",style="dashed", color="red", weight=0]; 2234[label="xwv102 == xwv105",fontsize=16,color="magenta"];2234 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2235 -> 388[label="",style="dashed", color="red", weight=0]; 2235[label="xwv102 == xwv105",fontsize=16,color="magenta"];2235 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2236 -> 398[label="",style="dashed", color="red", weight=0]; 2236[label="xwv102 == xwv105",fontsize=16,color="magenta"];2236 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2237 -> 400[label="",style="dashed", color="red", weight=0]; 2237[label="xwv102 == xwv105",fontsize=16,color="magenta"];2237 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2238 -> 392[label="",style="dashed", color="red", weight=0]; 2238[label="xwv102 == xwv105",fontsize=16,color="magenta"];2238 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2239 -> 397[label="",style="dashed", color="red", weight=0]; 2239[label="xwv102 == xwv105",fontsize=16,color="magenta"];2239 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2239 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2240 -> 395[label="",style="dashed", color="red", weight=0]; 2240[label="xwv102 == xwv105",fontsize=16,color="magenta"];2240 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2240 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2241 -> 391[label="",style="dashed", color="red", weight=0]; 2241[label="xwv102 == xwv105",fontsize=16,color="magenta"];2241 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2241 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2242 -> 393[label="",style="dashed", color="red", weight=0]; 2242[label="xwv102 == xwv105",fontsize=16,color="magenta"];2242 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2243 -> 389[label="",style="dashed", color="red", weight=0]; 2243[label="xwv102 == xwv105",fontsize=16,color="magenta"];2243 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2244 -> 396[label="",style="dashed", color="red", weight=0]; 2244[label="xwv102 == xwv105",fontsize=16,color="magenta"];2244 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2245 -> 390[label="",style="dashed", color="red", weight=0]; 2245[label="xwv102 == xwv105",fontsize=16,color="magenta"];2245 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2246 -> 399[label="",style="dashed", color="red", weight=0]; 2246[label="xwv102 == xwv105",fontsize=16,color="magenta"];2246 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2247 -> 387[label="",style="dashed", color="red", weight=0]; 2247[label="xwv102 == xwv105",fontsize=16,color="magenta"];2247 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2402 -> 1178[label="",style="dashed", color="red", weight=0]; 2402[label="xwv103 == xwv106 && xwv104 <= xwv107",fontsize=16,color="magenta"];2402 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2403[label="xwv103 < xwv106",fontsize=16,color="blue",shape="box"];4483[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 2408[label="",style="solid", color="blue", weight=3]; 4484[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 2409[label="",style="solid", color="blue", weight=3]; 4485[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 2410[label="",style="solid", color="blue", weight=3]; 4486[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 2411[label="",style="solid", color="blue", weight=3]; 4487[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 2412[label="",style="solid", color="blue", weight=3]; 4488[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 2413[label="",style="solid", color="blue", weight=3]; 4489[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 2414[label="",style="solid", color="blue", weight=3]; 4490[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 2415[label="",style="solid", color="blue", weight=3]; 4491[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 2416[label="",style="solid", color="blue", weight=3]; 4492[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 2417[label="",style="solid", color="blue", weight=3]; 4493[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 2418[label="",style="solid", color="blue", weight=3]; 4494[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 2419[label="",style="solid", color="blue", weight=3]; 4495[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 2420[label="",style="solid", color="blue", weight=3]; 4496[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 2421[label="",style="solid", color="blue", weight=3]; 2401[label="xwv209 || xwv210",fontsize=16,color="burlywood",shape="triangle"];4497[label="xwv209/False",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4497[label="",style="solid", color="burlywood", weight=9]; 4497 -> 2422[label="",style="solid", color="burlywood", weight=3]; 4498[label="xwv209/True",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4498[label="",style="solid", color="burlywood", weight=9]; 4498 -> 2423[label="",style="solid", color="burlywood", weight=3]; 2250[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) xwv199",fontsize=16,color="burlywood",shape="triangle"];4499[label="xwv199/False",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4499[label="",style="solid", color="burlywood", weight=9]; 4499 -> 2424[label="",style="solid", color="burlywood", weight=3]; 4500[label="xwv199/True",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4500[label="",style="solid", color="burlywood", weight=9]; 4500 -> 2425[label="",style="solid", color="burlywood", weight=3]; 2251 -> 2250[label="",style="dashed", color="red", weight=0]; 2251[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) True",fontsize=16,color="magenta"];2251 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2252[label="xwv3300",fontsize=16,color="green",shape="box"];2253[label="xwv2800",fontsize=16,color="green",shape="box"];2254[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2255[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2256[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) otherwise",fontsize=16,color="black",shape="box"];2256 -> 2427[label="",style="solid", color="black", weight=3]; 2257 -> 75[label="",style="dashed", color="red", weight=0]; 2257[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2257 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2258[label="primPlusNat (Succ xwv16200) (Succ xwv13700)",fontsize=16,color="black",shape="box"];2258 -> 2432[label="",style="solid", color="black", weight=3]; 2259[label="primPlusNat (Succ xwv16200) Zero",fontsize=16,color="black",shape="box"];2259 -> 2433[label="",style="solid", color="black", weight=3]; 2260[label="primPlusNat Zero (Succ xwv13700)",fontsize=16,color="black",shape="box"];2260 -> 2434[label="",style="solid", color="black", weight=3]; 2261[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2261 -> 2435[label="",style="solid", color="black", weight=3]; 2262 -> 1573[label="",style="dashed", color="red", weight=0]; 2262[label="primMinusNat xwv16200 xwv13700",fontsize=16,color="magenta"];2262 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2263[label="Pos (Succ xwv16200)",fontsize=16,color="green",shape="box"];2264[label="Neg (Succ xwv13700)",fontsize=16,color="green",shape="box"];2265[label="Pos Zero",fontsize=16,color="green",shape="box"];2266[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv13 xwv14 xwv16 xwv35 xwv13 xwv14 xwv16 xwv35 True",fontsize=16,color="black",shape="box"];2266 -> 2438[label="",style="solid", color="black", weight=3]; 2267[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv13 xwv14 FiniteMap.EmptyFM xwv35 FiniteMap.EmptyFM xwv35 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2267 -> 2439[label="",style="solid", color="black", weight=3]; 2268[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2268 -> 2440[label="",style="solid", color="black", weight=3]; 2270 -> 98[label="",style="dashed", color="red", weight=0]; 2270[label="FiniteMap.sizeFM xwv353 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2270 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2269[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 xwv201",fontsize=16,color="burlywood",shape="triangle"];4501[label="xwv201/False",fontsize=10,color="white",style="solid",shape="box"];2269 -> 4501[label="",style="solid", color="burlywood", weight=9]; 4501 -> 2443[label="",style="solid", color="burlywood", weight=3]; 4502[label="xwv201/True",fontsize=10,color="white",style="solid",shape="box"];2269 -> 4502[label="",style="solid", color="burlywood", weight=9]; 4502 -> 2444[label="",style="solid", color="burlywood", weight=3]; 2271 -> 1103[label="",style="dashed", color="red", weight=0]; 2271[label="FiniteMap.sizeFM xwv35",fontsize=16,color="magenta"];2272 -> 1538[label="",style="dashed", color="red", weight=0]; 2272[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13)",fontsize=16,color="magenta"];2272 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2274 -> 181[label="",style="dashed", color="red", weight=0]; 2274[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2274 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2273[label="xwv205 /= GT",fontsize=16,color="black",shape="triangle"];2273 -> 2449[label="",style="solid", color="black", weight=3]; 2282[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2282 -> 2450[label="",style="solid", color="black", weight=3]; 2283[label="Nothing <= Just xwv620",fontsize=16,color="black",shape="box"];2283 -> 2451[label="",style="solid", color="black", weight=3]; 2284[label="Just xwv610 <= Nothing",fontsize=16,color="black",shape="box"];2284 -> 2452[label="",style="solid", color="black", weight=3]; 2285[label="Just xwv610 <= Just xwv620",fontsize=16,color="black",shape="box"];2285 -> 2453[label="",style="solid", color="black", weight=3]; 2286[label="Left xwv610 <= Left xwv620",fontsize=16,color="black",shape="box"];2286 -> 2454[label="",style="solid", color="black", weight=3]; 2287[label="Left xwv610 <= Right xwv620",fontsize=16,color="black",shape="box"];2287 -> 2455[label="",style="solid", color="black", weight=3]; 2288[label="Right xwv610 <= Left xwv620",fontsize=16,color="black",shape="box"];2288 -> 2456[label="",style="solid", color="black", weight=3]; 2289[label="Right xwv610 <= Right xwv620",fontsize=16,color="black",shape="box"];2289 -> 2457[label="",style="solid", color="black", weight=3]; 2275 -> 184[label="",style="dashed", color="red", weight=0]; 2275[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2275 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2276 -> 185[label="",style="dashed", color="red", weight=0]; 2276[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2276 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2277 -> 186[label="",style="dashed", color="red", weight=0]; 2277[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2277 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2278 -> 187[label="",style="dashed", color="red", weight=0]; 2278[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2278 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2290[label="(xwv610,xwv611) <= (xwv620,xwv621)",fontsize=16,color="black",shape="box"];2290 -> 2466[label="",style="solid", color="black", weight=3]; 2279 -> 189[label="",style="dashed", color="red", weight=0]; 2279[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2279 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2291[label="False <= False",fontsize=16,color="black",shape="box"];2291 -> 2469[label="",style="solid", color="black", weight=3]; 2292[label="False <= True",fontsize=16,color="black",shape="box"];2292 -> 2470[label="",style="solid", color="black", weight=3]; 2293[label="True <= False",fontsize=16,color="black",shape="box"];2293 -> 2471[label="",style="solid", color="black", weight=3]; 2294[label="True <= True",fontsize=16,color="black",shape="box"];2294 -> 2472[label="",style="solid", color="black", weight=3]; 2295[label="(xwv610,xwv611,xwv612) <= (xwv620,xwv621,xwv622)",fontsize=16,color="black",shape="box"];2295 -> 2473[label="",style="solid", color="black", weight=3]; 2296[label="LT <= LT",fontsize=16,color="black",shape="box"];2296 -> 2474[label="",style="solid", color="black", weight=3]; 2297[label="LT <= EQ",fontsize=16,color="black",shape="box"];2297 -> 2475[label="",style="solid", color="black", weight=3]; 2298[label="LT <= GT",fontsize=16,color="black",shape="box"];2298 -> 2476[label="",style="solid", color="black", weight=3]; 2299[label="EQ <= LT",fontsize=16,color="black",shape="box"];2299 -> 2477[label="",style="solid", color="black", weight=3]; 2300[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2300 -> 2478[label="",style="solid", color="black", weight=3]; 2301[label="EQ <= GT",fontsize=16,color="black",shape="box"];2301 -> 2479[label="",style="solid", color="black", weight=3]; 2302[label="GT <= LT",fontsize=16,color="black",shape="box"];2302 -> 2480[label="",style="solid", color="black", weight=3]; 2303[label="GT <= EQ",fontsize=16,color="black",shape="box"];2303 -> 2481[label="",style="solid", color="black", weight=3]; 2304[label="GT <= GT",fontsize=16,color="black",shape="box"];2304 -> 2482[label="",style="solid", color="black", weight=3]; 2280 -> 193[label="",style="dashed", color="red", weight=0]; 2280[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2280 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2281 -> 194[label="",style="dashed", color="red", weight=0]; 2281[label="compare xwv61 xwv62",fontsize=16,color="magenta"];2281 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2305[label="GT",fontsize=16,color="green",shape="box"];2306[label="GT",fontsize=16,color="green",shape="box"];2307[label="GT",fontsize=16,color="green",shape="box"];2308 -> 1846[label="",style="dashed", color="red", weight=0]; 2308[label="primPlusNat (primMulNat xwv4000 (Succ xwv30100)) (Succ xwv30100)",fontsize=16,color="magenta"];2308 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2309[label="Zero",fontsize=16,color="green",shape="box"];2310[label="Zero",fontsize=16,color="green",shape="box"];2311[label="Zero",fontsize=16,color="green",shape="box"];2312[label="xwv125",fontsize=16,color="green",shape="box"];2313[label="xwv127",fontsize=16,color="green",shape="box"];2314[label="xwv125",fontsize=16,color="green",shape="box"];2315[label="xwv127",fontsize=16,color="green",shape="box"];2316[label="xwv125",fontsize=16,color="green",shape="box"];2317[label="xwv127",fontsize=16,color="green",shape="box"];2318[label="xwv125",fontsize=16,color="green",shape="box"];2319[label="xwv127",fontsize=16,color="green",shape="box"];2320[label="xwv125",fontsize=16,color="green",shape="box"];2321[label="xwv127",fontsize=16,color="green",shape="box"];2322[label="xwv125",fontsize=16,color="green",shape="box"];2323[label="xwv127",fontsize=16,color="green",shape="box"];2324[label="xwv125",fontsize=16,color="green",shape="box"];2325[label="xwv127",fontsize=16,color="green",shape="box"];2326[label="xwv125",fontsize=16,color="green",shape="box"];2327[label="xwv127",fontsize=16,color="green",shape="box"];2328[label="xwv125",fontsize=16,color="green",shape="box"];2329[label="xwv127",fontsize=16,color="green",shape="box"];2330[label="xwv125",fontsize=16,color="green",shape="box"];2331[label="xwv127",fontsize=16,color="green",shape="box"];2332[label="xwv125",fontsize=16,color="green",shape="box"];2333[label="xwv127",fontsize=16,color="green",shape="box"];2334[label="xwv125",fontsize=16,color="green",shape="box"];2335[label="xwv127",fontsize=16,color="green",shape="box"];2336[label="xwv125",fontsize=16,color="green",shape="box"];2337[label="xwv127",fontsize=16,color="green",shape="box"];2338[label="xwv125",fontsize=16,color="green",shape="box"];2339[label="xwv127",fontsize=16,color="green",shape="box"];2340[label="xwv128",fontsize=16,color="green",shape="box"];2341[label="xwv126",fontsize=16,color="green",shape="box"];2342[label="xwv128",fontsize=16,color="green",shape="box"];2343[label="xwv126",fontsize=16,color="green",shape="box"];2344[label="xwv128",fontsize=16,color="green",shape="box"];2345[label="xwv126",fontsize=16,color="green",shape="box"];2346[label="xwv128",fontsize=16,color="green",shape="box"];2347[label="xwv126",fontsize=16,color="green",shape="box"];2348[label="xwv128",fontsize=16,color="green",shape="box"];2349[label="xwv126",fontsize=16,color="green",shape="box"];2350[label="xwv128",fontsize=16,color="green",shape="box"];2351[label="xwv126",fontsize=16,color="green",shape="box"];2352[label="xwv128",fontsize=16,color="green",shape="box"];2353[label="xwv126",fontsize=16,color="green",shape="box"];2354[label="xwv128",fontsize=16,color="green",shape="box"];2355[label="xwv126",fontsize=16,color="green",shape="box"];2356[label="xwv128",fontsize=16,color="green",shape="box"];2357[label="xwv126",fontsize=16,color="green",shape="box"];2358[label="xwv128",fontsize=16,color="green",shape="box"];2359[label="xwv126",fontsize=16,color="green",shape="box"];2360[label="xwv128",fontsize=16,color="green",shape="box"];2361[label="xwv126",fontsize=16,color="green",shape="box"];2362[label="xwv128",fontsize=16,color="green",shape="box"];2363[label="xwv126",fontsize=16,color="green",shape="box"];2364[label="xwv128",fontsize=16,color="green",shape="box"];2365[label="xwv126",fontsize=16,color="green",shape="box"];2366[label="xwv128",fontsize=16,color="green",shape="box"];2367[label="xwv126",fontsize=16,color="green",shape="box"];2368[label="compare1 (xwv177,xwv178) (xwv179,xwv180) False",fontsize=16,color="black",shape="box"];2368 -> 2489[label="",style="solid", color="black", weight=3]; 2369[label="compare1 (xwv177,xwv178) (xwv179,xwv180) True",fontsize=16,color="black",shape="box"];2369 -> 2490[label="",style="solid", color="black", weight=3]; 2370[label="True",fontsize=16,color="green",shape="box"];2371[label="xwv102",fontsize=16,color="green",shape="box"];2372[label="xwv105",fontsize=16,color="green",shape="box"];2373[label="xwv102",fontsize=16,color="green",shape="box"];2374[label="xwv105",fontsize=16,color="green",shape="box"];2375[label="xwv102",fontsize=16,color="green",shape="box"];2376[label="xwv105",fontsize=16,color="green",shape="box"];2377[label="xwv102",fontsize=16,color="green",shape="box"];2378[label="xwv105",fontsize=16,color="green",shape="box"];2379[label="xwv102",fontsize=16,color="green",shape="box"];2380[label="xwv105",fontsize=16,color="green",shape="box"];2381[label="xwv102",fontsize=16,color="green",shape="box"];2382[label="xwv105",fontsize=16,color="green",shape="box"];2383[label="xwv102",fontsize=16,color="green",shape="box"];2384[label="xwv105",fontsize=16,color="green",shape="box"];2385[label="xwv102",fontsize=16,color="green",shape="box"];2386[label="xwv105",fontsize=16,color="green",shape="box"];2387[label="xwv102",fontsize=16,color="green",shape="box"];2388[label="xwv105",fontsize=16,color="green",shape="box"];2389[label="xwv102",fontsize=16,color="green",shape="box"];2390[label="xwv105",fontsize=16,color="green",shape="box"];2391[label="xwv102",fontsize=16,color="green",shape="box"];2392[label="xwv105",fontsize=16,color="green",shape="box"];2393[label="xwv102",fontsize=16,color="green",shape="box"];2394[label="xwv105",fontsize=16,color="green",shape="box"];2395[label="xwv102",fontsize=16,color="green",shape="box"];2396[label="xwv105",fontsize=16,color="green",shape="box"];2397[label="xwv102",fontsize=16,color="green",shape="box"];2398[label="xwv105",fontsize=16,color="green",shape="box"];2406[label="xwv103 == xwv106",fontsize=16,color="blue",shape="box"];4503[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 2491[label="",style="solid", color="blue", weight=3]; 4504[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 2492[label="",style="solid", color="blue", weight=3]; 4505[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 2493[label="",style="solid", color="blue", weight=3]; 4506[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 2494[label="",style="solid", color="blue", weight=3]; 4507[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 2495[label="",style="solid", color="blue", weight=3]; 4508[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 2496[label="",style="solid", color="blue", weight=3]; 4509[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 2497[label="",style="solid", color="blue", weight=3]; 4510[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 2498[label="",style="solid", color="blue", weight=3]; 4511[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 2499[label="",style="solid", color="blue", weight=3]; 4512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 2500[label="",style="solid", color="blue", weight=3]; 4513[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 2501[label="",style="solid", color="blue", weight=3]; 4514[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 2502[label="",style="solid", color="blue", weight=3]; 4515[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 2503[label="",style="solid", color="blue", weight=3]; 4516[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 2504[label="",style="solid", color="blue", weight=3]; 2407[label="xwv104 <= xwv107",fontsize=16,color="blue",shape="box"];4517[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 2505[label="",style="solid", color="blue", weight=3]; 4518[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 2506[label="",style="solid", color="blue", weight=3]; 4519[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 2507[label="",style="solid", color="blue", weight=3]; 4520[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2508[label="",style="solid", color="blue", weight=3]; 4521[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2509[label="",style="solid", color="blue", weight=3]; 4522[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2510[label="",style="solid", color="blue", weight=3]; 4523[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2511[label="",style="solid", color="blue", weight=3]; 4524[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2512[label="",style="solid", color="blue", weight=3]; 4525[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2513[label="",style="solid", color="blue", weight=3]; 4526[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2514[label="",style="solid", color="blue", weight=3]; 4527[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2515[label="",style="solid", color="blue", weight=3]; 4528[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2516[label="",style="solid", color="blue", weight=3]; 4529[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2517[label="",style="solid", color="blue", weight=3]; 4530[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2518[label="",style="solid", color="blue", weight=3]; 2408 -> 95[label="",style="dashed", color="red", weight=0]; 2408[label="xwv103 < xwv106",fontsize=16,color="magenta"];2408 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2409 -> 96[label="",style="dashed", color="red", weight=0]; 2409[label="xwv103 < xwv106",fontsize=16,color="magenta"];2409 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2410 -> 97[label="",style="dashed", color="red", weight=0]; 2410[label="xwv103 < xwv106",fontsize=16,color="magenta"];2410 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2411 -> 98[label="",style="dashed", color="red", weight=0]; 2411[label="xwv103 < xwv106",fontsize=16,color="magenta"];2411 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2412 -> 99[label="",style="dashed", color="red", weight=0]; 2412[label="xwv103 < xwv106",fontsize=16,color="magenta"];2412 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2413 -> 100[label="",style="dashed", color="red", weight=0]; 2413[label="xwv103 < xwv106",fontsize=16,color="magenta"];2413 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2414 -> 101[label="",style="dashed", color="red", weight=0]; 2414[label="xwv103 < xwv106",fontsize=16,color="magenta"];2414 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2415 -> 102[label="",style="dashed", color="red", weight=0]; 2415[label="xwv103 < xwv106",fontsize=16,color="magenta"];2415 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2416 -> 103[label="",style="dashed", color="red", weight=0]; 2416[label="xwv103 < xwv106",fontsize=16,color="magenta"];2416 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2417 -> 104[label="",style="dashed", color="red", weight=0]; 2417[label="xwv103 < xwv106",fontsize=16,color="magenta"];2417 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2418 -> 105[label="",style="dashed", color="red", weight=0]; 2418[label="xwv103 < xwv106",fontsize=16,color="magenta"];2418 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2418 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2419 -> 106[label="",style="dashed", color="red", weight=0]; 2419[label="xwv103 < xwv106",fontsize=16,color="magenta"];2419 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2420 -> 107[label="",style="dashed", color="red", weight=0]; 2420[label="xwv103 < xwv106",fontsize=16,color="magenta"];2420 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2421 -> 108[label="",style="dashed", color="red", weight=0]; 2421[label="xwv103 < xwv106",fontsize=16,color="magenta"];2421 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2422[label="False || xwv210",fontsize=16,color="black",shape="box"];2422 -> 2547[label="",style="solid", color="black", weight=3]; 2423[label="True || xwv210",fontsize=16,color="black",shape="box"];2423 -> 2548[label="",style="solid", color="black", weight=3]; 2424[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) False",fontsize=16,color="black",shape="box"];2424 -> 2549[label="",style="solid", color="black", weight=3]; 2425[label="compare1 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) True",fontsize=16,color="black",shape="box"];2425 -> 2550[label="",style="solid", color="black", weight=3]; 2426[label="True",fontsize=16,color="green",shape="box"];2427[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) True",fontsize=16,color="black",shape="box"];2427 -> 2551[label="",style="solid", color="black", weight=3]; 2428[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2428 -> 2552[label="",style="solid", color="black", weight=3]; 2429[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="burlywood",shape="triangle"];4531[label="xwv523/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 2553[label="",style="solid", color="burlywood", weight=3]; 4532[label="xwv523/FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4532[label="",style="solid", color="burlywood", weight=9]; 4532 -> 2554[label="",style="solid", color="burlywood", weight=3]; 2430[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2430 -> 2555[label="",style="solid", color="black", weight=3]; 2431[label="FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514",fontsize=16,color="green",shape="box"];2432[label="Succ (Succ (primPlusNat xwv16200 xwv13700))",fontsize=16,color="green",shape="box"];2432 -> 2556[label="",style="dashed", color="green", weight=3]; 2433[label="Succ xwv16200",fontsize=16,color="green",shape="box"];2434[label="Succ xwv13700",fontsize=16,color="green",shape="box"];2435[label="Zero",fontsize=16,color="green",shape="box"];2436[label="xwv13700",fontsize=16,color="green",shape="box"];2437[label="xwv16200",fontsize=16,color="green",shape="box"];2438[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv13 xwv14 xwv16 xwv35",fontsize=16,color="black",shape="box"];2438 -> 2557[label="",style="solid", color="black", weight=3]; 2439[label="error []",fontsize=16,color="red",shape="box"];2440[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164)",fontsize=16,color="black",shape="box"];2440 -> 2558[label="",style="solid", color="black", weight=3]; 2441 -> 436[label="",style="dashed", color="red", weight=0]; 2441[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2441 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1103[label="",style="dashed", color="red", weight=0]; 2442[label="FiniteMap.sizeFM xwv353",fontsize=16,color="magenta"];2442 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2443[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 False",fontsize=16,color="black",shape="box"];2443 -> 2562[label="",style="solid", color="black", weight=3]; 2444[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2444 -> 2563[label="",style="solid", color="black", weight=3]; 2445[label="FiniteMap.mkBranchLeft_size xwv16 xwv35 xwv13",fontsize=16,color="black",shape="box"];2445 -> 2564[label="",style="solid", color="black", weight=3]; 2446[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2447[label="xwv61",fontsize=16,color="green",shape="box"];2448[label="xwv62",fontsize=16,color="green",shape="box"];2449 -> 2565[label="",style="dashed", color="red", weight=0]; 2449[label="not (xwv205 == GT)",fontsize=16,color="magenta"];2449 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2450[label="True",fontsize=16,color="green",shape="box"];2451[label="True",fontsize=16,color="green",shape="box"];2452[label="False",fontsize=16,color="green",shape="box"];2453[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4533[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2567[label="",style="solid", color="blue", weight=3]; 4534[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2568[label="",style="solid", color="blue", weight=3]; 4535[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2569[label="",style="solid", color="blue", weight=3]; 4536[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2570[label="",style="solid", color="blue", weight=3]; 4537[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2571[label="",style="solid", color="blue", weight=3]; 4538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2572[label="",style="solid", color="blue", weight=3]; 4539[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2573[label="",style="solid", color="blue", weight=3]; 4540[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2574[label="",style="solid", color="blue", weight=3]; 4541[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2575[label="",style="solid", color="blue", weight=3]; 4542[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2576[label="",style="solid", color="blue", weight=3]; 4543[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2577[label="",style="solid", color="blue", weight=3]; 4544[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 2578[label="",style="solid", color="blue", weight=3]; 4545[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 2579[label="",style="solid", color="blue", weight=3]; 4546[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2453 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 2580[label="",style="solid", color="blue", weight=3]; 2454[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4547[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 2581[label="",style="solid", color="blue", weight=3]; 4548[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 2582[label="",style="solid", color="blue", weight=3]; 4549[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 2583[label="",style="solid", color="blue", weight=3]; 4550[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 2584[label="",style="solid", color="blue", weight=3]; 4551[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 2585[label="",style="solid", color="blue", weight=3]; 4552[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 2586[label="",style="solid", color="blue", weight=3]; 4553[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 2587[label="",style="solid", color="blue", weight=3]; 4554[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 2588[label="",style="solid", color="blue", weight=3]; 4555[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 2589[label="",style="solid", color="blue", weight=3]; 4556[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 2590[label="",style="solid", color="blue", weight=3]; 4557[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 2591[label="",style="solid", color="blue", weight=3]; 4558[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 2592[label="",style="solid", color="blue", weight=3]; 4559[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 2593[label="",style="solid", color="blue", weight=3]; 4560[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 2594[label="",style="solid", color="blue", weight=3]; 2455[label="True",fontsize=16,color="green",shape="box"];2456[label="False",fontsize=16,color="green",shape="box"];2457[label="xwv610 <= xwv620",fontsize=16,color="blue",shape="box"];4561[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 2595[label="",style="solid", color="blue", weight=3]; 4562[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 2596[label="",style="solid", color="blue", weight=3]; 4563[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 2597[label="",style="solid", color="blue", weight=3]; 4564[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 2598[label="",style="solid", color="blue", weight=3]; 4565[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 2599[label="",style="solid", color="blue", weight=3]; 4566[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 2600[label="",style="solid", color="blue", weight=3]; 4567[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 2601[label="",style="solid", color="blue", weight=3]; 4568[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 2602[label="",style="solid", color="blue", weight=3]; 4569[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 2603[label="",style="solid", color="blue", weight=3]; 4570[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 2604[label="",style="solid", color="blue", weight=3]; 4571[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 2605[label="",style="solid", color="blue", weight=3]; 4572[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 2606[label="",style="solid", color="blue", weight=3]; 4573[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 2607[label="",style="solid", color="blue", weight=3]; 4574[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 2608[label="",style="solid", color="blue", weight=3]; 2458[label="xwv61",fontsize=16,color="green",shape="box"];2459[label="xwv62",fontsize=16,color="green",shape="box"];2460[label="xwv61",fontsize=16,color="green",shape="box"];2461[label="xwv62",fontsize=16,color="green",shape="box"];2462[label="xwv61",fontsize=16,color="green",shape="box"];2463[label="xwv62",fontsize=16,color="green",shape="box"];2464[label="xwv61",fontsize=16,color="green",shape="box"];2465[label="xwv62",fontsize=16,color="green",shape="box"];2466 -> 2401[label="",style="dashed", color="red", weight=0]; 2466[label="xwv610 < xwv620 || xwv610 == xwv620 && xwv611 <= xwv621",fontsize=16,color="magenta"];2466 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2467[label="xwv61",fontsize=16,color="green",shape="box"];2468[label="xwv62",fontsize=16,color="green",shape="box"];2469[label="True",fontsize=16,color="green",shape="box"];2470[label="True",fontsize=16,color="green",shape="box"];2471[label="False",fontsize=16,color="green",shape="box"];2472[label="True",fontsize=16,color="green",shape="box"];2473 -> 2401[label="",style="dashed", color="red", weight=0]; 2473[label="xwv610 < xwv620 || xwv610 == xwv620 && (xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622)",fontsize=16,color="magenta"];2473 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2474[label="True",fontsize=16,color="green",shape="box"];2475[label="True",fontsize=16,color="green",shape="box"];2476[label="True",fontsize=16,color="green",shape="box"];2477[label="False",fontsize=16,color="green",shape="box"];2478[label="True",fontsize=16,color="green",shape="box"];2479[label="True",fontsize=16,color="green",shape="box"];2480[label="False",fontsize=16,color="green",shape="box"];2481[label="False",fontsize=16,color="green",shape="box"];2482[label="True",fontsize=16,color="green",shape="box"];2483[label="xwv61",fontsize=16,color="green",shape="box"];2484[label="xwv62",fontsize=16,color="green",shape="box"];2485[label="xwv61",fontsize=16,color="green",shape="box"];2486[label="xwv62",fontsize=16,color="green",shape="box"];2487[label="Succ xwv30100",fontsize=16,color="green",shape="box"];2488 -> 1600[label="",style="dashed", color="red", weight=0]; 2488[label="primMulNat xwv4000 (Succ xwv30100)",fontsize=16,color="magenta"];2488 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2489[label="compare0 (xwv177,xwv178) (xwv179,xwv180) otherwise",fontsize=16,color="black",shape="box"];2489 -> 2615[label="",style="solid", color="black", weight=3]; 2490[label="LT",fontsize=16,color="green",shape="box"];2491 -> 394[label="",style="dashed", color="red", weight=0]; 2491[label="xwv103 == xwv106",fontsize=16,color="magenta"];2491 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2492 -> 388[label="",style="dashed", color="red", weight=0]; 2492[label="xwv103 == xwv106",fontsize=16,color="magenta"];2492 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2493 -> 398[label="",style="dashed", color="red", weight=0]; 2493[label="xwv103 == xwv106",fontsize=16,color="magenta"];2493 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2494 -> 400[label="",style="dashed", color="red", weight=0]; 2494[label="xwv103 == xwv106",fontsize=16,color="magenta"];2494 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2495 -> 392[label="",style="dashed", color="red", weight=0]; 2495[label="xwv103 == xwv106",fontsize=16,color="magenta"];2495 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2496 -> 397[label="",style="dashed", color="red", weight=0]; 2496[label="xwv103 == xwv106",fontsize=16,color="magenta"];2496 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2497 -> 395[label="",style="dashed", color="red", weight=0]; 2497[label="xwv103 == xwv106",fontsize=16,color="magenta"];2497 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2498 -> 391[label="",style="dashed", color="red", weight=0]; 2498[label="xwv103 == xwv106",fontsize=16,color="magenta"];2498 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2499 -> 393[label="",style="dashed", color="red", weight=0]; 2499[label="xwv103 == xwv106",fontsize=16,color="magenta"];2499 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2500 -> 389[label="",style="dashed", color="red", weight=0]; 2500[label="xwv103 == xwv106",fontsize=16,color="magenta"];2500 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2501 -> 396[label="",style="dashed", color="red", weight=0]; 2501[label="xwv103 == xwv106",fontsize=16,color="magenta"];2501 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2502 -> 390[label="",style="dashed", color="red", weight=0]; 2502[label="xwv103 == xwv106",fontsize=16,color="magenta"];2502 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2503 -> 399[label="",style="dashed", color="red", weight=0]; 2503[label="xwv103 == xwv106",fontsize=16,color="magenta"];2503 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2504 -> 387[label="",style="dashed", color="red", weight=0]; 2504[label="xwv103 == xwv106",fontsize=16,color="magenta"];2504 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2505 -> 1859[label="",style="dashed", color="red", weight=0]; 2505[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2505 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2506 -> 1860[label="",style="dashed", color="red", weight=0]; 2506[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2506 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2507 -> 1861[label="",style="dashed", color="red", weight=0]; 2507[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2507 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2508 -> 1862[label="",style="dashed", color="red", weight=0]; 2508[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2508 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2509 -> 1863[label="",style="dashed", color="red", weight=0]; 2509[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2509 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2510 -> 1864[label="",style="dashed", color="red", weight=0]; 2510[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2510 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2511 -> 1865[label="",style="dashed", color="red", weight=0]; 2511[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2511 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2512 -> 1866[label="",style="dashed", color="red", weight=0]; 2512[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2512 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2513 -> 1867[label="",style="dashed", color="red", weight=0]; 2513[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2513 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2514 -> 1868[label="",style="dashed", color="red", weight=0]; 2514[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2514 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2515 -> 1869[label="",style="dashed", color="red", weight=0]; 2515[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2515 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2516 -> 1870[label="",style="dashed", color="red", weight=0]; 2516[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2516 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2517 -> 1871[label="",style="dashed", color="red", weight=0]; 2517[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2517 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2518 -> 1872[label="",style="dashed", color="red", weight=0]; 2518[label="xwv104 <= xwv107",fontsize=16,color="magenta"];2518 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2519[label="xwv106",fontsize=16,color="green",shape="box"];2520[label="xwv103",fontsize=16,color="green",shape="box"];2521[label="xwv106",fontsize=16,color="green",shape="box"];2522[label="xwv103",fontsize=16,color="green",shape="box"];2523[label="xwv106",fontsize=16,color="green",shape="box"];2524[label="xwv103",fontsize=16,color="green",shape="box"];2525[label="xwv106",fontsize=16,color="green",shape="box"];2526[label="xwv103",fontsize=16,color="green",shape="box"];2527[label="xwv106",fontsize=16,color="green",shape="box"];2528[label="xwv103",fontsize=16,color="green",shape="box"];2529[label="xwv106",fontsize=16,color="green",shape="box"];2530[label="xwv103",fontsize=16,color="green",shape="box"];2531[label="xwv106",fontsize=16,color="green",shape="box"];2532[label="xwv103",fontsize=16,color="green",shape="box"];2533[label="xwv106",fontsize=16,color="green",shape="box"];2534[label="xwv103",fontsize=16,color="green",shape="box"];2535[label="xwv106",fontsize=16,color="green",shape="box"];2536[label="xwv103",fontsize=16,color="green",shape="box"];2537[label="xwv106",fontsize=16,color="green",shape="box"];2538[label="xwv103",fontsize=16,color="green",shape="box"];2539[label="xwv106",fontsize=16,color="green",shape="box"];2540[label="xwv103",fontsize=16,color="green",shape="box"];2541[label="xwv106",fontsize=16,color="green",shape="box"];2542[label="xwv103",fontsize=16,color="green",shape="box"];2543[label="xwv106",fontsize=16,color="green",shape="box"];2544[label="xwv103",fontsize=16,color="green",shape="box"];2545[label="xwv106",fontsize=16,color="green",shape="box"];2546[label="xwv103",fontsize=16,color="green",shape="box"];2547[label="xwv210",fontsize=16,color="green",shape="box"];2548[label="True",fontsize=16,color="green",shape="box"];2549[label="compare0 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) otherwise",fontsize=16,color="black",shape="box"];2549 -> 2672[label="",style="solid", color="black", weight=3]; 2550[label="LT",fontsize=16,color="green",shape="box"];2551 -> 75[label="",style="dashed", color="red", weight=0]; 2551[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)) (FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="magenta"];2551 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2552[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2552 -> 2677[label="",style="solid", color="black", weight=3]; 2553[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 FiniteMap.EmptyFM xwv524)",fontsize=16,color="black",shape="box"];2553 -> 2678[label="",style="solid", color="black", weight=3]; 2554[label="FiniteMap.deleteMin (FiniteMap.Branch xwv520 xwv521 xwv522 (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234) xwv524)",fontsize=16,color="black",shape="box"];2554 -> 2679[label="",style="solid", color="black", weight=3]; 2555[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2555 -> 2680[label="",style="solid", color="black", weight=3]; 2556 -> 1846[label="",style="dashed", color="red", weight=0]; 2556[label="primPlusNat xwv16200 xwv13700",fontsize=16,color="magenta"];2556 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2557 -> 606[label="",style="dashed", color="red", weight=0]; 2557[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv35",fontsize=16,color="magenta"];2558 -> 2683[label="",style="dashed", color="red", weight=0]; 2558[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 (FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163)",fontsize=16,color="magenta"];2558 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2559[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2560 -> 1103[label="",style="dashed", color="red", weight=0]; 2560[label="FiniteMap.sizeFM xwv354",fontsize=16,color="magenta"];2560 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2561[label="xwv353",fontsize=16,color="green",shape="box"];2562[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 otherwise",fontsize=16,color="black",shape="box"];2562 -> 2686[label="",style="solid", color="black", weight=3]; 2563[label="FiniteMap.mkBalBranch6Single_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="black",shape="box"];2563 -> 2687[label="",style="solid", color="black", weight=3]; 2564 -> 1103[label="",style="dashed", color="red", weight=0]; 2564[label="FiniteMap.sizeFM xwv16",fontsize=16,color="magenta"];2564 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2566 -> 390[label="",style="dashed", color="red", weight=0]; 2566[label="xwv205 == GT",fontsize=16,color="magenta"];2566 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2565[label="not xwv211",fontsize=16,color="burlywood",shape="triangle"];4575[label="xwv211/False",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4575[label="",style="solid", color="burlywood", weight=9]; 4575 -> 2691[label="",style="solid", color="burlywood", weight=3]; 4576[label="xwv211/True",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4576[label="",style="solid", color="burlywood", weight=9]; 4576 -> 2692[label="",style="solid", color="burlywood", weight=3]; 2567 -> 1859[label="",style="dashed", color="red", weight=0]; 2567[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2567 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2568 -> 1860[label="",style="dashed", color="red", weight=0]; 2568[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2568 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2569 -> 1861[label="",style="dashed", color="red", weight=0]; 2569[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2569 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2570 -> 1862[label="",style="dashed", color="red", weight=0]; 2570[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2570 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2571 -> 1863[label="",style="dashed", color="red", weight=0]; 2571[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2571 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2572 -> 1864[label="",style="dashed", color="red", weight=0]; 2572[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2572 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2573 -> 1865[label="",style="dashed", color="red", weight=0]; 2573[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2573 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2574 -> 1866[label="",style="dashed", color="red", weight=0]; 2574[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2574 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2575 -> 1867[label="",style="dashed", color="red", weight=0]; 2575[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2575 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2576 -> 1868[label="",style="dashed", color="red", weight=0]; 2576[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2576 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2577 -> 1869[label="",style="dashed", color="red", weight=0]; 2577[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2577 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2578 -> 1870[label="",style="dashed", color="red", weight=0]; 2578[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2578 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2579 -> 1871[label="",style="dashed", color="red", weight=0]; 2579[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2579 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2580 -> 1872[label="",style="dashed", color="red", weight=0]; 2580[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2580 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2581 -> 1859[label="",style="dashed", color="red", weight=0]; 2581[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2581 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2582 -> 1860[label="",style="dashed", color="red", weight=0]; 2582[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2582 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2583 -> 1861[label="",style="dashed", color="red", weight=0]; 2583[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2583 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2584 -> 1862[label="",style="dashed", color="red", weight=0]; 2584[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2584 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2585 -> 1863[label="",style="dashed", color="red", weight=0]; 2585[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2585 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2586 -> 1864[label="",style="dashed", color="red", weight=0]; 2586[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2586 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2587 -> 1865[label="",style="dashed", color="red", weight=0]; 2587[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2587 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2588 -> 1866[label="",style="dashed", color="red", weight=0]; 2588[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2588 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2589 -> 1867[label="",style="dashed", color="red", weight=0]; 2589[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2589 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2590 -> 1868[label="",style="dashed", color="red", weight=0]; 2590[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2590 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2590 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2591 -> 1869[label="",style="dashed", color="red", weight=0]; 2591[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2591 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2591 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2592 -> 1870[label="",style="dashed", color="red", weight=0]; 2592[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2592 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2592 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2593 -> 1871[label="",style="dashed", color="red", weight=0]; 2593[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2593 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2594 -> 1872[label="",style="dashed", color="red", weight=0]; 2594[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2594 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2595 -> 1859[label="",style="dashed", color="red", weight=0]; 2595[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2595 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2596 -> 1860[label="",style="dashed", color="red", weight=0]; 2596[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2596 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2597 -> 1861[label="",style="dashed", color="red", weight=0]; 2597[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2597 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2598 -> 1862[label="",style="dashed", color="red", weight=0]; 2598[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2598 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2599 -> 1863[label="",style="dashed", color="red", weight=0]; 2599[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2599 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2600 -> 1864[label="",style="dashed", color="red", weight=0]; 2600[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2600 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2601 -> 1865[label="",style="dashed", color="red", weight=0]; 2601[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2601 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2602 -> 1866[label="",style="dashed", color="red", weight=0]; 2602[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2602 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2603 -> 1867[label="",style="dashed", color="red", weight=0]; 2603[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2603 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2604 -> 1868[label="",style="dashed", color="red", weight=0]; 2604[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2604 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2605 -> 1869[label="",style="dashed", color="red", weight=0]; 2605[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2605 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2606 -> 1870[label="",style="dashed", color="red", weight=0]; 2606[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2606 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2607 -> 1871[label="",style="dashed", color="red", weight=0]; 2607[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2607 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2608 -> 1872[label="",style="dashed", color="red", weight=0]; 2608[label="xwv610 <= xwv620",fontsize=16,color="magenta"];2608 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2609 -> 1178[label="",style="dashed", color="red", weight=0]; 2609[label="xwv610 == xwv620 && xwv611 <= xwv621",fontsize=16,color="magenta"];2609 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2610[label="xwv610 < xwv620",fontsize=16,color="blue",shape="box"];4577[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 2779[label="",style="solid", color="blue", weight=3]; 4578[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 2780[label="",style="solid", color="blue", weight=3]; 4579[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 2781[label="",style="solid", color="blue", weight=3]; 4580[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 2782[label="",style="solid", color="blue", weight=3]; 4581[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 2783[label="",style="solid", color="blue", weight=3]; 4582[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 2784[label="",style="solid", color="blue", weight=3]; 4583[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 2785[label="",style="solid", color="blue", weight=3]; 4584[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 2786[label="",style="solid", color="blue", weight=3]; 4585[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 2787[label="",style="solid", color="blue", weight=3]; 4586[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 2788[label="",style="solid", color="blue", weight=3]; 4587[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 2789[label="",style="solid", color="blue", weight=3]; 4588[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 2790[label="",style="solid", color="blue", weight=3]; 4589[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 2791[label="",style="solid", color="blue", weight=3]; 4590[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 2792[label="",style="solid", color="blue", weight=3]; 2611 -> 1178[label="",style="dashed", color="red", weight=0]; 2611[label="xwv610 == xwv620 && (xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622)",fontsize=16,color="magenta"];2611 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2612[label="xwv610 < xwv620",fontsize=16,color="blue",shape="box"];4591[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 2795[label="",style="solid", color="blue", weight=3]; 4592[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 2796[label="",style="solid", color="blue", weight=3]; 4593[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 2797[label="",style="solid", color="blue", weight=3]; 4594[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 2798[label="",style="solid", color="blue", weight=3]; 4595[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 2799[label="",style="solid", color="blue", weight=3]; 4596[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2800[label="",style="solid", color="blue", weight=3]; 4597[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2801[label="",style="solid", color="blue", weight=3]; 4598[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2802[label="",style="solid", color="blue", weight=3]; 4599[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2803[label="",style="solid", color="blue", weight=3]; 4600[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2804[label="",style="solid", color="blue", weight=3]; 4601[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2805[label="",style="solid", color="blue", weight=3]; 4602[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 2806[label="",style="solid", color="blue", weight=3]; 4603[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 2807[label="",style="solid", color="blue", weight=3]; 4604[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 2808[label="",style="solid", color="blue", weight=3]; 2613[label="Succ xwv30100",fontsize=16,color="green",shape="box"];2614[label="xwv4000",fontsize=16,color="green",shape="box"];2615[label="compare0 (xwv177,xwv178) (xwv179,xwv180) True",fontsize=16,color="black",shape="box"];2615 -> 2809[label="",style="solid", color="black", weight=3]; 2616[label="xwv103",fontsize=16,color="green",shape="box"];2617[label="xwv106",fontsize=16,color="green",shape="box"];2618[label="xwv103",fontsize=16,color="green",shape="box"];2619[label="xwv106",fontsize=16,color="green",shape="box"];2620[label="xwv103",fontsize=16,color="green",shape="box"];2621[label="xwv106",fontsize=16,color="green",shape="box"];2622[label="xwv103",fontsize=16,color="green",shape="box"];2623[label="xwv106",fontsize=16,color="green",shape="box"];2624[label="xwv103",fontsize=16,color="green",shape="box"];2625[label="xwv106",fontsize=16,color="green",shape="box"];2626[label="xwv103",fontsize=16,color="green",shape="box"];2627[label="xwv106",fontsize=16,color="green",shape="box"];2628[label="xwv103",fontsize=16,color="green",shape="box"];2629[label="xwv106",fontsize=16,color="green",shape="box"];2630[label="xwv103",fontsize=16,color="green",shape="box"];2631[label="xwv106",fontsize=16,color="green",shape="box"];2632[label="xwv103",fontsize=16,color="green",shape="box"];2633[label="xwv106",fontsize=16,color="green",shape="box"];2634[label="xwv103",fontsize=16,color="green",shape="box"];2635[label="xwv106",fontsize=16,color="green",shape="box"];2636[label="xwv103",fontsize=16,color="green",shape="box"];2637[label="xwv106",fontsize=16,color="green",shape="box"];2638[label="xwv103",fontsize=16,color="green",shape="box"];2639[label="xwv106",fontsize=16,color="green",shape="box"];2640[label="xwv103",fontsize=16,color="green",shape="box"];2641[label="xwv106",fontsize=16,color="green",shape="box"];2642[label="xwv103",fontsize=16,color="green",shape="box"];2643[label="xwv106",fontsize=16,color="green",shape="box"];2644[label="xwv107",fontsize=16,color="green",shape="box"];2645[label="xwv104",fontsize=16,color="green",shape="box"];2646[label="xwv107",fontsize=16,color="green",shape="box"];2647[label="xwv104",fontsize=16,color="green",shape="box"];2648[label="xwv107",fontsize=16,color="green",shape="box"];2649[label="xwv104",fontsize=16,color="green",shape="box"];2650[label="xwv107",fontsize=16,color="green",shape="box"];2651[label="xwv104",fontsize=16,color="green",shape="box"];2652[label="xwv107",fontsize=16,color="green",shape="box"];2653[label="xwv104",fontsize=16,color="green",shape="box"];2654[label="xwv107",fontsize=16,color="green",shape="box"];2655[label="xwv104",fontsize=16,color="green",shape="box"];2656[label="xwv107",fontsize=16,color="green",shape="box"];2657[label="xwv104",fontsize=16,color="green",shape="box"];2658[label="xwv107",fontsize=16,color="green",shape="box"];2659[label="xwv104",fontsize=16,color="green",shape="box"];2660[label="xwv107",fontsize=16,color="green",shape="box"];2661[label="xwv104",fontsize=16,color="green",shape="box"];2662[label="xwv107",fontsize=16,color="green",shape="box"];2663[label="xwv104",fontsize=16,color="green",shape="box"];2664[label="xwv107",fontsize=16,color="green",shape="box"];2665[label="xwv104",fontsize=16,color="green",shape="box"];2666[label="xwv107",fontsize=16,color="green",shape="box"];2667[label="xwv104",fontsize=16,color="green",shape="box"];2668[label="xwv107",fontsize=16,color="green",shape="box"];2669[label="xwv104",fontsize=16,color="green",shape="box"];2670[label="xwv107",fontsize=16,color="green",shape="box"];2671[label="xwv104",fontsize=16,color="green",shape="box"];2672[label="compare0 (xwv192,xwv193,xwv194) (xwv195,xwv196,xwv197) True",fontsize=16,color="black",shape="box"];2672 -> 2810[label="",style="solid", color="black", weight=3]; 2673[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2673 -> 2811[label="",style="solid", color="black", weight=3]; 2674[label="FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524",fontsize=16,color="green",shape="box"];2675[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524)",fontsize=16,color="black",shape="box"];2675 -> 2812[label="",style="solid", color="black", weight=3]; 2676[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514)",fontsize=16,color="burlywood",shape="triangle"];4605[label="xwv514/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2676 -> 4605[label="",style="solid", color="burlywood", weight=9]; 4605 -> 2813[label="",style="solid", color="burlywood", weight=3]; 4606[label="xwv514/FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144",fontsize=10,color="white",style="solid",shape="box"];2676 -> 4606[label="",style="solid", color="burlywood", weight=9]; 4606 -> 2814[label="",style="solid", color="burlywood", weight=3]; 2677 -> 3357[label="",style="dashed", color="red", weight=0]; 2677[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2677 -> 3358[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3359[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3360[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3361[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3362[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3363[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3364[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3365[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3366[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3367[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3368[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3369[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3370[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3371[label="",style="dashed", color="magenta", weight=3]; 2677 -> 3372[label="",style="dashed", color="magenta", weight=3]; 2678[label="xwv524",fontsize=16,color="green",shape="box"];2679 -> 75[label="",style="dashed", color="red", weight=0]; 2679[label="FiniteMap.mkBalBranch xwv520 xwv521 (FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)) xwv524",fontsize=16,color="magenta"];2679 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3451[label="",style="dashed", color="red", weight=0]; 2680[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMin (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="magenta"];2680 -> 3452[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3453[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3454[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3455[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3456[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3457[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3458[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3459[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3460[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3461[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3462[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3463[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3464[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3465[label="",style="dashed", color="magenta", weight=3]; 2680 -> 3466[label="",style="dashed", color="magenta", weight=3]; 2681[label="xwv13700",fontsize=16,color="green",shape="box"];2682[label="xwv16200",fontsize=16,color="green",shape="box"];2684 -> 98[label="",style="dashed", color="red", weight=0]; 2684[label="FiniteMap.sizeFM xwv164 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2684 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2683[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 xwv212",fontsize=16,color="burlywood",shape="triangle"];4607[label="xwv212/False",fontsize=10,color="white",style="solid",shape="box"];2683 -> 4607[label="",style="solid", color="burlywood", weight=9]; 4607 -> 2825[label="",style="solid", color="burlywood", weight=3]; 4608[label="xwv212/True",fontsize=10,color="white",style="solid",shape="box"];2683 -> 4608[label="",style="solid", color="burlywood", weight=9]; 4608 -> 2826[label="",style="solid", color="burlywood", weight=3]; 2685[label="xwv354",fontsize=16,color="green",shape="box"];2686[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv350 xwv351 xwv352 xwv353 xwv354 True",fontsize=16,color="black",shape="box"];2686 -> 2827[label="",style="solid", color="black", weight=3]; 2687[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="black",shape="box"];2687 -> 2828[label="",style="solid", color="black", weight=3]; 2688[label="xwv16",fontsize=16,color="green",shape="box"];2689[label="xwv205",fontsize=16,color="green",shape="box"];2690[label="GT",fontsize=16,color="green",shape="box"];2691[label="not False",fontsize=16,color="black",shape="box"];2691 -> 2829[label="",style="solid", color="black", weight=3]; 2692[label="not True",fontsize=16,color="black",shape="box"];2692 -> 2830[label="",style="solid", color="black", weight=3]; 2693[label="xwv620",fontsize=16,color="green",shape="box"];2694[label="xwv610",fontsize=16,color="green",shape="box"];2695[label="xwv620",fontsize=16,color="green",shape="box"];2696[label="xwv610",fontsize=16,color="green",shape="box"];2697[label="xwv620",fontsize=16,color="green",shape="box"];2698[label="xwv610",fontsize=16,color="green",shape="box"];2699[label="xwv620",fontsize=16,color="green",shape="box"];2700[label="xwv610",fontsize=16,color="green",shape="box"];2701[label="xwv620",fontsize=16,color="green",shape="box"];2702[label="xwv610",fontsize=16,color="green",shape="box"];2703[label="xwv620",fontsize=16,color="green",shape="box"];2704[label="xwv610",fontsize=16,color="green",shape="box"];2705[label="xwv620",fontsize=16,color="green",shape="box"];2706[label="xwv610",fontsize=16,color="green",shape="box"];2707[label="xwv620",fontsize=16,color="green",shape="box"];2708[label="xwv610",fontsize=16,color="green",shape="box"];2709[label="xwv620",fontsize=16,color="green",shape="box"];2710[label="xwv610",fontsize=16,color="green",shape="box"];2711[label="xwv620",fontsize=16,color="green",shape="box"];2712[label="xwv610",fontsize=16,color="green",shape="box"];2713[label="xwv620",fontsize=16,color="green",shape="box"];2714[label="xwv610",fontsize=16,color="green",shape="box"];2715[label="xwv620",fontsize=16,color="green",shape="box"];2716[label="xwv610",fontsize=16,color="green",shape="box"];2717[label="xwv620",fontsize=16,color="green",shape="box"];2718[label="xwv610",fontsize=16,color="green",shape="box"];2719[label="xwv620",fontsize=16,color="green",shape="box"];2720[label="xwv610",fontsize=16,color="green",shape="box"];2721[label="xwv620",fontsize=16,color="green",shape="box"];2722[label="xwv610",fontsize=16,color="green",shape="box"];2723[label="xwv620",fontsize=16,color="green",shape="box"];2724[label="xwv610",fontsize=16,color="green",shape="box"];2725[label="xwv620",fontsize=16,color="green",shape="box"];2726[label="xwv610",fontsize=16,color="green",shape="box"];2727[label="xwv620",fontsize=16,color="green",shape="box"];2728[label="xwv610",fontsize=16,color="green",shape="box"];2729[label="xwv620",fontsize=16,color="green",shape="box"];2730[label="xwv610",fontsize=16,color="green",shape="box"];2731[label="xwv620",fontsize=16,color="green",shape="box"];2732[label="xwv610",fontsize=16,color="green",shape="box"];2733[label="xwv620",fontsize=16,color="green",shape="box"];2734[label="xwv610",fontsize=16,color="green",shape="box"];2735[label="xwv620",fontsize=16,color="green",shape="box"];2736[label="xwv610",fontsize=16,color="green",shape="box"];2737[label="xwv620",fontsize=16,color="green",shape="box"];2738[label="xwv610",fontsize=16,color="green",shape="box"];2739[label="xwv620",fontsize=16,color="green",shape="box"];2740[label="xwv610",fontsize=16,color="green",shape="box"];2741[label="xwv620",fontsize=16,color="green",shape="box"];2742[label="xwv610",fontsize=16,color="green",shape="box"];2743[label="xwv620",fontsize=16,color="green",shape="box"];2744[label="xwv610",fontsize=16,color="green",shape="box"];2745[label="xwv620",fontsize=16,color="green",shape="box"];2746[label="xwv610",fontsize=16,color="green",shape="box"];2747[label="xwv620",fontsize=16,color="green",shape="box"];2748[label="xwv610",fontsize=16,color="green",shape="box"];2749[label="xwv620",fontsize=16,color="green",shape="box"];2750[label="xwv610",fontsize=16,color="green",shape="box"];2751[label="xwv620",fontsize=16,color="green",shape="box"];2752[label="xwv610",fontsize=16,color="green",shape="box"];2753[label="xwv620",fontsize=16,color="green",shape="box"];2754[label="xwv610",fontsize=16,color="green",shape="box"];2755[label="xwv620",fontsize=16,color="green",shape="box"];2756[label="xwv610",fontsize=16,color="green",shape="box"];2757[label="xwv620",fontsize=16,color="green",shape="box"];2758[label="xwv610",fontsize=16,color="green",shape="box"];2759[label="xwv620",fontsize=16,color="green",shape="box"];2760[label="xwv610",fontsize=16,color="green",shape="box"];2761[label="xwv620",fontsize=16,color="green",shape="box"];2762[label="xwv610",fontsize=16,color="green",shape="box"];2763[label="xwv620",fontsize=16,color="green",shape="box"];2764[label="xwv610",fontsize=16,color="green",shape="box"];2765[label="xwv620",fontsize=16,color="green",shape="box"];2766[label="xwv610",fontsize=16,color="green",shape="box"];2767[label="xwv620",fontsize=16,color="green",shape="box"];2768[label="xwv610",fontsize=16,color="green",shape="box"];2769[label="xwv620",fontsize=16,color="green",shape="box"];2770[label="xwv610",fontsize=16,color="green",shape="box"];2771[label="xwv620",fontsize=16,color="green",shape="box"];2772[label="xwv610",fontsize=16,color="green",shape="box"];2773[label="xwv620",fontsize=16,color="green",shape="box"];2774[label="xwv610",fontsize=16,color="green",shape="box"];2775[label="xwv620",fontsize=16,color="green",shape="box"];2776[label="xwv610",fontsize=16,color="green",shape="box"];2777[label="xwv610 == xwv620",fontsize=16,color="blue",shape="box"];4609[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 2831[label="",style="solid", color="blue", weight=3]; 4610[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 2832[label="",style="solid", color="blue", weight=3]; 4611[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 2833[label="",style="solid", color="blue", weight=3]; 4612[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 2834[label="",style="solid", color="blue", weight=3]; 4613[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 2835[label="",style="solid", color="blue", weight=3]; 4614[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 2836[label="",style="solid", color="blue", weight=3]; 4615[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 2837[label="",style="solid", color="blue", weight=3]; 4616[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 2838[label="",style="solid", color="blue", weight=3]; 4617[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 2839[label="",style="solid", color="blue", weight=3]; 4618[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 2840[label="",style="solid", color="blue", weight=3]; 4619[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 2841[label="",style="solid", color="blue", weight=3]; 4620[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 2842[label="",style="solid", color="blue", weight=3]; 4621[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 2843[label="",style="solid", color="blue", weight=3]; 4622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 2844[label="",style="solid", color="blue", weight=3]; 2778[label="xwv611 <= xwv621",fontsize=16,color="blue",shape="box"];4623[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 2845[label="",style="solid", color="blue", weight=3]; 4624[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 2846[label="",style="solid", color="blue", weight=3]; 4625[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 2847[label="",style="solid", color="blue", weight=3]; 4626[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 2848[label="",style="solid", color="blue", weight=3]; 4627[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 2849[label="",style="solid", color="blue", weight=3]; 4628[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 2850[label="",style="solid", color="blue", weight=3]; 4629[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 2851[label="",style="solid", color="blue", weight=3]; 4630[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 2852[label="",style="solid", color="blue", weight=3]; 4631[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 2853[label="",style="solid", color="blue", weight=3]; 4632[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 2854[label="",style="solid", color="blue", weight=3]; 4633[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 2855[label="",style="solid", color="blue", weight=3]; 4634[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 2856[label="",style="solid", color="blue", weight=3]; 4635[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 2857[label="",style="solid", color="blue", weight=3]; 4636[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 2858[label="",style="solid", color="blue", weight=3]; 2779 -> 95[label="",style="dashed", color="red", weight=0]; 2779[label="xwv610 < xwv620",fontsize=16,color="magenta"];2779 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2780 -> 96[label="",style="dashed", color="red", weight=0]; 2780[label="xwv610 < xwv620",fontsize=16,color="magenta"];2780 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2781 -> 97[label="",style="dashed", color="red", weight=0]; 2781[label="xwv610 < xwv620",fontsize=16,color="magenta"];2781 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2782 -> 98[label="",style="dashed", color="red", weight=0]; 2782[label="xwv610 < xwv620",fontsize=16,color="magenta"];2782 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2783 -> 99[label="",style="dashed", color="red", weight=0]; 2783[label="xwv610 < xwv620",fontsize=16,color="magenta"];2783 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2784 -> 100[label="",style="dashed", color="red", weight=0]; 2784[label="xwv610 < xwv620",fontsize=16,color="magenta"];2784 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2785 -> 101[label="",style="dashed", color="red", weight=0]; 2785[label="xwv610 < xwv620",fontsize=16,color="magenta"];2785 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2786 -> 102[label="",style="dashed", color="red", weight=0]; 2786[label="xwv610 < xwv620",fontsize=16,color="magenta"];2786 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2787 -> 103[label="",style="dashed", color="red", weight=0]; 2787[label="xwv610 < xwv620",fontsize=16,color="magenta"];2787 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2788 -> 104[label="",style="dashed", color="red", weight=0]; 2788[label="xwv610 < xwv620",fontsize=16,color="magenta"];2788 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2789 -> 105[label="",style="dashed", color="red", weight=0]; 2789[label="xwv610 < xwv620",fontsize=16,color="magenta"];2789 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2790 -> 106[label="",style="dashed", color="red", weight=0]; 2790[label="xwv610 < xwv620",fontsize=16,color="magenta"];2790 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2791 -> 107[label="",style="dashed", color="red", weight=0]; 2791[label="xwv610 < xwv620",fontsize=16,color="magenta"];2791 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2792 -> 108[label="",style="dashed", color="red", weight=0]; 2792[label="xwv610 < xwv620",fontsize=16,color="magenta"];2792 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2793[label="xwv610 == xwv620",fontsize=16,color="blue",shape="box"];4637[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 2887[label="",style="solid", color="blue", weight=3]; 4638[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 2888[label="",style="solid", color="blue", weight=3]; 4639[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 2889[label="",style="solid", color="blue", weight=3]; 4640[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 2890[label="",style="solid", color="blue", weight=3]; 4641[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 2891[label="",style="solid", color="blue", weight=3]; 4642[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 2892[label="",style="solid", color="blue", weight=3]; 4643[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 2893[label="",style="solid", color="blue", weight=3]; 4644[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 2894[label="",style="solid", color="blue", weight=3]; 4645[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 2895[label="",style="solid", color="blue", weight=3]; 4646[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 2896[label="",style="solid", color="blue", weight=3]; 4647[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 2897[label="",style="solid", color="blue", weight=3]; 4648[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4648[label="",style="solid", color="blue", weight=9]; 4648 -> 2898[label="",style="solid", color="blue", weight=3]; 4649[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4649[label="",style="solid", color="blue", weight=9]; 4649 -> 2899[label="",style="solid", color="blue", weight=3]; 4650[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 4650[label="",style="solid", color="blue", weight=9]; 4650 -> 2900[label="",style="solid", color="blue", weight=3]; 2794 -> 2401[label="",style="dashed", color="red", weight=0]; 2794[label="xwv611 < xwv621 || xwv611 == xwv621 && xwv612 <= xwv622",fontsize=16,color="magenta"];2794 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2794 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2795 -> 95[label="",style="dashed", color="red", weight=0]; 2795[label="xwv610 < xwv620",fontsize=16,color="magenta"];2795 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2795 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2796 -> 96[label="",style="dashed", color="red", weight=0]; 2796[label="xwv610 < xwv620",fontsize=16,color="magenta"];2796 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2796 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2797 -> 97[label="",style="dashed", color="red", weight=0]; 2797[label="xwv610 < xwv620",fontsize=16,color="magenta"];2797 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2797 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2798 -> 98[label="",style="dashed", color="red", weight=0]; 2798[label="xwv610 < xwv620",fontsize=16,color="magenta"];2798 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2799 -> 99[label="",style="dashed", color="red", weight=0]; 2799[label="xwv610 < xwv620",fontsize=16,color="magenta"];2799 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2799 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2800 -> 100[label="",style="dashed", color="red", weight=0]; 2800[label="xwv610 < xwv620",fontsize=16,color="magenta"];2800 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2801 -> 101[label="",style="dashed", color="red", weight=0]; 2801[label="xwv610 < xwv620",fontsize=16,color="magenta"];2801 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2802 -> 102[label="",style="dashed", color="red", weight=0]; 2802[label="xwv610 < xwv620",fontsize=16,color="magenta"];2802 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2803 -> 103[label="",style="dashed", color="red", weight=0]; 2803[label="xwv610 < xwv620",fontsize=16,color="magenta"];2803 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2803 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2804 -> 104[label="",style="dashed", color="red", weight=0]; 2804[label="xwv610 < xwv620",fontsize=16,color="magenta"];2804 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2805 -> 105[label="",style="dashed", color="red", weight=0]; 2805[label="xwv610 < xwv620",fontsize=16,color="magenta"];2805 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2806 -> 106[label="",style="dashed", color="red", weight=0]; 2806[label="xwv610 < xwv620",fontsize=16,color="magenta"];2806 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2807 -> 107[label="",style="dashed", color="red", weight=0]; 2807[label="xwv610 < xwv620",fontsize=16,color="magenta"];2807 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2807 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2808 -> 108[label="",style="dashed", color="red", weight=0]; 2808[label="xwv610 < xwv620",fontsize=16,color="magenta"];2808 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2808 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2809[label="GT",fontsize=16,color="green",shape="box"];2810[label="GT",fontsize=16,color="green",shape="box"];2811[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2811 -> 2931[label="",style="solid", color="black", weight=3]; 2812[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524))",fontsize=16,color="black",shape="box"];2812 -> 2932[label="",style="solid", color="black", weight=3]; 2813[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];2813 -> 2933[label="",style="solid", color="black", weight=3]; 2814[label="FiniteMap.deleteMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="black",shape="box"];2814 -> 2934[label="",style="solid", color="black", weight=3]; 3358[label="xwv522",fontsize=16,color="green",shape="box"];3359[label="xwv520",fontsize=16,color="green",shape="box"];3360[label="xwv523",fontsize=16,color="green",shape="box"];3361[label="xwv510",fontsize=16,color="green",shape="box"];3362[label="xwv512",fontsize=16,color="green",shape="box"];3363[label="xwv513",fontsize=16,color="green",shape="box"];3364[label="xwv521",fontsize=16,color="green",shape="box"];3365[label="xwv520",fontsize=16,color="green",shape="box"];3366[label="xwv523",fontsize=16,color="green",shape="box"];3367[label="xwv522",fontsize=16,color="green",shape="box"];3368[label="xwv511",fontsize=16,color="green",shape="box"];3369[label="xwv514",fontsize=16,color="green",shape="box"];3370[label="xwv524",fontsize=16,color="green",shape="box"];3371[label="xwv521",fontsize=16,color="green",shape="box"];3372[label="xwv524",fontsize=16,color="green",shape="box"];3357[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 xwv261 xwv262))",fontsize=16,color="burlywood",shape="triangle"];4651[label="xwv261/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3357 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 3448[label="",style="solid", color="burlywood", weight=3]; 4652[label="xwv261/FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614",fontsize=10,color="white",style="solid",shape="box"];3357 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 3449[label="",style="solid", color="burlywood", weight=3]; 2817[label="xwv520",fontsize=16,color="green",shape="box"];2818[label="xwv524",fontsize=16,color="green",shape="box"];2819[label="xwv521",fontsize=16,color="green",shape="box"];2820 -> 2429[label="",style="dashed", color="red", weight=0]; 2820[label="FiniteMap.deleteMin (FiniteMap.Branch xwv5230 xwv5231 xwv5232 xwv5233 xwv5234)",fontsize=16,color="magenta"];2820 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2941[label="",style="dashed", color="magenta", weight=3]; 3452[label="xwv521",fontsize=16,color="green",shape="box"];3453[label="xwv522",fontsize=16,color="green",shape="box"];3454[label="xwv511",fontsize=16,color="green",shape="box"];3455[label="xwv514",fontsize=16,color="green",shape="box"];3456[label="xwv524",fontsize=16,color="green",shape="box"];3457[label="xwv512",fontsize=16,color="green",shape="box"];3458[label="xwv523",fontsize=16,color="green",shape="box"];3459[label="xwv510",fontsize=16,color="green",shape="box"];3460[label="xwv524",fontsize=16,color="green",shape="box"];3461[label="xwv513",fontsize=16,color="green",shape="box"];3462[label="xwv521",fontsize=16,color="green",shape="box"];3463[label="xwv523",fontsize=16,color="green",shape="box"];3464[label="xwv522",fontsize=16,color="green",shape="box"];3465[label="xwv520",fontsize=16,color="green",shape="box"];3466[label="xwv520",fontsize=16,color="green",shape="box"];3451[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 xwv277 xwv278))",fontsize=16,color="burlywood",shape="triangle"];4653[label="xwv277/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3451 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 3542[label="",style="solid", color="burlywood", weight=3]; 4654[label="xwv277/FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774",fontsize=10,color="white",style="solid",shape="box"];3451 -> 4654[label="",style="solid", color="burlywood", weight=9]; 4654 -> 3543[label="",style="solid", color="burlywood", weight=3]; 2823 -> 436[label="",style="dashed", color="red", weight=0]; 2823[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2823 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2824 -> 1103[label="",style="dashed", color="red", weight=0]; 2824[label="FiniteMap.sizeFM xwv164",fontsize=16,color="magenta"];2824 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2825[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 False",fontsize=16,color="black",shape="box"];2825 -> 2947[label="",style="solid", color="black", weight=3]; 2826[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];2826 -> 2948[label="",style="solid", color="black", weight=3]; 2827[label="FiniteMap.mkBalBranch6Double_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 xwv353 xwv354)",fontsize=16,color="burlywood",shape="box"];4655[label="xwv353/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2827 -> 4655[label="",style="solid", color="burlywood", weight=9]; 4655 -> 2949[label="",style="solid", color="burlywood", weight=3]; 4656[label="xwv353/FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534",fontsize=10,color="white",style="solid",shape="box"];2827 -> 4656[label="",style="solid", color="burlywood", weight=9]; 4656 -> 2950[label="",style="solid", color="burlywood", weight=3]; 2828 -> 606[label="",style="dashed", color="red", weight=0]; 2828[label="FiniteMap.mkBranchResult xwv350 xwv351 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353) xwv354",fontsize=16,color="magenta"];2828 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2829[label="True",fontsize=16,color="green",shape="box"];2830[label="False",fontsize=16,color="green",shape="box"];2831 -> 394[label="",style="dashed", color="red", weight=0]; 2831[label="xwv610 == xwv620",fontsize=16,color="magenta"];2831 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2832 -> 388[label="",style="dashed", color="red", weight=0]; 2832[label="xwv610 == xwv620",fontsize=16,color="magenta"];2832 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2833 -> 398[label="",style="dashed", color="red", weight=0]; 2833[label="xwv610 == xwv620",fontsize=16,color="magenta"];2833 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2834 -> 400[label="",style="dashed", color="red", weight=0]; 2834[label="xwv610 == xwv620",fontsize=16,color="magenta"];2834 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2835 -> 392[label="",style="dashed", color="red", weight=0]; 2835[label="xwv610 == xwv620",fontsize=16,color="magenta"];2835 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2836 -> 397[label="",style="dashed", color="red", weight=0]; 2836[label="xwv610 == xwv620",fontsize=16,color="magenta"];2836 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2837 -> 395[label="",style="dashed", color="red", weight=0]; 2837[label="xwv610 == xwv620",fontsize=16,color="magenta"];2837 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2838 -> 391[label="",style="dashed", color="red", weight=0]; 2838[label="xwv610 == xwv620",fontsize=16,color="magenta"];2838 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2839 -> 393[label="",style="dashed", color="red", weight=0]; 2839[label="xwv610 == xwv620",fontsize=16,color="magenta"];2839 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2840 -> 389[label="",style="dashed", color="red", weight=0]; 2840[label="xwv610 == xwv620",fontsize=16,color="magenta"];2840 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2841 -> 396[label="",style="dashed", color="red", weight=0]; 2841[label="xwv610 == xwv620",fontsize=16,color="magenta"];2841 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2842 -> 390[label="",style="dashed", color="red", weight=0]; 2842[label="xwv610 == xwv620",fontsize=16,color="magenta"];2842 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2843 -> 399[label="",style="dashed", color="red", weight=0]; 2843[label="xwv610 == xwv620",fontsize=16,color="magenta"];2843 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2844 -> 387[label="",style="dashed", color="red", weight=0]; 2844[label="xwv610 == xwv620",fontsize=16,color="magenta"];2844 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2845 -> 1859[label="",style="dashed", color="red", weight=0]; 2845[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2845 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2846 -> 1860[label="",style="dashed", color="red", weight=0]; 2846[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2846 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2847 -> 1861[label="",style="dashed", color="red", weight=0]; 2847[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2847 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2848 -> 1862[label="",style="dashed", color="red", weight=0]; 2848[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2848 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2849 -> 1863[label="",style="dashed", color="red", weight=0]; 2849[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2849 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2850 -> 1864[label="",style="dashed", color="red", weight=0]; 2850[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2850 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2851 -> 1865[label="",style="dashed", color="red", weight=0]; 2851[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2851 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2852 -> 1866[label="",style="dashed", color="red", weight=0]; 2852[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2852 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2853 -> 1867[label="",style="dashed", color="red", weight=0]; 2853[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2853 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2853 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2854 -> 1868[label="",style="dashed", color="red", weight=0]; 2854[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2854 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2854 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2855 -> 1869[label="",style="dashed", color="red", weight=0]; 2855[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2855 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2855 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2856 -> 1870[label="",style="dashed", color="red", weight=0]; 2856[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2856 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2856 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2857 -> 1871[label="",style="dashed", color="red", weight=0]; 2857[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2857 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2857 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2858 -> 1872[label="",style="dashed", color="red", weight=0]; 2858[label="xwv611 <= xwv621",fontsize=16,color="magenta"];2858 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2858 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2859[label="xwv620",fontsize=16,color="green",shape="box"];2860[label="xwv610",fontsize=16,color="green",shape="box"];2861[label="xwv620",fontsize=16,color="green",shape="box"];2862[label="xwv610",fontsize=16,color="green",shape="box"];2863[label="xwv620",fontsize=16,color="green",shape="box"];2864[label="xwv610",fontsize=16,color="green",shape="box"];2865[label="xwv620",fontsize=16,color="green",shape="box"];2866[label="xwv610",fontsize=16,color="green",shape="box"];2867[label="xwv620",fontsize=16,color="green",shape="box"];2868[label="xwv610",fontsize=16,color="green",shape="box"];2869[label="xwv620",fontsize=16,color="green",shape="box"];2870[label="xwv610",fontsize=16,color="green",shape="box"];2871[label="xwv620",fontsize=16,color="green",shape="box"];2872[label="xwv610",fontsize=16,color="green",shape="box"];2873[label="xwv620",fontsize=16,color="green",shape="box"];2874[label="xwv610",fontsize=16,color="green",shape="box"];2875[label="xwv620",fontsize=16,color="green",shape="box"];2876[label="xwv610",fontsize=16,color="green",shape="box"];2877[label="xwv620",fontsize=16,color="green",shape="box"];2878[label="xwv610",fontsize=16,color="green",shape="box"];2879[label="xwv620",fontsize=16,color="green",shape="box"];2880[label="xwv610",fontsize=16,color="green",shape="box"];2881[label="xwv620",fontsize=16,color="green",shape="box"];2882[label="xwv610",fontsize=16,color="green",shape="box"];2883[label="xwv620",fontsize=16,color="green",shape="box"];2884[label="xwv610",fontsize=16,color="green",shape="box"];2885[label="xwv620",fontsize=16,color="green",shape="box"];2886[label="xwv610",fontsize=16,color="green",shape="box"];2887 -> 394[label="",style="dashed", color="red", weight=0]; 2887[label="xwv610 == xwv620",fontsize=16,color="magenta"];2887 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2887 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2888 -> 388[label="",style="dashed", color="red", weight=0]; 2888[label="xwv610 == xwv620",fontsize=16,color="magenta"];2888 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2888 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2889 -> 398[label="",style="dashed", color="red", weight=0]; 2889[label="xwv610 == xwv620",fontsize=16,color="magenta"];2889 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2889 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2890 -> 400[label="",style="dashed", color="red", weight=0]; 2890[label="xwv610 == xwv620",fontsize=16,color="magenta"];2890 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2890 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2891 -> 392[label="",style="dashed", color="red", weight=0]; 2891[label="xwv610 == xwv620",fontsize=16,color="magenta"];2891 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2891 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2892 -> 397[label="",style="dashed", color="red", weight=0]; 2892[label="xwv610 == xwv620",fontsize=16,color="magenta"];2892 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2892 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2893 -> 395[label="",style="dashed", color="red", weight=0]; 2893[label="xwv610 == xwv620",fontsize=16,color="magenta"];2893 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2893 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2894 -> 391[label="",style="dashed", color="red", weight=0]; 2894[label="xwv610 == xwv620",fontsize=16,color="magenta"];2894 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2894 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2895 -> 393[label="",style="dashed", color="red", weight=0]; 2895[label="xwv610 == xwv620",fontsize=16,color="magenta"];2895 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2895 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2896 -> 389[label="",style="dashed", color="red", weight=0]; 2896[label="xwv610 == xwv620",fontsize=16,color="magenta"];2896 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2896 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2897 -> 396[label="",style="dashed", color="red", weight=0]; 2897[label="xwv610 == xwv620",fontsize=16,color="magenta"];2897 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2897 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2898 -> 390[label="",style="dashed", color="red", weight=0]; 2898[label="xwv610 == xwv620",fontsize=16,color="magenta"];2898 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2898 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2899 -> 399[label="",style="dashed", color="red", weight=0]; 2899[label="xwv610 == xwv620",fontsize=16,color="magenta"];2899 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2899 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2900 -> 387[label="",style="dashed", color="red", weight=0]; 2900[label="xwv610 == xwv620",fontsize=16,color="magenta"];2900 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2900 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2901 -> 1178[label="",style="dashed", color="red", weight=0]; 2901[label="xwv611 == xwv621 && xwv612 <= xwv622",fontsize=16,color="magenta"];2901 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2901 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2902[label="xwv611 < xwv621",fontsize=16,color="blue",shape="box"];4657[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 3041[label="",style="solid", color="blue", weight=3]; 4658[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 3042[label="",style="solid", color="blue", weight=3]; 4659[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 3043[label="",style="solid", color="blue", weight=3]; 4660[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 3044[label="",style="solid", color="blue", weight=3]; 4661[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 3045[label="",style="solid", color="blue", weight=3]; 4662[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 3046[label="",style="solid", color="blue", weight=3]; 4663[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 3047[label="",style="solid", color="blue", weight=3]; 4664[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4664[label="",style="solid", color="blue", weight=9]; 4664 -> 3048[label="",style="solid", color="blue", weight=3]; 4665[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4665[label="",style="solid", color="blue", weight=9]; 4665 -> 3049[label="",style="solid", color="blue", weight=3]; 4666[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4666[label="",style="solid", color="blue", weight=9]; 4666 -> 3050[label="",style="solid", color="blue", weight=3]; 4667[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 3051[label="",style="solid", color="blue", weight=3]; 4668[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4668[label="",style="solid", color="blue", weight=9]; 4668 -> 3052[label="",style="solid", color="blue", weight=3]; 4669[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4669[label="",style="solid", color="blue", weight=9]; 4669 -> 3053[label="",style="solid", color="blue", weight=3]; 4670[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2902 -> 4670[label="",style="solid", color="blue", weight=9]; 4670 -> 3054[label="",style="solid", color="blue", weight=3]; 2903[label="xwv620",fontsize=16,color="green",shape="box"];2904[label="xwv610",fontsize=16,color="green",shape="box"];2905[label="xwv620",fontsize=16,color="green",shape="box"];2906[label="xwv610",fontsize=16,color="green",shape="box"];2907[label="xwv620",fontsize=16,color="green",shape="box"];2908[label="xwv610",fontsize=16,color="green",shape="box"];2909[label="xwv620",fontsize=16,color="green",shape="box"];2910[label="xwv610",fontsize=16,color="green",shape="box"];2911[label="xwv620",fontsize=16,color="green",shape="box"];2912[label="xwv610",fontsize=16,color="green",shape="box"];2913[label="xwv620",fontsize=16,color="green",shape="box"];2914[label="xwv610",fontsize=16,color="green",shape="box"];2915[label="xwv620",fontsize=16,color="green",shape="box"];2916[label="xwv610",fontsize=16,color="green",shape="box"];2917[label="xwv620",fontsize=16,color="green",shape="box"];2918[label="xwv610",fontsize=16,color="green",shape="box"];2919[label="xwv620",fontsize=16,color="green",shape="box"];2920[label="xwv610",fontsize=16,color="green",shape="box"];2921[label="xwv620",fontsize=16,color="green",shape="box"];2922[label="xwv610",fontsize=16,color="green",shape="box"];2923[label="xwv620",fontsize=16,color="green",shape="box"];2924[label="xwv610",fontsize=16,color="green",shape="box"];2925[label="xwv620",fontsize=16,color="green",shape="box"];2926[label="xwv610",fontsize=16,color="green",shape="box"];2927[label="xwv620",fontsize=16,color="green",shape="box"];2928[label="xwv610",fontsize=16,color="green",shape="box"];2929[label="xwv620",fontsize=16,color="green",shape="box"];2930[label="xwv610",fontsize=16,color="green",shape="box"];2931 -> 3559[label="",style="dashed", color="red", weight=0]; 2931[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2931 -> 3560[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3561[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3562[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3563[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3564[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3565[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3566[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3567[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3568[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3569[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3570[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3571[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3572[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3573[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3574[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3659[label="",style="dashed", color="red", weight=0]; 2932[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514) (FiniteMap.Branch xwv520 xwv521 xwv522 xwv523 xwv524) (FiniteMap.findMax (FiniteMap.Branch xwv510 xwv511 xwv512 xwv513 xwv514))",fontsize=16,color="magenta"];2932 -> 3660[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3661[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3662[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3663[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3664[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3665[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3666[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3667[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3668[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3669[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3670[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3671[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3672[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3673[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3674[label="",style="dashed", color="magenta", weight=3]; 2933[label="xwv513",fontsize=16,color="green",shape="box"];2934 -> 75[label="",style="dashed", color="red", weight=0]; 2934[label="FiniteMap.mkBalBranch xwv510 xwv511 xwv513 (FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144))",fontsize=16,color="magenta"];2934 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3062[label="",style="dashed", color="magenta", weight=3]; 3448[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 FiniteMap.EmptyFM xwv262))",fontsize=16,color="black",shape="box"];3448 -> 3544[label="",style="solid", color="black", weight=3]; 3449[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv258 xwv259 xwv260 (FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614) xwv262))",fontsize=16,color="black",shape="box"];3449 -> 3545[label="",style="solid", color="black", weight=3]; 2937[label="xwv5231",fontsize=16,color="green",shape="box"];2938[label="xwv5230",fontsize=16,color="green",shape="box"];2939[label="xwv5233",fontsize=16,color="green",shape="box"];2940[label="xwv5232",fontsize=16,color="green",shape="box"];2941[label="xwv5234",fontsize=16,color="green",shape="box"];3542[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 FiniteMap.EmptyFM xwv278))",fontsize=16,color="black",shape="box"];3542 -> 3550[label="",style="solid", color="black", weight=3]; 3543[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv274 xwv275 xwv276 (FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774) xwv278))",fontsize=16,color="black",shape="box"];3543 -> 3551[label="",style="solid", color="black", weight=3]; 2944[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2945 -> 1103[label="",style="dashed", color="red", weight=0]; 2945[label="FiniteMap.sizeFM xwv163",fontsize=16,color="magenta"];2945 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2946[label="xwv164",fontsize=16,color="green",shape="box"];2947[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 otherwise",fontsize=16,color="black",shape="box"];2947 -> 3070[label="",style="solid", color="black", weight=3]; 2948[label="FiniteMap.mkBalBranch6Single_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="black",shape="box"];2948 -> 3071[label="",style="solid", color="black", weight=3]; 2949[label="FiniteMap.mkBalBranch6Double_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 FiniteMap.EmptyFM xwv354)",fontsize=16,color="black",shape="box"];2949 -> 3072[label="",style="solid", color="black", weight=3]; 2950[label="FiniteMap.mkBalBranch6Double_L xwv13 xwv14 xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354) xwv16 (FiniteMap.Branch xwv350 xwv351 xwv352 (FiniteMap.Branch xwv3530 xwv3531 xwv3532 xwv3533 xwv3534) xwv354)",fontsize=16,color="black",shape="box"];2950 -> 3073[label="",style="solid", color="black", weight=3]; 2951[label="xwv350",fontsize=16,color="green",shape="box"];2952[label="xwv354",fontsize=16,color="green",shape="box"];2953[label="xwv351",fontsize=16,color="green",shape="box"];2954[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv13 xwv14 xwv16 xwv353",fontsize=16,color="black",shape="box"];2954 -> 3074[label="",style="solid", color="black", weight=3]; 2955[label="xwv610",fontsize=16,color="green",shape="box"];2956[label="xwv620",fontsize=16,color="green",shape="box"];2957[label="xwv610",fontsize=16,color="green",shape="box"];2958[label="xwv620",fontsize=16,color="green",shape="box"];2959[label="xwv610",fontsize=16,color="green",shape="box"];2960[label="xwv620",fontsize=16,color="green",shape="box"];2961[label="xwv610",fontsize=16,color="green",shape="box"];2962[label="xwv620",fontsize=16,color="green",shape="box"];2963[label="xwv610",fontsize=16,color="green",shape="box"];2964[label="xwv620",fontsize=16,color="green",shape="box"];2965[label="xwv610",fontsize=16,color="green",shape="box"];2966[label="xwv620",fontsize=16,color="green",shape="box"];2967[label="xwv610",fontsize=16,color="green",shape="box"];2968[label="xwv620",fontsize=16,color="green",shape="box"];2969[label="xwv610",fontsize=16,color="green",shape="box"];2970[label="xwv620",fontsize=16,color="green",shape="box"];2971[label="xwv610",fontsize=16,color="green",shape="box"];2972[label="xwv620",fontsize=16,color="green",shape="box"];2973[label="xwv610",fontsize=16,color="green",shape="box"];2974[label="xwv620",fontsize=16,color="green",shape="box"];2975[label="xwv610",fontsize=16,color="green",shape="box"];2976[label="xwv620",fontsize=16,color="green",shape="box"];2977[label="xwv610",fontsize=16,color="green",shape="box"];2978[label="xwv620",fontsize=16,color="green",shape="box"];2979[label="xwv610",fontsize=16,color="green",shape="box"];2980[label="xwv620",fontsize=16,color="green",shape="box"];2981[label="xwv610",fontsize=16,color="green",shape="box"];2982[label="xwv620",fontsize=16,color="green",shape="box"];2983[label="xwv621",fontsize=16,color="green",shape="box"];2984[label="xwv611",fontsize=16,color="green",shape="box"];2985[label="xwv621",fontsize=16,color="green",shape="box"];2986[label="xwv611",fontsize=16,color="green",shape="box"];2987[label="xwv621",fontsize=16,color="green",shape="box"];2988[label="xwv611",fontsize=16,color="green",shape="box"];2989[label="xwv621",fontsize=16,color="green",shape="box"];2990[label="xwv611",fontsize=16,color="green",shape="box"];2991[label="xwv621",fontsize=16,color="green",shape="box"];2992[label="xwv611",fontsize=16,color="green",shape="box"];2993[label="xwv621",fontsize=16,color="green",shape="box"];2994[label="xwv611",fontsize=16,color="green",shape="box"];2995[label="xwv621",fontsize=16,color="green",shape="box"];2996[label="xwv611",fontsize=16,color="green",shape="box"];2997[label="xwv621",fontsize=16,color="green",shape="box"];2998[label="xwv611",fontsize=16,color="green",shape="box"];2999[label="xwv621",fontsize=16,color="green",shape="box"];3000[label="xwv611",fontsize=16,color="green",shape="box"];3001[label="xwv621",fontsize=16,color="green",shape="box"];3002[label="xwv611",fontsize=16,color="green",shape="box"];3003[label="xwv621",fontsize=16,color="green",shape="box"];3004[label="xwv611",fontsize=16,color="green",shape="box"];3005[label="xwv621",fontsize=16,color="green",shape="box"];3006[label="xwv611",fontsize=16,color="green",shape="box"];3007[label="xwv621",fontsize=16,color="green",shape="box"];3008[label="xwv611",fontsize=16,color="green",shape="box"];3009[label="xwv621",fontsize=16,color="green",shape="box"];3010[label="xwv611",fontsize=16,color="green",shape="box"];3011[label="xwv610",fontsize=16,color="green",shape="box"];3012[label="xwv620",fontsize=16,color="green",shape="box"];3013[label="xwv610",fontsize=16,color="green",shape="box"];3014[label="xwv620",fontsize=16,color="green",shape="box"];3015[label="xwv610",fontsize=16,color="green",shape="box"];3016[label="xwv620",fontsize=16,color="green",shape="box"];3017[label="xwv610",fontsize=16,color="green",shape="box"];3018[label="xwv620",fontsize=16,color="green",shape="box"];3019[label="xwv610",fontsize=16,color="green",shape="box"];3020[label="xwv620",fontsize=16,color="green",shape="box"];3021[label="xwv610",fontsize=16,color="green",shape="box"];3022[label="xwv620",fontsize=16,color="green",shape="box"];3023[label="xwv610",fontsize=16,color="green",shape="box"];3024[label="xwv620",fontsize=16,color="green",shape="box"];3025[label="xwv610",fontsize=16,color="green",shape="box"];3026[label="xwv620",fontsize=16,color="green",shape="box"];3027[label="xwv610",fontsize=16,color="green",shape="box"];3028[label="xwv620",fontsize=16,color="green",shape="box"];3029[label="xwv610",fontsize=16,color="green",shape="box"];3030[label="xwv620",fontsize=16,color="green",shape="box"];3031[label="xwv610",fontsize=16,color="green",shape="box"];3032[label="xwv620",fontsize=16,color="green",shape="box"];3033[label="xwv610",fontsize=16,color="green",shape="box"];3034[label="xwv620",fontsize=16,color="green",shape="box"];3035[label="xwv610",fontsize=16,color="green",shape="box"];3036[label="xwv620",fontsize=16,color="green",shape="box"];3037[label="xwv610",fontsize=16,color="green",shape="box"];3038[label="xwv620",fontsize=16,color="green",shape="box"];3039[label="xwv611 == xwv621",fontsize=16,color="blue",shape="box"];4671[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4671[label="",style="solid", color="blue", weight=9]; 4671 -> 3075[label="",style="solid", color="blue", weight=3]; 4672[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4672[label="",style="solid", color="blue", weight=9]; 4672 -> 3076[label="",style="solid", color="blue", weight=3]; 4673[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4673[label="",style="solid", color="blue", weight=9]; 4673 -> 3077[label="",style="solid", color="blue", weight=3]; 4674[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4674[label="",style="solid", color="blue", weight=9]; 4674 -> 3078[label="",style="solid", color="blue", weight=3]; 4675[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4675[label="",style="solid", color="blue", weight=9]; 4675 -> 3079[label="",style="solid", color="blue", weight=3]; 4676[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4676[label="",style="solid", color="blue", weight=9]; 4676 -> 3080[label="",style="solid", color="blue", weight=3]; 4677[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4677[label="",style="solid", color="blue", weight=9]; 4677 -> 3081[label="",style="solid", color="blue", weight=3]; 4678[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4678[label="",style="solid", color="blue", weight=9]; 4678 -> 3082[label="",style="solid", color="blue", weight=3]; 4679[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4679[label="",style="solid", color="blue", weight=9]; 4679 -> 3083[label="",style="solid", color="blue", weight=3]; 4680[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4680[label="",style="solid", color="blue", weight=9]; 4680 -> 3084[label="",style="solid", color="blue", weight=3]; 4681[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4681[label="",style="solid", color="blue", weight=9]; 4681 -> 3085[label="",style="solid", color="blue", weight=3]; 4682[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4682[label="",style="solid", color="blue", weight=9]; 4682 -> 3086[label="",style="solid", color="blue", weight=3]; 4683[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4683[label="",style="solid", color="blue", weight=9]; 4683 -> 3087[label="",style="solid", color="blue", weight=3]; 4684[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4684[label="",style="solid", color="blue", weight=9]; 4684 -> 3088[label="",style="solid", color="blue", weight=3]; 3040[label="xwv612 <= xwv622",fontsize=16,color="blue",shape="box"];4685[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4685[label="",style="solid", color="blue", weight=9]; 4685 -> 3089[label="",style="solid", color="blue", weight=3]; 4686[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4686[label="",style="solid", color="blue", weight=9]; 4686 -> 3090[label="",style="solid", color="blue", weight=3]; 4687[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4687[label="",style="solid", color="blue", weight=9]; 4687 -> 3091[label="",style="solid", color="blue", weight=3]; 4688[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4688[label="",style="solid", color="blue", weight=9]; 4688 -> 3092[label="",style="solid", color="blue", weight=3]; 4689[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4689[label="",style="solid", color="blue", weight=9]; 4689 -> 3093[label="",style="solid", color="blue", weight=3]; 4690[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4690[label="",style="solid", color="blue", weight=9]; 4690 -> 3094[label="",style="solid", color="blue", weight=3]; 4691[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4691[label="",style="solid", color="blue", weight=9]; 4691 -> 3095[label="",style="solid", color="blue", weight=3]; 4692[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4692[label="",style="solid", color="blue", weight=9]; 4692 -> 3096[label="",style="solid", color="blue", weight=3]; 4693[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4693[label="",style="solid", color="blue", weight=9]; 4693 -> 3097[label="",style="solid", color="blue", weight=3]; 4694[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4694[label="",style="solid", color="blue", weight=9]; 4694 -> 3098[label="",style="solid", color="blue", weight=3]; 4695[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4695[label="",style="solid", color="blue", weight=9]; 4695 -> 3099[label="",style="solid", color="blue", weight=3]; 4696[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4696[label="",style="solid", color="blue", weight=9]; 4696 -> 3100[label="",style="solid", color="blue", weight=3]; 4697[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4697[label="",style="solid", color="blue", weight=9]; 4697 -> 3101[label="",style="solid", color="blue", weight=3]; 4698[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4698[label="",style="solid", color="blue", weight=9]; 4698 -> 3102[label="",style="solid", color="blue", weight=3]; 3041 -> 95[label="",style="dashed", color="red", weight=0]; 3041[label="xwv611 < xwv621",fontsize=16,color="magenta"];3041 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3041 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3042 -> 96[label="",style="dashed", color="red", weight=0]; 3042[label="xwv611 < xwv621",fontsize=16,color="magenta"];3042 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3042 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3043 -> 97[label="",style="dashed", color="red", weight=0]; 3043[label="xwv611 < xwv621",fontsize=16,color="magenta"];3043 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3044 -> 98[label="",style="dashed", color="red", weight=0]; 3044[label="xwv611 < xwv621",fontsize=16,color="magenta"];3044 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3045 -> 99[label="",style="dashed", color="red", weight=0]; 3045[label="xwv611 < xwv621",fontsize=16,color="magenta"];3045 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3046 -> 100[label="",style="dashed", color="red", weight=0]; 3046[label="xwv611 < xwv621",fontsize=16,color="magenta"];3046 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3047 -> 101[label="",style="dashed", color="red", weight=0]; 3047[label="xwv611 < xwv621",fontsize=16,color="magenta"];3047 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3048 -> 102[label="",style="dashed", color="red", weight=0]; 3048[label="xwv611 < xwv621",fontsize=16,color="magenta"];3048 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3049 -> 103[label="",style="dashed", color="red", weight=0]; 3049[label="xwv611 < xwv621",fontsize=16,color="magenta"];3049 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3050 -> 104[label="",style="dashed", color="red", weight=0]; 3050[label="xwv611 < xwv621",fontsize=16,color="magenta"];3050 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3050 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3051 -> 105[label="",style="dashed", color="red", weight=0]; 3051[label="xwv611 < xwv621",fontsize=16,color="magenta"];3051 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3052 -> 106[label="",style="dashed", color="red", weight=0]; 3052[label="xwv611 < xwv621",fontsize=16,color="magenta"];3052 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3052 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3053 -> 107[label="",style="dashed", color="red", weight=0]; 3053[label="xwv611 < xwv621",fontsize=16,color="magenta"];3053 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3054 -> 108[label="",style="dashed", color="red", weight=0]; 3054[label="xwv611 < xwv621",fontsize=16,color="magenta"];3054 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3560[label="xwv510",fontsize=16,color="green",shape="box"];3561[label="xwv523",fontsize=16,color="green",shape="box"];3562[label="xwv513",fontsize=16,color="green",shape="box"];3563[label="xwv521",fontsize=16,color="green",shape="box"];3564[label="xwv512",fontsize=16,color="green",shape="box"];3565[label="xwv514",fontsize=16,color="green",shape="box"];3566[label="xwv510",fontsize=16,color="green",shape="box"];3567[label="xwv520",fontsize=16,color="green",shape="box"];3568[label="xwv522",fontsize=16,color="green",shape="box"];3569[label="xwv511",fontsize=16,color="green",shape="box"];3570[label="xwv513",fontsize=16,color="green",shape="box"];3571[label="xwv514",fontsize=16,color="green",shape="box"];3572[label="xwv511",fontsize=16,color="green",shape="box"];3573[label="xwv524",fontsize=16,color="green",shape="box"];3574[label="xwv512",fontsize=16,color="green",shape="box"];3559[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 xwv294))",fontsize=16,color="burlywood",shape="triangle"];4699[label="xwv294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3559 -> 4699[label="",style="solid", color="burlywood", weight=9]; 4699 -> 3650[label="",style="solid", color="burlywood", weight=3]; 4700[label="xwv294/FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944",fontsize=10,color="white",style="solid",shape="box"];3559 -> 4700[label="",style="solid", color="burlywood", weight=9]; 4700 -> 3651[label="",style="solid", color="burlywood", weight=3]; 3660[label="xwv510",fontsize=16,color="green",shape="box"];3661[label="xwv513",fontsize=16,color="green",shape="box"];3662[label="xwv512",fontsize=16,color="green",shape="box"];3663[label="xwv524",fontsize=16,color="green",shape="box"];3664[label="xwv521",fontsize=16,color="green",shape="box"];3665[label="xwv512",fontsize=16,color="green",shape="box"];3666[label="xwv513",fontsize=16,color="green",shape="box"];3667[label="xwv520",fontsize=16,color="green",shape="box"];3668[label="xwv522",fontsize=16,color="green",shape="box"];3669[label="xwv514",fontsize=16,color="green",shape="box"];3670[label="xwv510",fontsize=16,color="green",shape="box"];3671[label="xwv511",fontsize=16,color="green",shape="box"];3672[label="xwv523",fontsize=16,color="green",shape="box"];3673[label="xwv514",fontsize=16,color="green",shape="box"];3674[label="xwv511",fontsize=16,color="green",shape="box"];3659[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 xwv310))",fontsize=16,color="burlywood",shape="triangle"];4701[label="xwv310/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3659 -> 4701[label="",style="solid", color="burlywood", weight=9]; 4701 -> 3750[label="",style="solid", color="burlywood", weight=3]; 4702[label="xwv310/FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104",fontsize=10,color="white",style="solid",shape="box"];3659 -> 4702[label="",style="solid", color="burlywood", weight=9]; 4702 -> 3751[label="",style="solid", color="burlywood", weight=3]; 3059[label="xwv510",fontsize=16,color="green",shape="box"];3060 -> 2676[label="",style="dashed", color="red", weight=0]; 3060[label="FiniteMap.deleteMax (FiniteMap.Branch xwv5140 xwv5141 xwv5142 xwv5143 xwv5144)",fontsize=16,color="magenta"];3060 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3061[label="xwv511",fontsize=16,color="green",shape="box"];3062[label="xwv513",fontsize=16,color="green",shape="box"];3544[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (xwv258,xwv259)",fontsize=16,color="black",shape="box"];3544 -> 3552[label="",style="solid", color="black", weight=3]; 3545 -> 3357[label="",style="dashed", color="red", weight=0]; 3545[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv248 xwv249 xwv250 xwv251 xwv252) (FiniteMap.Branch xwv253 xwv254 xwv255 xwv256 xwv257) (FiniteMap.findMin (FiniteMap.Branch xwv2610 xwv2611 xwv2612 xwv2613 xwv2614))",fontsize=16,color="magenta"];3545 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3550[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (xwv274,xwv275)",fontsize=16,color="black",shape="box"];3550 -> 3652[label="",style="solid", color="black", weight=3]; 3551 -> 3451[label="",style="dashed", color="red", weight=0]; 3551[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv264 xwv265 xwv266 xwv267 xwv268) (FiniteMap.Branch xwv269 xwv270 xwv271 xwv272 xwv273) (FiniteMap.findMin (FiniteMap.Branch xwv2770 xwv2771 xwv2772 xwv2773 xwv2774))",fontsize=16,color="magenta"];3551 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3069[label="xwv163",fontsize=16,color="green",shape="box"];3070[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 xwv160 xwv161 xwv162 xwv163 xwv164 True",fontsize=16,color="black",shape="box"];3070 -> 3144[label="",style="solid", color="black", weight=3]; 3071 -> 3237[label="",style="dashed", color="red", weight=0]; 3071[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv160 xwv161 xwv163 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv13 xwv14 xwv164 xwv35)",fontsize=16,color="magenta"];3071 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3072[label="error []",fontsize=16,color="red",shape="box"];3073 -> 3237[label="",style="dashed", color="red", weight=0]; 3073[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv3530 xwv3531 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv350 xwv351 xwv3534 xwv354)",fontsize=16,color="magenta"];3073 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3074 -> 606[label="",style="dashed", color="red", weight=0]; 3074[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv353",fontsize=16,color="magenta"];3074 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3075 -> 394[label="",style="dashed", color="red", weight=0]; 3075[label="xwv611 == xwv621",fontsize=16,color="magenta"];3075 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3076 -> 388[label="",style="dashed", color="red", weight=0]; 3076[label="xwv611 == xwv621",fontsize=16,color="magenta"];3076 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3076 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3077 -> 398[label="",style="dashed", color="red", weight=0]; 3077[label="xwv611 == xwv621",fontsize=16,color="magenta"];3077 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3078 -> 400[label="",style="dashed", color="red", weight=0]; 3078[label="xwv611 == xwv621",fontsize=16,color="magenta"];3078 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3079 -> 392[label="",style="dashed", color="red", weight=0]; 3079[label="xwv611 == xwv621",fontsize=16,color="magenta"];3079 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3080 -> 397[label="",style="dashed", color="red", weight=0]; 3080[label="xwv611 == xwv621",fontsize=16,color="magenta"];3080 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3081 -> 395[label="",style="dashed", color="red", weight=0]; 3081[label="xwv611 == xwv621",fontsize=16,color="magenta"];3081 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3082 -> 391[label="",style="dashed", color="red", weight=0]; 3082[label="xwv611 == xwv621",fontsize=16,color="magenta"];3082 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3083 -> 393[label="",style="dashed", color="red", weight=0]; 3083[label="xwv611 == xwv621",fontsize=16,color="magenta"];3083 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3084 -> 389[label="",style="dashed", color="red", weight=0]; 3084[label="xwv611 == xwv621",fontsize=16,color="magenta"];3084 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3085 -> 396[label="",style="dashed", color="red", weight=0]; 3085[label="xwv611 == xwv621",fontsize=16,color="magenta"];3085 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3085 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3086 -> 390[label="",style="dashed", color="red", weight=0]; 3086[label="xwv611 == xwv621",fontsize=16,color="magenta"];3086 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3087 -> 399[label="",style="dashed", color="red", weight=0]; 3087[label="xwv611 == xwv621",fontsize=16,color="magenta"];3087 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3088 -> 387[label="",style="dashed", color="red", weight=0]; 3088[label="xwv611 == xwv621",fontsize=16,color="magenta"];3088 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3089 -> 1859[label="",style="dashed", color="red", weight=0]; 3089[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3089 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3090 -> 1860[label="",style="dashed", color="red", weight=0]; 3090[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3090 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3091 -> 1861[label="",style="dashed", color="red", weight=0]; 3091[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3091 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3092 -> 1862[label="",style="dashed", color="red", weight=0]; 3092[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3092 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3093 -> 1863[label="",style="dashed", color="red", weight=0]; 3093[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3093 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3094 -> 1864[label="",style="dashed", color="red", weight=0]; 3094[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3094 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3094 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3095 -> 1865[label="",style="dashed", color="red", weight=0]; 3095[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3095 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3095 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3096 -> 1866[label="",style="dashed", color="red", weight=0]; 3096[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3096 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3096 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3097 -> 1867[label="",style="dashed", color="red", weight=0]; 3097[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3097 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3097 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3098 -> 1868[label="",style="dashed", color="red", weight=0]; 3098[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3098 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3098 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3099 -> 1869[label="",style="dashed", color="red", weight=0]; 3099[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3099 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3099 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3100 -> 1870[label="",style="dashed", color="red", weight=0]; 3100[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3100 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3100 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3101 -> 1871[label="",style="dashed", color="red", weight=0]; 3101[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3101 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3102 -> 1872[label="",style="dashed", color="red", weight=0]; 3102[label="xwv612 <= xwv622",fontsize=16,color="magenta"];3102 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3103[label="xwv621",fontsize=16,color="green",shape="box"];3104[label="xwv611",fontsize=16,color="green",shape="box"];3105[label="xwv621",fontsize=16,color="green",shape="box"];3106[label="xwv611",fontsize=16,color="green",shape="box"];3107[label="xwv621",fontsize=16,color="green",shape="box"];3108[label="xwv611",fontsize=16,color="green",shape="box"];3109[label="xwv621",fontsize=16,color="green",shape="box"];3110[label="xwv611",fontsize=16,color="green",shape="box"];3111[label="xwv621",fontsize=16,color="green",shape="box"];3112[label="xwv611",fontsize=16,color="green",shape="box"];3113[label="xwv621",fontsize=16,color="green",shape="box"];3114[label="xwv611",fontsize=16,color="green",shape="box"];3115[label="xwv621",fontsize=16,color="green",shape="box"];3116[label="xwv611",fontsize=16,color="green",shape="box"];3117[label="xwv621",fontsize=16,color="green",shape="box"];3118[label="xwv611",fontsize=16,color="green",shape="box"];3119[label="xwv621",fontsize=16,color="green",shape="box"];3120[label="xwv611",fontsize=16,color="green",shape="box"];3121[label="xwv621",fontsize=16,color="green",shape="box"];3122[label="xwv611",fontsize=16,color="green",shape="box"];3123[label="xwv621",fontsize=16,color="green",shape="box"];3124[label="xwv611",fontsize=16,color="green",shape="box"];3125[label="xwv621",fontsize=16,color="green",shape="box"];3126[label="xwv611",fontsize=16,color="green",shape="box"];3127[label="xwv621",fontsize=16,color="green",shape="box"];3128[label="xwv611",fontsize=16,color="green",shape="box"];3129[label="xwv621",fontsize=16,color="green",shape="box"];3130[label="xwv611",fontsize=16,color="green",shape="box"];3650[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3650 -> 3752[label="",style="solid", color="black", weight=3]; 3651[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv290 xwv291 xwv292 xwv293 (FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944)))",fontsize=16,color="black",shape="box"];3651 -> 3753[label="",style="solid", color="black", weight=3]; 3750[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];3750 -> 3754[label="",style="solid", color="black", weight=3]; 3751[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv306 xwv307 xwv308 xwv309 (FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104)))",fontsize=16,color="black",shape="box"];3751 -> 3755[label="",style="solid", color="black", weight=3]; 3135[label="xwv5141",fontsize=16,color="green",shape="box"];3136[label="xwv5142",fontsize=16,color="green",shape="box"];3137[label="xwv5140",fontsize=16,color="green",shape="box"];3138[label="xwv5144",fontsize=16,color="green",shape="box"];3139[label="xwv5143",fontsize=16,color="green",shape="box"];3552[label="xwv258",fontsize=16,color="green",shape="box"];3553[label="xwv2613",fontsize=16,color="green",shape="box"];3554[label="xwv2610",fontsize=16,color="green",shape="box"];3555[label="xwv2612",fontsize=16,color="green",shape="box"];3556[label="xwv2614",fontsize=16,color="green",shape="box"];3557[label="xwv2611",fontsize=16,color="green",shape="box"];3652[label="xwv275",fontsize=16,color="green",shape="box"];3653[label="xwv2771",fontsize=16,color="green",shape="box"];3654[label="xwv2772",fontsize=16,color="green",shape="box"];3655[label="xwv2774",fontsize=16,color="green",shape="box"];3656[label="xwv2773",fontsize=16,color="green",shape="box"];3657[label="xwv2770",fontsize=16,color="green",shape="box"];3144[label="FiniteMap.mkBalBranch6Double_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 xwv164) xwv35",fontsize=16,color="burlywood",shape="box"];4703[label="xwv164/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3144 -> 4703[label="",style="solid", color="burlywood", weight=9]; 4703 -> 3235[label="",style="solid", color="burlywood", weight=3]; 4704[label="xwv164/FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644",fontsize=10,color="white",style="solid",shape="box"];3144 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 3236[label="",style="solid", color="burlywood", weight=3]; 3238[label="xwv161",fontsize=16,color="green",shape="box"];3239[label="xwv160",fontsize=16,color="green",shape="box"];3240[label="xwv35",fontsize=16,color="green",shape="box"];3241[label="xwv163",fontsize=16,color="green",shape="box"];3242[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3243[label="xwv14",fontsize=16,color="green",shape="box"];3244[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3245[label="xwv13",fontsize=16,color="green",shape="box"];3246[label="xwv164",fontsize=16,color="green",shape="box"];3237[label="FiniteMap.mkBranch (Pos (Succ xwv238)) xwv239 xwv240 xwv241 (FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246)",fontsize=16,color="black",shape="triangle"];3237 -> 3274[label="",style="solid", color="black", weight=3]; 3247[label="xwv3531",fontsize=16,color="green",shape="box"];3248[label="xwv3530",fontsize=16,color="green",shape="box"];3249[label="xwv354",fontsize=16,color="green",shape="box"];3250[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="black",shape="box"];3250 -> 3275[label="",style="solid", color="black", weight=3]; 3251[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3252[label="xwv351",fontsize=16,color="green",shape="box"];3253[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3254[label="xwv350",fontsize=16,color="green",shape="box"];3255[label="xwv3534",fontsize=16,color="green",shape="box"];3166[label="xwv353",fontsize=16,color="green",shape="box"];3167[label="xwv611",fontsize=16,color="green",shape="box"];3168[label="xwv621",fontsize=16,color="green",shape="box"];3169[label="xwv611",fontsize=16,color="green",shape="box"];3170[label="xwv621",fontsize=16,color="green",shape="box"];3171[label="xwv611",fontsize=16,color="green",shape="box"];3172[label="xwv621",fontsize=16,color="green",shape="box"];3173[label="xwv611",fontsize=16,color="green",shape="box"];3174[label="xwv621",fontsize=16,color="green",shape="box"];3175[label="xwv611",fontsize=16,color="green",shape="box"];3176[label="xwv621",fontsize=16,color="green",shape="box"];3177[label="xwv611",fontsize=16,color="green",shape="box"];3178[label="xwv621",fontsize=16,color="green",shape="box"];3179[label="xwv611",fontsize=16,color="green",shape="box"];3180[label="xwv621",fontsize=16,color="green",shape="box"];3181[label="xwv611",fontsize=16,color="green",shape="box"];3182[label="xwv621",fontsize=16,color="green",shape="box"];3183[label="xwv611",fontsize=16,color="green",shape="box"];3184[label="xwv621",fontsize=16,color="green",shape="box"];3185[label="xwv611",fontsize=16,color="green",shape="box"];3186[label="xwv621",fontsize=16,color="green",shape="box"];3187[label="xwv611",fontsize=16,color="green",shape="box"];3188[label="xwv621",fontsize=16,color="green",shape="box"];3189[label="xwv611",fontsize=16,color="green",shape="box"];3190[label="xwv621",fontsize=16,color="green",shape="box"];3191[label="xwv611",fontsize=16,color="green",shape="box"];3192[label="xwv621",fontsize=16,color="green",shape="box"];3193[label="xwv611",fontsize=16,color="green",shape="box"];3194[label="xwv621",fontsize=16,color="green",shape="box"];3195[label="xwv622",fontsize=16,color="green",shape="box"];3196[label="xwv612",fontsize=16,color="green",shape="box"];3197[label="xwv622",fontsize=16,color="green",shape="box"];3198[label="xwv612",fontsize=16,color="green",shape="box"];3199[label="xwv622",fontsize=16,color="green",shape="box"];3200[label="xwv612",fontsize=16,color="green",shape="box"];3201[label="xwv622",fontsize=16,color="green",shape="box"];3202[label="xwv612",fontsize=16,color="green",shape="box"];3203[label="xwv622",fontsize=16,color="green",shape="box"];3204[label="xwv612",fontsize=16,color="green",shape="box"];3205[label="xwv622",fontsize=16,color="green",shape="box"];3206[label="xwv612",fontsize=16,color="green",shape="box"];3207[label="xwv622",fontsize=16,color="green",shape="box"];3208[label="xwv612",fontsize=16,color="green",shape="box"];3209[label="xwv622",fontsize=16,color="green",shape="box"];3210[label="xwv612",fontsize=16,color="green",shape="box"];3211[label="xwv622",fontsize=16,color="green",shape="box"];3212[label="xwv612",fontsize=16,color="green",shape="box"];3213[label="xwv622",fontsize=16,color="green",shape="box"];3214[label="xwv612",fontsize=16,color="green",shape="box"];3215[label="xwv622",fontsize=16,color="green",shape="box"];3216[label="xwv612",fontsize=16,color="green",shape="box"];3217[label="xwv622",fontsize=16,color="green",shape="box"];3218[label="xwv612",fontsize=16,color="green",shape="box"];3219[label="xwv622",fontsize=16,color="green",shape="box"];3220[label="xwv612",fontsize=16,color="green",shape="box"];3221[label="xwv622",fontsize=16,color="green",shape="box"];3222[label="xwv612",fontsize=16,color="green",shape="box"];3752[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (xwv290,xwv291)",fontsize=16,color="black",shape="box"];3752 -> 3756[label="",style="solid", color="black", weight=3]; 3753 -> 3559[label="",style="dashed", color="red", weight=0]; 3753[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289) (FiniteMap.findMax (FiniteMap.Branch xwv2940 xwv2941 xwv2942 xwv2943 xwv2944))",fontsize=16,color="magenta"];3753 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3758[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3754[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (xwv306,xwv307)",fontsize=16,color="black",shape="box"];3754 -> 3762[label="",style="solid", color="black", weight=3]; 3755 -> 3659[label="",style="dashed", color="red", weight=0]; 3755[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305) (FiniteMap.findMax (FiniteMap.Branch xwv3100 xwv3101 xwv3102 xwv3103 xwv3104))",fontsize=16,color="magenta"];3755 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3235[label="FiniteMap.mkBalBranch6Double_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 FiniteMap.EmptyFM) xwv35",fontsize=16,color="black",shape="box"];3235 -> 3284[label="",style="solid", color="black", weight=3]; 3236[label="FiniteMap.mkBalBranch6Double_R xwv13 xwv14 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv35 (FiniteMap.Branch xwv160 xwv161 xwv162 xwv163 (FiniteMap.Branch xwv1640 xwv1641 xwv1642 xwv1643 xwv1644)) xwv35",fontsize=16,color="black",shape="box"];3236 -> 3285[label="",style="solid", color="black", weight=3]; 3274 -> 606[label="",style="dashed", color="red", weight=0]; 3274[label="FiniteMap.mkBranchResult xwv239 xwv240 xwv241 (FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246)",fontsize=16,color="magenta"];3274 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3275 -> 606[label="",style="dashed", color="red", weight=0]; 3275[label="FiniteMap.mkBranchResult xwv13 xwv14 xwv16 xwv3533",fontsize=16,color="magenta"];3275 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3756[label="xwv290",fontsize=16,color="green",shape="box"];3757[label="xwv2943",fontsize=16,color="green",shape="box"];3758[label="xwv2942",fontsize=16,color="green",shape="box"];3759[label="xwv2940",fontsize=16,color="green",shape="box"];3760[label="xwv2944",fontsize=16,color="green",shape="box"];3761[label="xwv2941",fontsize=16,color="green",shape="box"];3762[label="xwv307",fontsize=16,color="green",shape="box"];3763[label="xwv3102",fontsize=16,color="green",shape="box"];3764[label="xwv3103",fontsize=16,color="green",shape="box"];3765[label="xwv3104",fontsize=16,color="green",shape="box"];3766[label="xwv3100",fontsize=16,color="green",shape="box"];3767[label="xwv3101",fontsize=16,color="green",shape="box"];3284[label="error []",fontsize=16,color="red",shape="box"];3285 -> 3237[label="",style="dashed", color="red", weight=0]; 3285[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv1640 xwv1641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv13 xwv14 xwv1644 xwv35)",fontsize=16,color="magenta"];3285 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3286[label="xwv239",fontsize=16,color="green",shape="box"];3287[label="FiniteMap.mkBranch (Pos (Succ xwv242)) xwv243 xwv244 xwv245 xwv246",fontsize=16,color="black",shape="triangle"];3287 -> 3312[label="",style="solid", color="black", weight=3]; 3288[label="xwv240",fontsize=16,color="green",shape="box"];3289[label="xwv241",fontsize=16,color="green",shape="box"];3290[label="xwv3533",fontsize=16,color="green",shape="box"];3303[label="xwv1641",fontsize=16,color="green",shape="box"];3304[label="xwv1640",fontsize=16,color="green",shape="box"];3305[label="xwv35",fontsize=16,color="green",shape="box"];3306 -> 3287[label="",style="dashed", color="red", weight=0]; 3306[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv160 xwv161 xwv163 xwv1643",fontsize=16,color="magenta"];3306 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3307[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3308[label="xwv14",fontsize=16,color="green",shape="box"];3309[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3310[label="xwv13",fontsize=16,color="green",shape="box"];3311[label="xwv1644",fontsize=16,color="green",shape="box"];3312 -> 606[label="",style="dashed", color="red", weight=0]; 3312[label="FiniteMap.mkBranchResult xwv243 xwv244 xwv245 xwv246",fontsize=16,color="magenta"];3312 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3321[label="xwv1643",fontsize=16,color="green",shape="box"];3322[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3323[label="xwv161",fontsize=16,color="green",shape="box"];3324[label="xwv160",fontsize=16,color="green",shape="box"];3325[label="xwv163",fontsize=16,color="green",shape="box"];3326[label="xwv243",fontsize=16,color="green",shape="box"];3327[label="xwv246",fontsize=16,color="green",shape="box"];3328[label="xwv244",fontsize=16,color="green",shape="box"];3329[label="xwv245",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(xwv400), Succ(xwv3000)) -> new_primCmpNat(xwv400, xwv3000) 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(xwv400), Succ(xwv3000)) -> new_primCmpNat(xwv400, xwv3000) 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_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(ty_Maybe, de)) -> new_esEs(xwv281, xwv331, de) new_esEs3(Left(xwv280), Left(xwv330), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(xwv280, xwv330, bcg, bch) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, cf), cg), da), cb) -> new_esEs2(xwv280, xwv330, cf, cg, da) new_esEs3(Right(xwv280), Right(xwv330), bda, app(ty_[], bde)) -> new_esEs1(xwv280, xwv330, bde) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, ef)) -> new_esEs(xwv280, xwv330, ef) new_esEs(Just(xwv280), Just(xwv330), app(ty_[], bc)) -> new_esEs1(xwv280, xwv330, bc) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(app(ty_@2, bag), bah)) -> new_esEs0(xwv282, xwv332, bag, bah) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(app(ty_@2, df), dg)) -> new_esEs0(xwv281, xwv331, df, dg) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, gd), ge), gb, gc) -> new_esEs0(xwv280, xwv330, gd, ge) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, db), dc), cb) -> new_esEs3(xwv280, xwv330, db, dc) new_esEs3(Right(xwv280), Right(xwv330), bda, app(ty_Maybe, bdb)) -> new_esEs(xwv280, xwv330, bdb) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], ce), cb) -> new_esEs1(xwv280, xwv330, ce) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, ff), fg)) -> new_esEs3(xwv280, xwv330, ff, fg) new_esEs(Just(xwv280), Just(xwv330), app(ty_Maybe, h)) -> new_esEs(xwv280, xwv330, h) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(app(ty_Either, bbe), bbf)) -> new_esEs3(xwv282, xwv332, bbe, bbf) new_esEs3(Left(xwv280), Left(xwv330), app(app(ty_@2, bca), bcb), bbh) -> new_esEs0(xwv280, xwv330, bca, bcb) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(xwv281, xwv331, baa, bab, bac) new_esEs3(Right(xwv280), Right(xwv330), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xwv280, xwv330, bea, beb) new_esEs(Just(xwv280), Just(xwv330), app(app(ty_@2, ba), bb)) -> new_esEs0(xwv280, xwv330, ba, bb) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(app(ty_Either, ed), ee)) -> new_esEs3(xwv281, xwv331, ed, ee) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(xwv280, xwv330, gg, gh, ha) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, ca), cb) -> new_esEs(xwv280, xwv330, ca) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(ty_[], dh)) -> new_esEs1(xwv281, xwv331, dh) new_esEs3(Right(xwv280), Right(xwv330), bda, app(app(ty_@2, bdc), bdd)) -> new_esEs0(xwv280, xwv330, bdc, bdd) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, eg), eh)) -> new_esEs0(xwv280, xwv330, eg, eh) new_esEs3(Left(xwv280), Left(xwv330), app(ty_Maybe, bbg), bbh) -> new_esEs(xwv280, xwv330, bbg) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(xwv281, xwv331, ea, eb, ec) new_esEs3(Right(xwv280), Right(xwv330), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv280, xwv330, bdf, bdg, bdh) new_esEs(Just(xwv280), Just(xwv330), app(app(ty_Either, bg), bh)) -> new_esEs3(xwv280, xwv330, bg, bh) new_esEs3(Left(xwv280), Left(xwv330), app(ty_[], bcc), bbh) -> new_esEs1(xwv280, xwv330, bcc) new_esEs(Just(xwv280), Just(xwv330), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(xwv280, xwv330, bd, be, bf) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), fh) -> new_esEs1(xwv281, xwv331, fh) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], fa)) -> new_esEs1(xwv280, xwv330, fa) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_Either, bad), bae), gc) -> new_esEs3(xwv281, xwv331, bad, bae) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], gf), gb, gc) -> new_esEs1(xwv280, xwv330, gf) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(ty_Maybe, baf)) -> new_esEs(xwv282, xwv332, baf) new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(xwv280, xwv330, fb, fc, fd) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xwv282, xwv332, bbb, bbc, bbd) new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, cc), cd), cb) -> new_esEs0(xwv280, xwv330, cc, cd) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_Maybe, he), gc) -> new_esEs(xwv281, xwv331, he) new_esEs3(Left(xwv280), Left(xwv330), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(xwv280, xwv330, bcd, bce, bcf) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_[], hh), gc) -> new_esEs1(xwv281, xwv331, hh) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, ga), gb, gc) -> new_esEs(xwv280, xwv330, ga) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, hb), hc), gb, gc) -> new_esEs3(xwv280, xwv330, hb, hc) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_@2, hf), hg), gc) -> new_esEs0(xwv281, xwv331, hf, hg) new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(ty_[], bba)) -> new_esEs1(xwv282, xwv332, bba) R is empty. Q is empty. 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_esEs(Just(xwv280), Just(xwv330), app(app(ty_@2, ba), bb)) -> new_esEs0(xwv280, xwv330, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(xwv280), Just(xwv330), app(app(ty_Either, bg), bh)) -> new_esEs3(xwv280, xwv330, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_@2, eg), eh)) -> new_esEs0(xwv280, xwv330, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(ty_Either, ff), fg)) -> new_esEs3(xwv280, xwv330, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(xwv280), Just(xwv330), app(ty_[], bc)) -> new_esEs1(xwv280, xwv330, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(xwv280), Just(xwv330), app(ty_Maybe, h)) -> new_esEs(xwv280, xwv330, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(xwv280), Just(xwv330), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(xwv280, xwv330, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_Maybe, ef)) -> new_esEs(xwv280, xwv330, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs2(xwv280, xwv330, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Left(xwv280), Left(xwv330), app(app(ty_@2, bca), bcb), bbh) -> new_esEs0(xwv280, xwv330, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xwv280), Right(xwv330), bda, app(app(ty_@2, bdc), bdd)) -> new_esEs0(xwv280, xwv330, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(app(ty_@2, bag), bah)) -> new_esEs0(xwv282, xwv332, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_@2, gd), ge), gb, gc) -> new_esEs0(xwv280, xwv330, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_@2, hf), hg), gc) -> new_esEs0(xwv281, xwv331, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(app(ty_@2, df), dg)) -> new_esEs0(xwv281, xwv331, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_@2, cc), cd), cb) -> new_esEs0(xwv280, xwv330, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Left(xwv280), Left(xwv330), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(xwv280, xwv330, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xwv280), Right(xwv330), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xwv280, xwv330, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(xwv280), Right(xwv330), bda, app(ty_[], bde)) -> new_esEs1(xwv280, xwv330, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xwv280), Left(xwv330), app(ty_[], bcc), bbh) -> new_esEs1(xwv280, xwv330, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(xwv280), Right(xwv330), bda, app(ty_Maybe, bdb)) -> new_esEs(xwv280, xwv330, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xwv280), Left(xwv330), app(ty_Maybe, bbg), bbh) -> new_esEs(xwv280, xwv330, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(xwv280), Right(xwv330), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv280, xwv330, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(xwv280), Left(xwv330), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(xwv280, xwv330, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(app(ty_Either, bbe), bbf)) -> new_esEs3(xwv282, xwv332, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(ty_Either, bad), bae), gc) -> new_esEs3(xwv281, xwv331, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(ty_Either, hb), hc), gb, gc) -> new_esEs3(xwv280, xwv330, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(ty_Either, db), dc), cb) -> new_esEs3(xwv280, xwv330, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(app(ty_Either, ed), ee)) -> new_esEs3(xwv281, xwv331, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_[], gf), gb, gc) -> new_esEs1(xwv280, xwv330, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_[], hh), gc) -> new_esEs1(xwv281, xwv331, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(ty_[], bba)) -> new_esEs1(xwv282, xwv332, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(ty_Maybe, baf)) -> new_esEs(xwv282, xwv332, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(ty_Maybe, he), gc) -> new_esEs(xwv281, xwv331, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(ty_Maybe, ga), gb, gc) -> new_esEs(xwv280, xwv330, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(xwv281, xwv331, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(xwv280, xwv330, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xwv282, xwv332, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), fh) -> new_esEs1(xwv281, xwv331, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(xwv280, xwv281), :(xwv330, xwv331), app(ty_[], fa)) -> new_esEs1(xwv280, xwv330, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_[], ce), cb) -> new_esEs1(xwv280, xwv330, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(ty_[], dh)) -> new_esEs1(xwv281, xwv331, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(ty_Maybe, de)) -> new_esEs(xwv281, xwv331, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(ty_Maybe, ca), cb) -> new_esEs(xwv280, xwv330, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), app(app(app(ty_@3, cf), cg), da), cb) -> new_esEs2(xwv280, xwv330, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(xwv280, xwv281), @2(xwv330, xwv331), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs2(xwv281, xwv331, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(app(ty_@3, da), db), dc)), cb)) -> new_ltEs3(xwv610, xwv620, da, db, dc) new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(ty_Maybe, cac), cad) -> new_lt(xwv125, xwv127, cac) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_@2, bdh), bea), bah, bcc) -> new_lt2(xwv610, xwv620, bdh, bea) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(app(app(ty_@3, cee), cef), ceg), cdf, cdg) -> new_lt3(xwv102, xwv105, cee, cef, ceg) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(app(ty_@2, ea), eb))) -> new_ltEs2(xwv610, xwv620, ea, eb) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(app(ty_Either, ge), gf))) -> new_ltEs0(xwv611, xwv621, ge, gf) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(app(ty_@3, beb), bec), bed)), bah), bcc)) -> new_lt3(xwv610, xwv620, beb, bec, bed) new_ltEs0(Right(xwv610), Right(xwv620), dd, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs3(xwv610, xwv620, ec, ed, ee) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_@2, bd), be))) -> new_ltEs2(xwv610, xwv620, bd, be) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(app(ty_@2, bcg), bch)), bcc)) -> new_lt2(xwv611, xwv621, bcg, bch) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(app(ty_@2, bbe), bbf)) -> new_ltEs2(xwv612, xwv622, bbe, bbf) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(xwv104, xwv107, cfg, cfh, cga) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(ty_Maybe, gd))) -> new_ltEs(xwv611, xwv621, gd) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs3(xwv611, xwv621, hb, hc, hd) new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_@2, cah), cba), cad) -> new_lt2(xwv125, xwv127, cah, cba) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(app(app(ty_@3, ec), ed), ee))) -> new_ltEs3(xwv610, xwv620, ec, ed, ee) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(ty_Maybe, bcb), bcc) -> new_lt(xwv611, xwv621, bcb) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs3(xwv612, xwv622, bbg, bbh, bca) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(ty_Maybe, cgb), cdg) -> new_lt(xwv103, xwv106, cgb) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(app(ty_@2, gh), ha))) -> new_ltEs2(xwv611, xwv621, gh, ha) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(ty_[], bcf)), bcc)) -> new_lt1(xwv611, xwv621, bcf) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_Either, ba), bb))) -> new_ltEs0(xwv610, xwv620, ba, bb) new_compare21(xwv68, xwv69, False, app(app(ty_Either, bfd), bfe), bfc) -> new_ltEs0(xwv68, xwv69, bfd, bfe) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(ty_Maybe, cfa)) -> new_ltEs(xwv104, xwv107, cfa) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(app(ty_Either, df), dg))) -> new_ltEs0(xwv610, xwv620, df, dg) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(app(ty_@2, bbe), bbf))) -> new_ltEs2(xwv612, xwv622, bbe, bbf) new_compare2(Right(xwv40), Right(xwv300), beh, bfa) -> new_compare22(xwv40, xwv300, new_esEs6(xwv40, xwv300, bfa), beh, bfa) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(app(app(ty_@3, bbg), bbh), bca))) -> new_ltEs3(xwv612, xwv622, bbg, bbh, bca) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(ty_[], gg)) -> new_ltEs1(xwv611, xwv621, gg) new_compare1(Just(xwv40), Just(xwv300), gb) -> new_compare20(xwv40, xwv300, new_esEs4(xwv40, xwv300, gb), gb) new_lt(xwv18, xwv13, bee) -> new_compare1(xwv18, xwv13, bee) new_compare3(@2(xwv40, xwv41), @2(xwv300, xwv301), caa, cab) -> new_compare23(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs7(xwv40, xwv300, caa), new_esEs8(xwv41, xwv301, cab)), caa, cab) new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(app(ty_Either, cbg), cbh)) -> new_ltEs0(xwv126, xwv128, cbg, cbh) new_compare22(xwv75, xwv76, False, bgd, app(app(ty_Either, bgf), bgg)) -> new_ltEs0(xwv75, xwv76, bgf, bgg) new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_@2, fd), ff)) -> new_compare3(xwv40, xwv300, fd, ff) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(app(ty_@2, cec), ced), cdf, cdg) -> new_lt2(xwv102, xwv105, cec, ced) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_@2, bab), bac)), hf)) -> new_lt2(xwv610, xwv620, bab, bac) new_compare20(xwv61, xwv62, False, app(ty_[], ef)) -> new_compare(xwv61, xwv62, ef) new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(ty_Maybe, cbf)) -> new_ltEs(xwv126, xwv128, cbf) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(ty_[], cfd)) -> new_ltEs1(xwv104, xwv107, cfd) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(app(ty_Either, bbb), bbc))) -> new_ltEs0(xwv612, xwv622, bbb, bbc) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(app(ty_@3, bad), bae), baf)), hf)) -> new_lt3(xwv610, xwv620, bad, bae, baf) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(xwv610, xwv620, h) new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(app(ty_@2, ccb), ccc)) -> new_ltEs2(xwv126, xwv128, ccb, ccc) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(ty_Maybe, bba))) -> new_ltEs(xwv612, xwv622, bba) new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(ty_[], cca)) -> new_ltEs1(xwv126, xwv128, cca) new_lt0(xwv18, xwv13, bef, beg) -> new_compare2(xwv18, xwv13, bef, beg) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_Maybe, he)), hf)) -> new_lt(xwv610, xwv620, he) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(app(ty_Either, cdh), cea), cdf, cdg) -> new_lt0(xwv102, xwv105, cdh, cea) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(app(app(ty_@3, bda), bdb), bdc)), bcc)) -> new_lt3(xwv611, xwv621, bda, bdb, bdc) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(ty_Maybe, gd)) -> new_ltEs(xwv611, xwv621, gd) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(app(ty_Either, ge), gf)) -> new_ltEs0(xwv611, xwv621, ge, gf) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(app(ty_@3, bad), bae), baf), hf) -> new_lt3(xwv610, xwv620, bad, bae, baf) new_compare22(xwv75, xwv76, False, bgd, app(app(ty_@2, bha), bhb)) -> new_ltEs2(xwv75, xwv76, bha, bhb) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(app(ty_@3, beb), bec), bed), bah, bcc) -> new_lt3(xwv610, xwv620, beb, bec, bed) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(ty_[], bbd))) -> new_ltEs1(xwv612, xwv622, bbd) new_compare21(xwv68, xwv69, False, app(ty_[], bff), bfc) -> new_ltEs1(xwv68, xwv69, bff) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(app(ty_Either, bcd), bce)), bcc)) -> new_lt0(xwv611, xwv621, bcd, bce) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_[], ce)), cb)) -> new_ltEs1(xwv610, xwv620, ce) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(ty_[], gg))) -> new_ltEs1(xwv611, xwv621, gg) new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(ty_[], cag), cad) -> new_lt1(xwv125, xwv127, cag) new_compare22(xwv75, xwv76, False, bgd, app(ty_[], bgh)) -> new_ltEs1(xwv75, xwv76, bgh) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_[], baa), hf) -> new_lt1(xwv610, xwv620, baa) new_compare22(xwv75, xwv76, False, bgd, app(ty_Maybe, bge)) -> new_ltEs(xwv75, xwv76, bge) new_compare21(xwv68, xwv69, False, app(app(app(ty_@3, bga), bgb), bgc), bfc) -> new_ltEs3(xwv68, xwv69, bga, bgb, bgc) new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_@2, bd), be)) -> new_ltEs2(xwv610, xwv620, bd, be) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(app(app(ty_@3, cgh), cha), chb), cdg) -> new_lt3(xwv103, xwv106, cgh, cha, chb) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_[], bc))) -> new_ltEs1(xwv610, xwv620, bc) new_compare21(xwv68, xwv69, False, app(ty_Maybe, bfb), bfc) -> new_ltEs(xwv68, xwv69, bfb) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(ty_[], ceb), cdf, cdg) -> new_lt1(xwv102, xwv105, ceb) new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs3(xwv126, xwv128, ccd, cce, ccf) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_Maybe, bdd), bah, bcc) -> new_lt(xwv610, xwv620, bdd) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_Either, hg), hh), hf) -> new_lt0(xwv610, xwv620, hg, hh) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(ty_[], dh))) -> new_ltEs1(xwv610, xwv620, dh) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_Either, bde), bdf)), bah), bcc)) -> new_lt0(xwv610, xwv620, bde, bdf) new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(app(app(ty_@3, cbb), cbc), cbd), cad) -> new_lt3(xwv125, xwv127, cbb, cbc, cbd) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_Maybe, bdd)), bah), bcc)) -> new_lt(xwv610, xwv620, bdd) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(app(ty_Either, cgc), cgd), cdg) -> new_lt0(xwv103, xwv106, cgc, cgd) new_primCompAux(xwv40, xwv300, xwv56, app(ty_Maybe, eh)) -> new_compare1(xwv40, xwv300, eh) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_Maybe, ca)), cb)) -> new_ltEs(xwv610, xwv620, ca) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(app(ty_Either, cfb), cfc)) -> new_ltEs0(xwv104, xwv107, cfb, cfc) new_primCompAux(xwv40, xwv300, xwv56, app(app(app(ty_@3, fg), fh), ga)) -> new_compare4(xwv40, xwv300, fg, fh, ga) new_ltEs0(Left(xwv610), Left(xwv620), app(ty_[], ce), cb) -> new_ltEs1(xwv610, xwv620, ce) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_[], baa)), hf)) -> new_lt1(xwv610, xwv620, baa) new_ltEs0(Left(xwv610), Left(xwv620), app(app(ty_@2, cf), cg), cb) -> new_ltEs2(xwv610, xwv620, cf, cg) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(app(ty_@2, cgf), cgg), cdg) -> new_lt2(xwv103, xwv106, cgf, cgg) new_ltEs0(Right(xwv610), Right(xwv620), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(xwv610, xwv620, df, dg) new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_Either, fa), fb)) -> new_compare2(xwv40, xwv300, fa, fb) new_ltEs0(Left(xwv610), Left(xwv620), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(xwv610, xwv620, cc, cd) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(ty_[], bbd)) -> new_ltEs1(xwv612, xwv622, bbd) new_compare22(xwv75, xwv76, False, bgd, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs3(xwv75, xwv76, bhc, bhd, bhe) new_compare4(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), cdb, cdc, cdd) -> new_compare24(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs9(xwv40, xwv300, cdb), new_asAs(new_esEs10(xwv41, xwv301, cdc), new_esEs11(xwv42, xwv302, cdd))), cdb, cdc, cdd) new_lt2(xwv18, xwv13, bhg, bhh) -> new_compare3(xwv18, xwv13, bhg, bhh) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(app(ty_Either, bcd), bce), bcc) -> new_lt0(xwv611, xwv621, bcd, bce) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb)) -> new_ltEs0(xwv610, xwv620, cc, cd) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_@2, bdh), bea)), bah), bcc)) -> new_lt2(xwv610, xwv620, bdh, bea) new_compare(:(xwv40, xwv41), :(xwv300, xwv301), eg) -> new_primCompAux(xwv40, xwv300, new_compare0(xwv41, xwv301, eg), eg) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_@2, bab), bac), hf) -> new_lt2(xwv610, xwv620, bab, bac) new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_Either, ba), bb)) -> new_ltEs0(xwv610, xwv620, ba, bb) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(ty_[], cge), cdg) -> new_lt1(xwv103, xwv106, cge) new_ltEs1(xwv61, xwv62, ef) -> new_compare(xwv61, xwv62, ef) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(ty_[], bcf), bcc) -> new_lt1(xwv611, xwv621, bcf) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(ty_Maybe, bba)) -> new_ltEs(xwv612, xwv622, bba) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(app(ty_@2, gh), ha)) -> new_ltEs2(xwv611, xwv621, gh, ha) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(ty_Maybe, bcb)), bcc)) -> new_lt(xwv611, xwv621, bcb) new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(ty_Maybe, de))) -> new_ltEs(xwv610, xwv620, de) new_primCompAux(xwv40, xwv300, xwv56, app(ty_[], fc)) -> new_compare(xwv40, xwv300, fc) new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_@2, cf), cg)), cb)) -> new_ltEs2(xwv610, xwv620, cf, cg) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(app(ty_Either, bbb), bbc)) -> new_ltEs0(xwv612, xwv622, bbb, bbc) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(app(ty_@2, cfe), cff)) -> new_ltEs2(xwv104, xwv107, cfe, cff) new_ltEs0(Right(xwv610), Right(xwv620), dd, app(ty_Maybe, de)) -> new_ltEs(xwv610, xwv620, de) new_lt3(xwv18, xwv13, ccg, cch, cda) -> new_compare4(xwv18, xwv13, ccg, cch, cda) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs3(xwv611, xwv621, hb, hc, hd) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(app(ty_@2, bcg), bch), bcc) -> new_lt2(xwv611, xwv621, bcg, bch) new_ltEs(Just(xwv610), Just(xwv620), app(ty_Maybe, h)) -> new_ltEs(xwv610, xwv620, h) new_compare(:(xwv40, xwv41), :(xwv300, xwv301), eg) -> new_compare(xwv41, xwv301, eg) new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(app(ty_@3, bf), bg), bh))) -> new_ltEs3(xwv610, xwv620, bf, bg, bh) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_Either, bde), bdf), bah, bcc) -> new_lt0(xwv610, xwv620, bde, bdf) new_ltEs(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs3(xwv610, xwv620, bf, bg, bh) new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_Maybe, he), hf) -> new_lt(xwv610, xwv620, he) new_ltEs0(Left(xwv610), Left(xwv620), app(app(app(ty_@3, da), db), dc), cb) -> new_ltEs3(xwv610, xwv620, da, db, dc) new_ltEs0(Right(xwv610), Right(xwv620), dd, app(app(ty_@2, ea), eb)) -> new_ltEs2(xwv610, xwv620, ea, eb) new_ltEs0(Right(xwv610), Right(xwv620), dd, app(ty_[], dh)) -> new_ltEs1(xwv610, xwv620, dh) new_compare21(xwv68, xwv69, False, app(app(ty_@2, bfg), bfh), bfc) -> new_ltEs2(xwv68, xwv69, bfg, bfh) new_ltEs(Just(xwv610), Just(xwv620), app(ty_[], bc)) -> new_ltEs1(xwv610, xwv620, bc) new_ltEs0(Left(xwv610), Left(xwv620), app(ty_Maybe, ca), cb) -> new_ltEs(xwv610, xwv620, ca) new_compare2(Left(xwv40), Left(xwv300), beh, bfa) -> new_compare21(xwv40, xwv300, new_esEs5(xwv40, xwv300, beh), beh, bfa) new_lt1(xwv18, xwv13, bhf) -> new_compare(xwv18, xwv13, bhf) new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_Either, hg), hh)), hf)) -> new_lt0(xwv610, xwv620, hg, hh) new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_[], bdg)), bah), bcc)) -> new_lt1(xwv610, xwv620, bdg) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(app(app(ty_@3, bda), bdb), bdc), bcc) -> new_lt3(xwv611, xwv621, bda, bdb, bdc) new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_Either, cae), caf), cad) -> new_lt0(xwv125, xwv127, cae, caf) new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(ty_Maybe, cde), cdf, cdg) -> new_lt(xwv102, xwv105, cde) new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_[], bdg), bah, bcc) -> new_lt1(xwv610, xwv620, bdg) The TRS R consists of the following rules: new_ltEs7(Left(xwv610), Left(xwv620), app(app(ty_Either, cc), cd), cb) -> new_ltEs7(xwv610, xwv620, cc, cd) new_ltEs7(Right(xwv610), Left(xwv620), dd, cb) -> False new_ltEs6(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs17(xwv610, xwv620) new_esEs24(Left(xwv280), Left(xwv330), ty_Double, dfb) -> new_esEs14(xwv280, xwv330) new_primCmpInt(Neg(Succ(xwv400)), Pos(xwv300)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare114(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, xwv199, dac, dad, dae) -> new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, xwv199, dac, dad, dae) new_esEs40(xwv281, xwv331, app(app(ty_Either, gbe), gbf)) -> new_esEs24(xwv281, xwv331, gbe, gbf) new_esEs39(xwv280, xwv330, ty_Float) -> new_esEs23(xwv280, xwv330) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs22(xwv75, xwv76, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs15(xwv75, xwv76, bhc, bhd, bhe) new_compare11(Right(xwv40), Left(xwv300), beh, bfa) -> GT new_lt22(xwv610, xwv620, ty_Double) -> new_lt5(xwv610, xwv620) new_pePe(True, xwv210) -> True new_esEs29(xwv103, xwv106, ty_Integer) -> new_esEs19(xwv103, xwv106) new_esEs7(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_ltEs19(xwv611, xwv621, ty_Double) -> new_ltEs18(xwv611, xwv621) new_ltEs19(xwv611, xwv621, ty_@0) -> new_ltEs5(xwv611, xwv621) new_ltEs4(xwv61, xwv62, ty_Integer) -> new_ltEs13(xwv61, xwv62) new_compare6(EQ, GT) -> LT new_ltEs23(xwv126, xwv128, app(ty_Maybe, cbf)) -> new_ltEs6(xwv126, xwv128, cbf) new_esEs30(xwv610, xwv620, ty_Float) -> new_esEs23(xwv610, xwv620) new_esEs34(xwv280, xwv330, ty_@0) -> new_esEs20(xwv280, xwv330) new_esEs40(xwv281, xwv331, ty_@0) -> new_esEs20(xwv281, xwv331) new_lt6(xwv610, xwv620, ty_Ordering) -> new_lt4(xwv610, xwv620) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt6(xwv610, xwv620, app(ty_[], baa)) -> new_lt11(xwv610, xwv620, baa) new_compare110(xwv147, xwv148, False, fgd) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT new_ltEs23(xwv126, xwv128, ty_Float) -> new_ltEs10(xwv126, xwv128) new_esEs6(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_lt22(xwv610, xwv620, app(app(app(ty_@3, beb), bec), bed)) -> new_lt17(xwv610, xwv620, beb, bec, bed) new_esEs7(xwv40, xwv300, app(app(ty_Either, deh), dfa)) -> new_esEs24(xwv40, xwv300, deh, dfa) new_esEs32(xwv280, xwv330, app(ty_Ratio, eeh)) -> new_esEs21(xwv280, xwv330, eeh) new_lt23(xwv125, xwv127, ty_Ordering) -> new_lt4(xwv125, xwv127) new_esEs34(xwv280, xwv330, app(app(ty_Either, fbh), fca)) -> new_esEs24(xwv280, xwv330, fbh, fca) new_ltEs19(xwv611, xwv621, app(app(ty_@2, gh), ha)) -> new_ltEs12(xwv611, xwv621, gh, ha) new_ltEs22(xwv75, xwv76, app(ty_Ratio, eeb)) -> new_ltEs11(xwv75, xwv76, eeb) new_ltEs24(xwv68, xwv69, app(app(ty_Either, bfd), bfe)) -> new_ltEs7(xwv68, xwv69, bfd, bfe) new_primCmpInt(Neg(Succ(xwv400)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv400)) new_esEs26(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Float) -> new_esEs23(xwv280, xwv330) new_esEs5(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_esEs5(xwv40, xwv300, app(ty_Ratio, dcg)) -> new_esEs21(xwv40, xwv300, dcg) new_lt4(xwv18, xwv13) -> new_esEs12(new_compare6(xwv18, xwv13)) new_lt23(xwv125, xwv127, app(ty_[], cag)) -> new_lt11(xwv125, xwv127, cag) new_compare115(xwv161, xwv162, True, fgb, fgc) -> LT new_compare111(xwv177, xwv178, xwv179, xwv180, False, daa, dab) -> GT new_lt6(xwv610, xwv620, ty_Char) -> new_lt18(xwv610, xwv620) new_esEs32(xwv280, xwv330, ty_Bool) -> new_esEs16(xwv280, xwv330) new_esEs9(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_lt19(xwv102, xwv105, ty_Bool) -> new_lt16(xwv102, xwv105) new_esEs36(xwv282, xwv332, ty_Bool) -> new_esEs16(xwv282, xwv332) new_esEs9(xwv40, xwv300, app(ty_Ratio, ead)) -> new_esEs21(xwv40, xwv300, ead) new_esEs27(xwv610, xwv620, ty_Ordering) -> new_esEs13(xwv610, xwv620) new_esEs36(xwv282, xwv332, app(ty_Ratio, fdh)) -> new_esEs21(xwv282, xwv332, fdh) new_esEs6(xwv40, xwv300, app(app(ty_@2, efg), efh)) -> new_esEs17(xwv40, xwv300, efg, efh) new_esEs40(xwv281, xwv331, app(ty_[], gah)) -> new_esEs18(xwv281, xwv331, gah) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Double) -> new_ltEs18(xwv610, xwv620) new_lt6(xwv610, xwv620, ty_@0) -> new_lt7(xwv610, xwv620) new_esEs28(xwv102, xwv105, ty_@0) -> new_esEs20(xwv102, xwv105) new_esEs30(xwv610, xwv620, app(app(ty_Either, bde), bdf)) -> new_esEs24(xwv610, xwv620, bde, bdf) new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_Either, ba), bb)) -> new_ltEs7(xwv610, xwv620, ba, bb) new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False new_ltEs7(Left(xwv610), Left(xwv620), app(app(app(ty_@3, da), db), dc), cb) -> new_ltEs15(xwv610, xwv620, da, db, dc) new_ltEs21(xwv612, xwv622, ty_Ordering) -> new_ltEs16(xwv612, xwv622) new_esEs33(xwv125, xwv127, ty_Ordering) -> new_esEs13(xwv125, xwv127) new_compare5(Char(xwv40), Char(xwv300)) -> new_primCmpNat0(xwv40, xwv300) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_@0) -> new_esEs20(xwv280, xwv330) new_ltEs19(xwv611, xwv621, ty_Bool) -> new_ltEs14(xwv611, xwv621) new_esEs7(xwv40, xwv300, app(ty_[], dec)) -> new_esEs18(xwv40, xwv300, dec) new_esEs39(xwv280, xwv330, app(app(app(ty_@3, fhh), gaa), gab)) -> new_esEs22(xwv280, xwv330, fhh, gaa, gab) new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, dac, dad, dae) -> GT new_ltEs4(xwv61, xwv62, ty_Int) -> new_ltEs8(xwv61, xwv62) new_esEs34(xwv280, xwv330, app(ty_[], fbc)) -> new_esEs18(xwv280, xwv330, fbc) new_esEs30(xwv610, xwv620, app(ty_Maybe, bdd)) -> new_esEs15(xwv610, xwv620, bdd) new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) new_compare14(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Int) -> new_compare12(new_sr(xwv40, xwv301), new_sr(xwv300, xwv41)) new_ltEs4(xwv61, xwv62, app(app(app(ty_@3, bag), bah), bcc)) -> new_ltEs15(xwv61, xwv62, bag, bah, bcc) new_esEs6(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_esEs27(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) new_lt6(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_esEs18([], [], eec) -> True new_esEs33(xwv125, xwv127, ty_Int) -> new_esEs26(xwv125, xwv127) new_esEs28(xwv102, xwv105, app(ty_[], ceb)) -> new_esEs18(xwv102, xwv105, ceb) new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_not(True) -> False new_esEs24(Left(xwv280), Left(xwv330), ty_Char, dfb) -> new_esEs25(xwv280, xwv330) new_lt21(xwv611, xwv621, app(ty_Maybe, bcb)) -> new_lt8(xwv611, xwv621, bcb) new_esEs39(xwv280, xwv330, ty_@0) -> new_esEs20(xwv280, xwv330) new_ltEs21(xwv612, xwv622, ty_@0) -> new_ltEs5(xwv612, xwv622) new_lt21(xwv611, xwv621, app(app(ty_Either, bcd), bce)) -> new_lt9(xwv611, xwv621, bcd, bce) new_lt21(xwv611, xwv621, app(app(ty_@2, bcg), bch)) -> new_lt14(xwv611, xwv621, bcg, bch) new_ltEs22(xwv75, xwv76, app(ty_[], bgh)) -> new_ltEs9(xwv75, xwv76, bgh) new_ltEs7(Left(xwv610), Left(xwv620), ty_Int, cb) -> new_ltEs8(xwv610, xwv620) new_esEs28(xwv102, xwv105, app(app(ty_@2, cec), ced)) -> new_esEs17(xwv102, xwv105, cec, ced) new_esEs27(xwv610, xwv620, ty_Double) -> new_esEs14(xwv610, xwv620) new_primCompAux00(xwv81, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_esEs15(Just(xwv280), Just(xwv330), app(ty_Ratio, ffd)) -> new_esEs21(xwv280, xwv330, ffd) new_lt22(xwv610, xwv620, ty_Integer) -> new_lt15(xwv610, xwv620) new_esEs20(@0, @0) -> True new_esEs10(xwv41, xwv301, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs22(xwv41, xwv301, ebg, ebh, eca) new_esEs39(xwv280, xwv330, app(ty_[], fhf)) -> new_esEs18(xwv280, xwv330, fhf) new_lt9(xwv18, xwv13, bef, beg) -> new_esEs12(new_compare11(xwv18, xwv13, bef, beg)) new_esEs15(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs16(xwv280, xwv330) new_esEs24(Left(xwv280), Left(xwv330), app(app(ty_Either, dgc), dgd), dfb) -> new_esEs24(xwv280, xwv330, dgc, dgd) new_esEs6(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_esEs24(Left(xwv280), Left(xwv330), ty_Int, dfb) -> new_esEs26(xwv280, xwv330) new_esEs10(xwv41, xwv301, ty_Float) -> new_esEs23(xwv41, xwv301) new_ltEs16(GT, EQ) -> False new_ltEs22(xwv75, xwv76, ty_Integer) -> new_ltEs13(xwv75, xwv76) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Ordering) -> new_ltEs16(xwv610, xwv620) new_lt22(xwv610, xwv620, app(app(ty_Either, bde), bdf)) -> new_lt9(xwv610, xwv620, bde, bdf) new_esEs7(xwv40, xwv300, app(app(app(ty_@3, dee), def), deg)) -> new_esEs22(xwv40, xwv300, dee, def, deg) new_lt8(xwv18, xwv13, bee) -> new_esEs12(new_compare9(xwv18, xwv13, bee)) new_esEs11(xwv42, xwv302, ty_Char) -> new_esEs25(xwv42, xwv302) new_ltEs20(xwv104, xwv107, app(app(ty_Either, cfb), cfc)) -> new_ltEs7(xwv104, xwv107, cfb, cfc) new_esEs34(xwv280, xwv330, app(app(ty_@2, fba), fbb)) -> new_esEs17(xwv280, xwv330, fba, fbb) new_esEs39(xwv280, xwv330, app(app(ty_Either, gac), gad)) -> new_esEs24(xwv280, xwv330, gac, gad) new_lt21(xwv611, xwv621, ty_Integer) -> new_lt15(xwv611, xwv621) new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_primEqNat0(Succ(xwv2800), Zero) -> False new_primEqNat0(Zero, Succ(xwv3300)) -> False new_esEs29(xwv103, xwv106, app(app(ty_Either, cgc), cgd)) -> new_esEs24(xwv103, xwv106, cgc, cgd) new_esEs30(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_ltEs21(xwv612, xwv622, app(app(ty_@2, bbe), bbf)) -> new_ltEs12(xwv612, xwv622, bbe, bbf) new_lt22(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Maybe, h)) -> new_ltEs6(xwv610, xwv620, h) new_compare7(xwv40, xwv300, app(ty_Ratio, che)) -> new_compare14(xwv40, xwv300, che) new_lt23(xwv125, xwv127, ty_Int) -> new_lt10(xwv125, xwv127) new_compare10(xwv154, xwv155, True, chc, chd) -> LT new_ltEs20(xwv104, xwv107, ty_Double) -> new_ltEs18(xwv104, xwv107) new_esEs8(xwv41, xwv301, ty_Float) -> new_esEs23(xwv41, xwv301) new_compare113(xwv177, xwv178, xwv179, xwv180, True, xwv182, daa, dab) -> new_compare111(xwv177, xwv178, xwv179, xwv180, True, daa, dab) new_ltEs23(xwv126, xwv128, ty_Char) -> new_ltEs17(xwv126, xwv128) new_ltEs20(xwv104, xwv107, ty_Bool) -> new_ltEs14(xwv104, xwv107) new_ltEs4(xwv61, xwv62, app(ty_Ratio, chh)) -> new_ltEs11(xwv61, xwv62, chh) new_primCompAux00(xwv81, GT) -> GT new_esEs24(Left(xwv280), Left(xwv330), ty_Bool, dfb) -> new_esEs16(xwv280, xwv330) new_esEs24(Left(xwv280), Left(xwv330), app(app(ty_@2, dfd), dfe), dfb) -> new_esEs17(xwv280, xwv330, dfd, dfe) new_ltEs22(xwv75, xwv76, ty_Float) -> new_ltEs10(xwv75, xwv76) new_esEs34(xwv280, xwv330, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_esEs7(xwv40, xwv300, app(ty_Maybe, ddh)) -> new_esEs15(xwv40, xwv300, ddh) new_esEs31(xwv611, xwv621, app(ty_Ratio, edg)) -> new_esEs21(xwv611, xwv621, edg) new_esEs32(xwv280, xwv330, ty_Double) -> new_esEs14(xwv280, xwv330) new_esEs13(LT, LT) -> True new_esEs32(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_lt21(xwv611, xwv621, ty_Bool) -> new_lt16(xwv611, xwv621) new_esEs35(xwv281, xwv331, app(app(ty_Either, fdb), fdc)) -> new_esEs24(xwv281, xwv331, fdb, fdc) new_lt23(xwv125, xwv127, ty_Float) -> new_lt12(xwv125, xwv127) new_esEs28(xwv102, xwv105, app(app(ty_Either, cdh), cea)) -> new_esEs24(xwv102, xwv105, cdh, cea) new_primCmpInt(Pos(Succ(xwv400)), Neg(xwv300)) -> GT new_compare7(xwv40, xwv300, ty_Ordering) -> new_compare6(xwv40, xwv300) new_esEs33(xwv125, xwv127, app(ty_[], cag)) -> new_esEs18(xwv125, xwv127, cag) new_ltEs7(Left(xwv610), Left(xwv620), ty_Float, cb) -> new_ltEs10(xwv610, xwv620) new_ltEs21(xwv612, xwv622, ty_Bool) -> new_ltEs14(xwv612, xwv622) new_ltEs16(LT, LT) -> True new_lt20(xwv103, xwv106, app(ty_Maybe, cgb)) -> new_lt8(xwv103, xwv106, cgb) new_esEs31(xwv611, xwv621, ty_Bool) -> new_esEs16(xwv611, xwv621) new_ltEs24(xwv68, xwv69, ty_Char) -> new_ltEs17(xwv68, xwv69) new_lt23(xwv125, xwv127, ty_Char) -> new_lt18(xwv125, xwv127) new_esEs40(xwv281, xwv331, ty_Ordering) -> new_esEs13(xwv281, xwv331) new_esEs28(xwv102, xwv105, ty_Ordering) -> new_esEs13(xwv102, xwv105) new_esEs35(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs8(xwv41, xwv301, ty_@0) -> new_esEs20(xwv41, xwv301) new_ltEs21(xwv612, xwv622, ty_Double) -> new_ltEs18(xwv612, xwv622) new_compare6(LT, GT) -> LT new_ltEs20(xwv104, xwv107, ty_@0) -> new_ltEs5(xwv104, xwv107) new_primCmpNat0(Zero, Succ(xwv3000)) -> LT new_esEs5(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_compare11(Left(xwv40), Left(xwv300), beh, bfa) -> new_compare29(xwv40, xwv300, new_esEs5(xwv40, xwv300, beh), beh, bfa) new_ltEs22(xwv75, xwv76, ty_Int) -> new_ltEs8(xwv75, xwv76) new_ltEs21(xwv612, xwv622, ty_Integer) -> new_ltEs13(xwv612, xwv622) new_esEs37(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_ltEs10(xwv61, xwv62) -> new_fsEs(new_compare13(xwv61, xwv62)) new_lt19(xwv102, xwv105, app(ty_Maybe, cde)) -> new_lt8(xwv102, xwv105, cde) new_esEs8(xwv41, xwv301, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs22(xwv41, xwv301, eda, edb, edc) new_esEs33(xwv125, xwv127, app(app(ty_Either, cae), caf)) -> new_esEs24(xwv125, xwv127, cae, caf) new_esEs8(xwv41, xwv301, app(ty_[], ecg)) -> new_esEs18(xwv41, xwv301, ecg) new_esEs10(xwv41, xwv301, app(ty_Ratio, ebf)) -> new_esEs21(xwv41, xwv301, ebf) new_primCmpNat0(Succ(xwv400), Zero) -> GT new_ltEs19(xwv611, xwv621, app(app(ty_Either, ge), gf)) -> new_ltEs7(xwv611, xwv621, ge, gf) new_pePe(False, xwv210) -> xwv210 new_esEs6(xwv40, xwv300, app(app(ty_Either, egf), egg)) -> new_esEs24(xwv40, xwv300, egf, egg) new_ltEs23(xwv126, xwv128, ty_Int) -> new_ltEs8(xwv126, xwv128) new_esEs30(xwv610, xwv620, app(app(ty_@2, bdh), bea)) -> new_esEs17(xwv610, xwv620, bdh, bea) new_esEs9(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs33(xwv125, xwv127, app(ty_Ratio, egh)) -> new_esEs21(xwv125, xwv127, egh) new_ltEs23(xwv126, xwv128, app(ty_Ratio, eha)) -> new_ltEs11(xwv126, xwv128, eha) new_compare19(Double(xwv40, Pos(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_compare19(Double(xwv40, Neg(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_esEs28(xwv102, xwv105, ty_Int) -> new_esEs26(xwv102, xwv105) new_compare17(False, False) -> EQ new_esEs10(xwv41, xwv301, app(app(ty_Either, ecb), ecc)) -> new_esEs24(xwv41, xwv301, ecb, ecc) new_esEs31(xwv611, xwv621, app(ty_Maybe, bcb)) -> new_esEs15(xwv611, xwv621, bcb) new_ltEs13(xwv61, xwv62) -> new_fsEs(new_compare16(xwv61, xwv62)) new_esEs27(xwv610, xwv620, app(ty_[], baa)) -> new_esEs18(xwv610, xwv620, baa) new_esEs7(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_lt22(xwv610, xwv620, app(ty_[], bdg)) -> new_lt11(xwv610, xwv620, bdg) new_lt23(xwv125, xwv127, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt17(xwv125, xwv127, cbb, cbc, cbd) new_esEs15(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs25(xwv280, xwv330) new_esEs6(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_ltEs4(xwv61, xwv62, ty_@0) -> new_ltEs5(xwv61, xwv62) new_esEs27(xwv610, xwv620, ty_Bool) -> new_esEs16(xwv610, xwv620) new_esEs24(Left(xwv280), Left(xwv330), app(ty_Ratio, dfg), dfb) -> new_esEs21(xwv280, xwv330, dfg) new_ltEs16(LT, GT) -> True new_esEs4(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_esEs29(xwv103, xwv106, app(ty_[], cge)) -> new_esEs18(xwv103, xwv106, cge) new_esEs15(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs14(xwv280, xwv330) new_esEs13(GT, GT) -> True new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_ltEs6(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs18(xwv610, xwv620) new_lt20(xwv103, xwv106, app(ty_[], cge)) -> new_lt11(xwv103, xwv106, cge) new_esEs8(xwv41, xwv301, app(ty_Ratio, ech)) -> new_esEs21(xwv41, xwv301, ech) new_esEs27(xwv610, xwv620, ty_@0) -> new_esEs20(xwv610, xwv620) new_esEs35(xwv281, xwv331, app(ty_Ratio, fcf)) -> new_esEs21(xwv281, xwv331, fcf) new_esEs6(xwv40, xwv300, app(ty_Maybe, eff)) -> new_esEs15(xwv40, xwv300, eff) new_esEs8(xwv41, xwv301, app(app(ty_Either, edd), ede)) -> new_esEs24(xwv41, xwv301, edd, ede) new_esEs6(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False new_esEs17(@2(xwv280, xwv281), @2(xwv330, xwv331), fha, fhb) -> new_asAs(new_esEs39(xwv280, xwv330, fha), new_esEs40(xwv281, xwv331, fhb)) new_ltEs7(Left(xwv610), Left(xwv620), ty_Integer, cb) -> new_ltEs13(xwv610, xwv620) new_ltEs14(True, True) -> True new_ltEs16(GT, LT) -> False new_esEs9(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_esEs31(xwv611, xwv621, ty_@0) -> new_esEs20(xwv611, xwv621) new_esEs4(xwv40, xwv300, app(app(app(ty_@3, ehh), faa), fab)) -> new_esEs22(xwv40, xwv300, ehh, faa, fab) new_esEs24(Right(xwv280), Right(xwv330), dge, app(ty_Maybe, dgf)) -> new_esEs15(xwv280, xwv330, dgf) new_compare13(Float(xwv40, Pos(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_compare13(Float(xwv40, Neg(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_lt13(xwv18, xwv13, ehb) -> new_esEs12(new_compare14(xwv18, xwv13, ehb)) new_esEs34(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs27(xwv610, xwv620, app(ty_Maybe, he)) -> new_esEs15(xwv610, xwv620, he) new_lt22(xwv610, xwv620, ty_Ordering) -> new_lt4(xwv610, xwv620) new_esEs24(Right(xwv280), Right(xwv330), dge, app(app(ty_Either, dhf), dhg)) -> new_esEs24(xwv280, xwv330, dhf, dhg) new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_ltEs4(xwv61, xwv62, ty_Ordering) -> new_ltEs16(xwv61, xwv62) new_esEs31(xwv611, xwv621, app(app(ty_Either, bcd), bce)) -> new_esEs24(xwv611, xwv621, bcd, bce) new_esEs4(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_esEs36(xwv282, xwv332, ty_Float) -> new_esEs23(xwv282, xwv332) new_esEs7(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs9(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_lt22(xwv610, xwv620, ty_Bool) -> new_lt16(xwv610, xwv620) new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT new_ltEs4(xwv61, xwv62, app(ty_Maybe, chg)) -> new_ltEs6(xwv61, xwv62, chg) new_esEs24(Right(xwv280), Right(xwv330), dge, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs22(xwv280, xwv330, dhc, dhd, dhe) new_ltEs20(xwv104, xwv107, ty_Char) -> new_ltEs17(xwv104, xwv107) new_primMulInt(Pos(xwv400), Pos(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) new_esEs31(xwv611, xwv621, ty_Double) -> new_esEs14(xwv611, xwv621) new_ltEs7(Right(xwv610), Right(xwv620), dd, app(app(ty_Either, df), dg)) -> new_ltEs7(xwv610, xwv620, df, dg) new_esEs13(EQ, GT) -> False new_esEs13(GT, EQ) -> False new_esEs31(xwv611, xwv621, ty_Char) -> new_esEs25(xwv611, xwv621) new_esEs11(xwv42, xwv302, ty_Integer) -> new_esEs19(xwv42, xwv302) new_esEs28(xwv102, xwv105, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs22(xwv102, xwv105, cee, cef, ceg) new_ltEs4(xwv61, xwv62, app(app(ty_@2, gc), hf)) -> new_ltEs12(xwv61, xwv62, gc, hf) new_esEs29(xwv103, xwv106, ty_Bool) -> new_esEs16(xwv103, xwv106) new_esEs38(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) new_ltEs21(xwv612, xwv622, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs15(xwv612, xwv622, bbg, bbh, bca) new_esEs6(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_esEs33(xwv125, xwv127, ty_Float) -> new_esEs23(xwv125, xwv127) new_ltEs9(xwv61, xwv62, ef) -> new_fsEs(new_compare0(xwv61, xwv62, ef)) new_primMulNat0(Succ(xwv4000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv30100)) -> Zero new_esEs15(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs31(xwv611, xwv621, ty_Integer) -> new_esEs19(xwv611, xwv621) new_esEs24(Right(xwv280), Right(xwv330), dge, app(app(ty_@2, dgg), dgh)) -> new_esEs17(xwv280, xwv330, dgg, dgh) new_ltEs4(xwv61, xwv62, ty_Float) -> new_ltEs10(xwv61, xwv62) new_ltEs5(xwv61, xwv62) -> new_fsEs(new_compare8(xwv61, xwv62)) new_ltEs19(xwv611, xwv621, ty_Integer) -> new_ltEs13(xwv611, xwv621) new_lt19(xwv102, xwv105, app(app(ty_Either, cdh), cea)) -> new_lt9(xwv102, xwv105, cdh, cea) new_ltEs18(xwv61, xwv62) -> new_fsEs(new_compare19(xwv61, xwv62)) new_ltEs19(xwv611, xwv621, ty_Char) -> new_ltEs17(xwv611, xwv621) new_esEs31(xwv611, xwv621, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs22(xwv611, xwv621, bda, bdb, bdc) new_fsEs(xwv205) -> new_not(new_esEs13(xwv205, GT)) new_esEs24(Left(xwv280), Right(xwv330), dge, dfb) -> False new_esEs24(Right(xwv280), Left(xwv330), dge, dfb) -> False new_esEs15(Just(xwv280), Just(xwv330), app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs22(xwv280, xwv330, ffe, fff, ffg) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Char) -> new_ltEs17(xwv610, xwv620) new_ltEs6(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs8(xwv610, xwv620) new_esEs34(xwv280, xwv330, ty_Float) -> new_esEs23(xwv280, xwv330) new_esEs30(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) new_esEs30(xwv610, xwv620, app(ty_[], bdg)) -> new_esEs18(xwv610, xwv620, bdg) new_esEs29(xwv103, xwv106, app(ty_Maybe, cgb)) -> new_esEs15(xwv103, xwv106, cgb) new_esEs10(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) new_esEs40(xwv281, xwv331, app(app(app(ty_@3, gbb), gbc), gbd)) -> new_esEs22(xwv281, xwv331, gbb, gbc, gbd) new_compare7(xwv40, xwv300, app(app(ty_Either, fa), fb)) -> new_compare11(xwv40, xwv300, fa, fb) new_lt19(xwv102, xwv105, app(ty_[], ceb)) -> new_lt11(xwv102, xwv105, ceb) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv104, xwv107, app(app(ty_@2, cfe), cff)) -> new_ltEs12(xwv104, xwv107, cfe, cff) new_esEs8(xwv41, xwv301, app(app(ty_@2, ece), ecf)) -> new_esEs17(xwv41, xwv301, ece, ecf) new_esEs32(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs15(Just(xwv280), Just(xwv330), app(app(ty_Either, ffh), fga)) -> new_esEs24(xwv280, xwv330, ffh, fga) new_ltEs16(EQ, EQ) -> True new_esEs39(xwv280, xwv330, ty_Bool) -> new_esEs16(xwv280, xwv330) new_lt23(xwv125, xwv127, ty_Integer) -> new_lt15(xwv125, xwv127) new_esEs24(Left(xwv280), Left(xwv330), ty_@0, dfb) -> new_esEs20(xwv280, xwv330) new_esEs9(xwv40, xwv300, app(app(ty_@2, eaa), eab)) -> new_esEs17(xwv40, xwv300, eaa, eab) new_esEs31(xwv611, xwv621, app(ty_[], bcf)) -> new_esEs18(xwv611, xwv621, bcf) new_ltEs6(Nothing, Just(xwv620), chg) -> True new_ltEs22(xwv75, xwv76, ty_Char) -> new_ltEs17(xwv75, xwv76) new_esEs33(xwv125, xwv127, ty_Char) -> new_esEs25(xwv125, xwv127) new_compare11(Right(xwv40), Right(xwv300), beh, bfa) -> new_compare28(xwv40, xwv300, new_esEs6(xwv40, xwv300, bfa), beh, bfa) new_esEs7(xwv40, xwv300, app(app(ty_@2, dea), deb)) -> new_esEs17(xwv40, xwv300, dea, deb) new_esEs30(xwv610, xwv620, ty_@0) -> new_esEs20(xwv610, xwv620) new_esEs33(xwv125, xwv127, ty_Integer) -> new_esEs19(xwv125, xwv127) new_esEs12(LT) -> True new_ltEs23(xwv126, xwv128, ty_Double) -> new_ltEs18(xwv126, xwv128) new_esEs4(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_esEs35(xwv281, xwv331, ty_Float) -> new_esEs23(xwv281, xwv331) new_compare6(LT, LT) -> EQ new_esEs11(xwv42, xwv302, ty_Float) -> new_esEs23(xwv42, xwv302) new_esEs33(xwv125, xwv127, app(app(ty_@2, cah), cba)) -> new_esEs17(xwv125, xwv127, cah, cba) new_compare113(xwv177, xwv178, xwv179, xwv180, False, xwv182, daa, dab) -> new_compare111(xwv177, xwv178, xwv179, xwv180, xwv182, daa, dab) new_esEs10(xwv41, xwv301, app(app(ty_@2, ebc), ebd)) -> new_esEs17(xwv41, xwv301, ebc, ebd) new_esEs28(xwv102, xwv105, ty_Double) -> new_esEs14(xwv102, xwv105) new_esEs10(xwv41, xwv301, ty_Integer) -> new_esEs19(xwv41, xwv301) new_esEs6(xwv40, xwv300, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs22(xwv40, xwv300, egc, egd, ege) new_ltEs20(xwv104, xwv107, ty_Float) -> new_ltEs10(xwv104, xwv107) new_esEs7(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_esEs5(xwv40, xwv300, app(ty_[], dcf)) -> new_esEs18(xwv40, xwv300, dcf) new_ltEs20(xwv104, xwv107, ty_Ordering) -> new_ltEs16(xwv104, xwv107) new_esEs40(xwv281, xwv331, ty_Double) -> new_esEs14(xwv281, xwv331) new_esEs36(xwv282, xwv332, ty_Ordering) -> new_esEs13(xwv282, xwv332) new_lt11(xwv18, xwv13, bhf) -> new_esEs12(new_compare0(xwv18, xwv13, bhf)) new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_esEs5(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_ltEs20(xwv104, xwv107, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs15(xwv104, xwv107, cfg, cfh, cga) new_compare115(xwv161, xwv162, False, fgb, fgc) -> GT new_ltEs21(xwv612, xwv622, app(ty_Ratio, edh)) -> new_ltEs11(xwv612, xwv622, edh) new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, dac, dad, dae) -> LT new_esEs5(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_ltEs24(xwv68, xwv69, ty_Double) -> new_ltEs18(xwv68, xwv69) new_primMulInt(Neg(xwv400), Neg(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) new_esEs4(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_ltEs19(xwv611, xwv621, ty_Float) -> new_ltEs10(xwv611, xwv621) new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) new_esEs29(xwv103, xwv106, ty_Double) -> new_esEs14(xwv103, xwv106) new_compare25(xwv61, xwv62, True, chf) -> EQ new_esEs32(xwv280, xwv330, app(app(ty_@2, eee), eef)) -> new_esEs17(xwv280, xwv330, eee, eef) new_esEs6(xwv40, xwv300, app(ty_[], ega)) -> new_esEs18(xwv40, xwv300, ega) new_esEs19(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) new_esEs5(xwv40, xwv300, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(xwv40, xwv300, dch, dda, ddb) new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) new_esEs8(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) new_ltEs19(xwv611, xwv621, ty_Ordering) -> new_ltEs16(xwv611, xwv621) new_esEs30(xwv610, xwv620, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs22(xwv610, xwv620, beb, bec, bed) new_esEs39(xwv280, xwv330, app(ty_Maybe, fhc)) -> new_esEs15(xwv280, xwv330, fhc) new_ltEs7(Left(xwv610), Left(xwv620), app(ty_Ratio, fge), cb) -> new_ltEs11(xwv610, xwv620, fge) new_esEs28(xwv102, xwv105, app(ty_Maybe, cde)) -> new_esEs15(xwv102, xwv105, cde) new_esEs11(xwv42, xwv302, app(ty_Ratio, dbb)) -> new_esEs21(xwv42, xwv302, dbb) new_esEs8(xwv41, xwv301, ty_Integer) -> new_esEs19(xwv41, xwv301) new_ltEs19(xwv611, xwv621, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs15(xwv611, xwv621, hb, hc, hd) new_esEs4(xwv40, xwv300, app(ty_Maybe, ehc)) -> new_esEs15(xwv40, xwv300, ehc) new_ltEs4(xwv61, xwv62, ty_Bool) -> new_ltEs14(xwv61, xwv62) new_esEs5(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_esEs32(xwv280, xwv330, app(app(ty_Either, efd), efe)) -> new_esEs24(xwv280, xwv330, efd, efe) new_esEs34(xwv280, xwv330, app(ty_Ratio, fbd)) -> new_esEs21(xwv280, xwv330, fbd) new_esEs29(xwv103, xwv106, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs22(xwv103, xwv106, cgh, cha, chb) new_ltEs4(xwv61, xwv62, app(ty_[], ef)) -> new_ltEs9(xwv61, xwv62, ef) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_ltEs21(xwv612, xwv622, ty_Char) -> new_ltEs17(xwv612, xwv622) new_esEs29(xwv103, xwv106, ty_@0) -> new_esEs20(xwv103, xwv106) new_esEs40(xwv281, xwv331, ty_Bool) -> new_esEs16(xwv281, xwv331) new_esEs24(Right(xwv280), Right(xwv330), dge, app(ty_[], dha)) -> new_esEs18(xwv280, xwv330, dha) new_esEs40(xwv281, xwv331, app(ty_Maybe, gae)) -> new_esEs15(xwv281, xwv331, gae) new_ltEs15(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, bcc) -> new_pePe(new_lt22(xwv610, xwv620, bag), new_asAs(new_esEs30(xwv610, xwv620, bag), new_pePe(new_lt21(xwv611, xwv621, bah), new_asAs(new_esEs31(xwv611, xwv621, bah), new_ltEs21(xwv612, xwv622, bcc))))) new_esEs28(xwv102, xwv105, ty_Bool) -> new_esEs16(xwv102, xwv105) new_esEs32(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) new_esEs24(Left(xwv280), Left(xwv330), ty_Float, dfb) -> new_esEs23(xwv280, xwv330) new_esEs7(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_esEs39(xwv280, xwv330, ty_Double) -> new_esEs14(xwv280, xwv330) new_lt16(xwv18, xwv13) -> new_esEs12(new_compare17(xwv18, xwv13)) new_ltEs7(Right(xwv610), Right(xwv620), dd, app(app(ty_@2, ea), eb)) -> new_ltEs12(xwv610, xwv620, ea, eb) new_esEs11(xwv42, xwv302, app(ty_[], dba)) -> new_esEs18(xwv42, xwv302, dba) new_esEs8(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) new_ltEs7(Left(xwv610), Right(xwv620), dd, cb) -> True new_lt5(xwv18, xwv13) -> new_esEs12(new_compare19(xwv18, xwv13)) new_primMulInt(Pos(xwv400), Neg(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) new_primMulInt(Neg(xwv400), Pos(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) new_esEs4(xwv40, xwv300, app(app(ty_@2, ehd), ehe)) -> new_esEs17(xwv40, xwv300, ehd, ehe) new_esEs12(GT) -> False new_esEs5(xwv40, xwv300, app(ty_Maybe, dcc)) -> new_esEs15(xwv40, xwv300, dcc) new_lt19(xwv102, xwv105, ty_Float) -> new_lt12(xwv102, xwv105) new_esEs12(EQ) -> False new_ltEs19(xwv611, xwv621, app(ty_[], gg)) -> new_ltEs9(xwv611, xwv621, gg) new_lt6(xwv610, xwv620, app(ty_Maybe, he)) -> new_lt8(xwv610, xwv620, he) new_esEs18(:(xwv280, xwv281), :(xwv330, xwv331), eec) -> new_asAs(new_esEs32(xwv280, xwv330, eec), new_esEs18(xwv281, xwv331, eec)) new_ltEs23(xwv126, xwv128, ty_Bool) -> new_ltEs14(xwv126, xwv128) new_esEs40(xwv281, xwv331, app(ty_Ratio, gba)) -> new_esEs21(xwv281, xwv331, gba) new_esEs31(xwv611, xwv621, ty_Ordering) -> new_esEs13(xwv611, xwv621) new_ltEs7(Left(xwv610), Left(xwv620), ty_Double, cb) -> new_ltEs18(xwv610, xwv620) new_ltEs4(xwv61, xwv62, app(app(ty_Either, dd), cb)) -> new_ltEs7(xwv61, xwv62, dd, cb) new_esEs36(xwv282, xwv332, app(ty_[], fdg)) -> new_esEs18(xwv282, xwv332, fdg) new_ltEs23(xwv126, xwv128, ty_Ordering) -> new_ltEs16(xwv126, xwv128) new_esEs30(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) new_ltEs24(xwv68, xwv69, ty_Int) -> new_ltEs8(xwv68, xwv69) new_esEs9(xwv40, xwv300, app(ty_[], eac)) -> new_esEs18(xwv40, xwv300, eac) new_compare17(True, False) -> GT new_esEs14(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_sr0(Integer(xwv400), Integer(xwv3010)) -> Integer(new_primMulInt(xwv400, xwv3010)) new_lt23(xwv125, xwv127, ty_Bool) -> new_lt16(xwv125, xwv127) new_esEs23(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_ltEs24(xwv68, xwv69, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs15(xwv68, xwv69, bga, bgb, bgc) new_ltEs7(Right(xwv610), Right(xwv620), dd, app(ty_Maybe, de)) -> new_ltEs6(xwv610, xwv620, de) new_esEs35(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) new_esEs30(xwv610, xwv620, ty_Double) -> new_esEs14(xwv610, xwv620) new_esEs32(xwv280, xwv330, app(ty_Maybe, eed)) -> new_esEs15(xwv280, xwv330, eed) new_esEs37(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs29(xwv103, xwv106, ty_Int) -> new_esEs26(xwv103, xwv106) new_ltEs7(Left(xwv610), Left(xwv620), ty_@0, cb) -> new_ltEs5(xwv610, xwv620) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Double) -> new_esEs14(xwv280, xwv330) new_lt23(xwv125, xwv127, app(ty_Maybe, cac)) -> new_lt8(xwv125, xwv127, cac) new_esEs11(xwv42, xwv302, app(app(ty_Either, dbf), dbg)) -> new_esEs24(xwv42, xwv302, dbf, dbg) new_lt19(xwv102, xwv105, ty_@0) -> new_lt7(xwv102, xwv105) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Char) -> new_esEs25(xwv280, xwv330) new_ltEs21(xwv612, xwv622, app(ty_Maybe, bba)) -> new_ltEs6(xwv612, xwv622, bba) new_esEs9(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_compare111(xwv177, xwv178, xwv179, xwv180, True, daa, dab) -> LT new_lt20(xwv103, xwv106, ty_Int) -> new_lt10(xwv103, xwv106) new_compare0([], :(xwv300, xwv301), eg) -> LT new_asAs(True, xwv135) -> xwv135 new_lt19(xwv102, xwv105, ty_Ordering) -> new_lt4(xwv102, xwv105) new_esEs22(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), fae, faf, fag) -> new_asAs(new_esEs34(xwv280, xwv330, fae), new_asAs(new_esEs35(xwv281, xwv331, faf), new_esEs36(xwv282, xwv332, fag))) new_esEs9(xwv40, xwv300, app(app(ty_Either, eah), eba)) -> new_esEs24(xwv40, xwv300, eah, eba) new_esEs15(Just(xwv280), Just(xwv330), app(app(ty_@2, ffa), ffb)) -> new_esEs17(xwv280, xwv330, ffa, ffb) new_esEs24(Left(xwv280), Left(xwv330), ty_Integer, dfb) -> new_esEs19(xwv280, xwv330) new_compare10(xwv154, xwv155, False, chc, chd) -> GT new_esEs27(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_esEs15(Just(xwv280), Just(xwv330), app(ty_[], ffc)) -> new_esEs18(xwv280, xwv330, ffc) new_lt19(xwv102, xwv105, ty_Char) -> new_lt18(xwv102, xwv105) new_esEs10(xwv41, xwv301, ty_Ordering) -> new_esEs13(xwv41, xwv301) new_esEs8(xwv41, xwv301, ty_Ordering) -> new_esEs13(xwv41, xwv301) new_ltEs21(xwv612, xwv622, ty_Float) -> new_ltEs10(xwv612, xwv622) new_esEs36(xwv282, xwv332, ty_@0) -> new_esEs20(xwv282, xwv332) new_esEs35(xwv281, xwv331, ty_Ordering) -> new_esEs13(xwv281, xwv331) new_lt6(xwv610, xwv620, app(app(ty_@2, bab), bac)) -> new_lt14(xwv610, xwv620, bab, bac) new_esEs11(xwv42, xwv302, ty_@0) -> new_esEs20(xwv42, xwv302) new_esEs30(xwv610, xwv620, app(ty_Ratio, edf)) -> new_esEs21(xwv610, xwv620, edf) new_esEs39(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) new_ltEs22(xwv75, xwv76, app(app(ty_Either, bgf), bgg)) -> new_ltEs7(xwv75, xwv76, bgf, bgg) new_ltEs23(xwv126, xwv128, app(app(ty_@2, ccb), ccc)) -> new_ltEs12(xwv126, xwv128, ccb, ccc) new_compare13(Float(xwv40, Neg(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_ltEs20(xwv104, xwv107, app(ty_Ratio, ddg)) -> new_ltEs11(xwv104, xwv107, ddg) new_lt20(xwv103, xwv106, ty_Double) -> new_lt5(xwv103, xwv106) new_lt21(xwv611, xwv621, app(ty_[], bcf)) -> new_lt11(xwv611, xwv621, bcf) new_esEs31(xwv611, xwv621, app(app(ty_@2, bcg), bch)) -> new_esEs17(xwv611, xwv621, bcg, bch) new_esEs36(xwv282, xwv332, app(app(ty_Either, fed), fee)) -> new_esEs24(xwv282, xwv332, fed, fee) new_primCmpInt(Pos(Succ(xwv400)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv400), xwv300) new_lt19(xwv102, xwv105, ty_Int) -> new_lt10(xwv102, xwv105) new_esEs10(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) new_primCompAux00(xwv81, EQ) -> xwv81 new_compare0([], [], eg) -> EQ new_esEs30(xwv610, xwv620, ty_Bool) -> new_esEs16(xwv610, xwv620) new_sr(xwv40, xwv301) -> new_primMulInt(xwv40, xwv301) new_lt21(xwv611, xwv621, ty_@0) -> new_lt7(xwv611, xwv621) new_esEs35(xwv281, xwv331, app(app(ty_@2, fcc), fcd)) -> new_esEs17(xwv281, xwv331, fcc, fcd) new_ltEs21(xwv612, xwv622, app(app(ty_Either, bbb), bbc)) -> new_ltEs7(xwv612, xwv622, bbb, bbc) new_ltEs16(GT, GT) -> True new_ltEs7(Left(xwv610), Left(xwv620), app(ty_[], ce), cb) -> new_ltEs9(xwv610, xwv620, ce) new_esEs33(xwv125, xwv127, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs22(xwv125, xwv127, cbb, cbc, cbd) new_esEs15(Nothing, Just(xwv330), feg) -> False new_esEs15(Just(xwv280), Nothing, feg) -> False new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Float) -> new_ltEs10(xwv610, xwv620) new_esEs27(xwv610, xwv620, ty_Float) -> new_esEs23(xwv610, xwv620) new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Ratio, dcb)) -> new_ltEs11(xwv610, xwv620, dcb) new_primMulNat0(Zero, Zero) -> Zero new_esEs5(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs15(Nothing, Nothing, feg) -> True new_lt19(xwv102, xwv105, ty_Double) -> new_lt5(xwv102, xwv105) new_esEs15(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs20(xwv280, xwv330) new_ltEs22(xwv75, xwv76, ty_Double) -> new_ltEs18(xwv75, xwv76) new_compare6(GT, GT) -> EQ new_lt6(xwv610, xwv620, ty_Integer) -> new_lt15(xwv610, xwv620) new_esEs8(xwv41, xwv301, ty_Double) -> new_esEs14(xwv41, xwv301) new_compare7(xwv40, xwv300, ty_Char) -> new_compare5(xwv40, xwv300) new_compare6(EQ, EQ) -> EQ new_esEs10(xwv41, xwv301, ty_Double) -> new_esEs14(xwv41, xwv301) new_primMulNat0(Succ(xwv4000), Succ(xwv30100)) -> new_primPlusNat0(new_primMulNat0(xwv4000, Succ(xwv30100)), Succ(xwv30100)) new_ltEs17(xwv61, xwv62) -> new_fsEs(new_compare5(xwv61, xwv62)) new_esEs29(xwv103, xwv106, ty_Ordering) -> new_esEs13(xwv103, xwv106) new_esEs36(xwv282, xwv332, app(app(ty_@2, fde), fdf)) -> new_esEs17(xwv282, xwv332, fde, fdf) new_ltEs7(Left(xwv610), Left(xwv620), ty_Bool, cb) -> new_ltEs14(xwv610, xwv620) new_esEs11(xwv42, xwv302, app(app(ty_@2, dag), dah)) -> new_esEs17(xwv42, xwv302, dag, dah) new_compare19(Double(xwv40, Neg(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_ltEs7(Right(xwv610), Right(xwv620), dd, app(ty_[], dh)) -> new_ltEs9(xwv610, xwv620, dh) new_esEs4(xwv40, xwv300, app(ty_[], ehf)) -> new_esEs18(xwv40, xwv300, ehf) new_esEs31(xwv611, xwv621, ty_Int) -> new_esEs26(xwv611, xwv621) new_ltEs20(xwv104, xwv107, ty_Integer) -> new_ltEs13(xwv104, xwv107) new_esEs32(xwv280, xwv330, app(app(app(ty_@3, efa), efb), efc)) -> new_esEs22(xwv280, xwv330, efa, efb, efc) new_compare15(@2(xwv40, xwv41), @2(xwv300, xwv301), caa, cab) -> new_compare27(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs7(xwv40, xwv300, caa), new_esEs8(xwv41, xwv301, cab)), caa, cab) new_lt20(xwv103, xwv106, app(app(ty_Either, cgc), cgd)) -> new_lt9(xwv103, xwv106, cgc, cgd) new_esEs15(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs26(xwv280, xwv330) new_ltEs20(xwv104, xwv107, app(ty_Maybe, cfa)) -> new_ltEs6(xwv104, xwv107, cfa) new_ltEs19(xwv611, xwv621, app(ty_Ratio, dca)) -> new_ltEs11(xwv611, xwv621, dca) new_lt12(xwv18, xwv13) -> new_esEs12(new_compare13(xwv18, xwv13)) new_esEs6(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs9(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_esEs34(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) new_lt20(xwv103, xwv106, ty_Ordering) -> new_lt4(xwv103, xwv106) new_lt20(xwv103, xwv106, app(ty_Ratio, ddf)) -> new_lt13(xwv103, xwv106, ddf) new_esEs40(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) new_ltEs14(False, True) -> True new_esEs7(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_esEs32(xwv280, xwv330, app(ty_[], eeg)) -> new_esEs18(xwv280, xwv330, eeg) new_ltEs20(xwv104, xwv107, app(ty_[], cfd)) -> new_ltEs9(xwv104, xwv107, cfd) new_lt23(xwv125, xwv127, app(app(ty_@2, cah), cba)) -> new_lt14(xwv125, xwv127, cah, cba) new_esEs36(xwv282, xwv332, app(ty_Maybe, fdd)) -> new_esEs15(xwv282, xwv332, fdd) new_esEs28(xwv102, xwv105, ty_Char) -> new_esEs25(xwv102, xwv105) new_esEs27(xwv610, xwv620, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs22(xwv610, xwv620, bad, bae, baf) new_compare7(xwv40, xwv300, app(ty_[], fc)) -> new_compare0(xwv40, xwv300, fc) new_esEs32(xwv280, xwv330, ty_Float) -> new_esEs23(xwv280, xwv330) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Bool) -> new_esEs16(xwv280, xwv330) new_ltEs19(xwv611, xwv621, app(ty_Maybe, gd)) -> new_ltEs6(xwv611, xwv621, gd) new_ltEs22(xwv75, xwv76, app(app(ty_@2, bha), bhb)) -> new_ltEs12(xwv75, xwv76, bha, bhb) new_compare6(EQ, LT) -> GT new_compare27(xwv125, xwv126, xwv127, xwv128, True, cbe, cad) -> EQ new_lt19(xwv102, xwv105, app(ty_Ratio, dde)) -> new_lt13(xwv102, xwv105, dde) new_lt21(xwv611, xwv621, ty_Ordering) -> new_lt4(xwv611, xwv621) new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False new_esEs15(Just(xwv280), Just(xwv330), app(ty_Maybe, feh)) -> new_esEs15(xwv280, xwv330, feh) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Int) -> new_ltEs8(xwv610, xwv620) new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_esEs39(xwv280, xwv330, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_esEs35(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) new_compare9(Nothing, Just(xwv300), gb) -> LT new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Int) -> new_esEs26(xwv280, xwv330) new_lt6(xwv610, xwv620, app(app(ty_Either, hg), hh)) -> new_lt9(xwv610, xwv620, hg, hh) new_esEs29(xwv103, xwv106, ty_Char) -> new_esEs25(xwv103, xwv106) new_esEs5(xwv40, xwv300, app(app(ty_Either, ddc), ddd)) -> new_esEs24(xwv40, xwv300, ddc, ddd) new_ltEs4(xwv61, xwv62, ty_Char) -> new_ltEs17(xwv61, xwv62) new_lt14(xwv18, xwv13, bhg, bhh) -> new_esEs12(new_compare15(xwv18, xwv13, bhg, bhh)) new_lt20(xwv103, xwv106, ty_@0) -> new_lt7(xwv103, xwv106) new_ltEs21(xwv612, xwv622, app(ty_[], bbd)) -> new_ltEs9(xwv612, xwv622, bbd) new_lt22(xwv610, xwv620, app(app(ty_@2, bdh), bea)) -> new_lt14(xwv610, xwv620, bdh, bea) new_esEs29(xwv103, xwv106, app(app(ty_@2, cgf), cgg)) -> new_esEs17(xwv103, xwv106, cgf, cgg) new_esEs32(xwv280, xwv330, ty_@0) -> new_esEs20(xwv280, xwv330) new_ltEs7(Left(xwv610), Left(xwv620), ty_Ordering, cb) -> new_ltEs16(xwv610, xwv620) new_compare7(xwv40, xwv300, ty_Double) -> new_compare19(xwv40, xwv300) new_esEs16(True, True) -> True new_ltEs6(Nothing, Nothing, chg) -> True new_ltEs24(xwv68, xwv69, app(ty_Ratio, fgh)) -> new_ltEs11(xwv68, xwv69, fgh) new_esEs4(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_lt6(xwv610, xwv620, ty_Bool) -> new_lt16(xwv610, xwv620) new_esEs10(xwv41, xwv301, app(ty_[], ebe)) -> new_esEs18(xwv41, xwv301, ebe) new_compare28(xwv75, xwv76, False, bgd, eea) -> new_compare115(xwv75, xwv76, new_ltEs22(xwv75, xwv76, eea), bgd, eea) new_compare17(False, True) -> LT new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False new_esEs5(xwv40, xwv300, app(app(ty_@2, dcd), dce)) -> new_esEs17(xwv40, xwv300, dcd, dce) new_ltEs6(Just(xwv610), Nothing, chg) -> False new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) new_esEs11(xwv42, xwv302, ty_Ordering) -> new_esEs13(xwv42, xwv302) new_esEs7(xwv40, xwv300, app(ty_Ratio, ded)) -> new_esEs21(xwv40, xwv300, ded) new_esEs13(LT, GT) -> False new_esEs13(GT, LT) -> False new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(xwv75, xwv76, ty_Ordering) -> new_ltEs16(xwv75, xwv76) new_compare17(True, True) -> EQ new_ltEs7(Left(xwv610), Left(xwv620), ty_Char, cb) -> new_ltEs17(xwv610, xwv620) new_esEs11(xwv42, xwv302, ty_Int) -> new_esEs26(xwv42, xwv302) new_esEs10(xwv41, xwv301, ty_Bool) -> new_esEs16(xwv41, xwv301) new_esEs5(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_primCompAux0(xwv40, xwv300, xwv56, eg) -> new_primCompAux00(xwv56, new_compare7(xwv40, xwv300, eg)) new_esEs36(xwv282, xwv332, ty_Integer) -> new_esEs19(xwv282, xwv332) new_ltEs24(xwv68, xwv69, ty_Float) -> new_ltEs10(xwv68, xwv69) new_esEs35(xwv281, xwv331, app(ty_[], fce)) -> new_esEs18(xwv281, xwv331, fce) new_ltEs24(xwv68, xwv69, app(app(ty_@2, bfg), bfh)) -> new_ltEs12(xwv68, xwv69, bfg, bfh) new_esEs34(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_esEs27(xwv610, xwv620, app(ty_Ratio, dbh)) -> new_esEs21(xwv610, xwv620, dbh) new_ltEs7(Right(xwv610), Right(xwv620), dd, app(ty_Ratio, fgf)) -> new_ltEs11(xwv610, xwv620, fgf) new_esEs6(xwv40, xwv300, app(ty_Ratio, egb)) -> new_esEs21(xwv40, xwv300, egb) new_compare9(Just(xwv40), Nothing, gb) -> GT new_esEs33(xwv125, xwv127, ty_Bool) -> new_esEs16(xwv125, xwv127) new_compare18(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), cdb, cdc, cdd) -> new_compare26(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs9(xwv40, xwv300, cdb), new_asAs(new_esEs10(xwv41, xwv301, cdc), new_esEs11(xwv42, xwv302, cdd))), cdb, cdc, cdd) new_esEs8(xwv41, xwv301, ty_Bool) -> new_esEs16(xwv41, xwv301) new_compare16(Integer(xwv40), Integer(xwv300)) -> new_primCmpInt(xwv40, xwv300) new_esEs28(xwv102, xwv105, ty_Integer) -> new_esEs19(xwv102, xwv105) new_lt10(xwv18, xwv13) -> new_esEs12(new_compare12(xwv18, xwv13)) new_esEs35(xwv281, xwv331, ty_Bool) -> new_esEs16(xwv281, xwv331) new_compare13(Float(xwv40, Pos(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_ltEs7(Left(xwv610), Left(xwv620), app(app(ty_@2, cf), cg), cb) -> new_ltEs12(xwv610, xwv620, cf, cg) new_not(False) -> True new_esEs9(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_esEs15(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs23(xwv280, xwv330) new_lt19(xwv102, xwv105, ty_Integer) -> new_lt15(xwv102, xwv105) new_lt21(xwv611, xwv621, ty_Double) -> new_lt5(xwv611, xwv621) new_ltEs8(xwv61, xwv62) -> new_fsEs(new_compare12(xwv61, xwv62)) new_ltEs23(xwv126, xwv128, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs15(xwv126, xwv128, ccd, cce, ccf) new_lt15(xwv18, xwv13) -> new_esEs12(new_compare16(xwv18, xwv13)) new_ltEs24(xwv68, xwv69, app(ty_Maybe, bfb)) -> new_ltEs6(xwv68, xwv69, bfb) new_esEs24(Left(xwv280), Left(xwv330), app(ty_Maybe, dfc), dfb) -> new_esEs15(xwv280, xwv330, dfc) new_esEs31(xwv611, xwv621, ty_Float) -> new_esEs23(xwv611, xwv621) new_compare0(:(xwv40, xwv41), [], eg) -> GT new_esEs33(xwv125, xwv127, ty_@0) -> new_esEs20(xwv125, xwv127) new_esEs32(xwv280, xwv330, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) new_ltEs24(xwv68, xwv69, ty_Bool) -> new_ltEs14(xwv68, xwv69) new_ltEs24(xwv68, xwv69, ty_Ordering) -> new_ltEs16(xwv68, xwv69) new_ltEs6(Just(xwv610), Just(xwv620), app(ty_[], bc)) -> new_ltEs9(xwv610, xwv620, bc) new_esEs4(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_compare14(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Integer) -> new_compare16(new_sr0(xwv40, xwv301), new_sr0(xwv300, xwv41)) new_lt6(xwv610, xwv620, app(ty_Ratio, dbh)) -> new_lt13(xwv610, xwv620, dbh) new_esEs10(xwv41, xwv301, ty_@0) -> new_esEs20(xwv41, xwv301) new_lt7(xwv18, xwv13) -> new_esEs12(new_compare8(xwv18, xwv13)) new_esEs4(xwv40, xwv300, app(app(ty_Either, fac), fad)) -> new_esEs24(xwv40, xwv300, fac, fad) new_compare7(xwv40, xwv300, ty_Integer) -> new_compare16(xwv40, xwv300) new_lt21(xwv611, xwv621, app(app(app(ty_@3, bda), bdb), bdc)) -> new_lt17(xwv611, xwv621, bda, bdb, bdc) new_lt22(xwv610, xwv620, ty_Char) -> new_lt18(xwv610, xwv620) new_lt20(xwv103, xwv106, ty_Integer) -> new_lt15(xwv103, xwv106) new_ltEs12(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, hf) -> new_pePe(new_lt6(xwv610, xwv620, gc), new_asAs(new_esEs27(xwv610, xwv620, gc), new_ltEs19(xwv611, xwv621, hf))) new_esEs29(xwv103, xwv106, app(ty_Ratio, ddf)) -> new_esEs21(xwv103, xwv106, ddf) new_compare7(xwv40, xwv300, ty_Int) -> new_compare12(xwv40, xwv300) new_ltEs6(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs5(xwv610, xwv620) new_ltEs11(xwv61, xwv62, chh) -> new_fsEs(new_compare14(xwv61, xwv62, chh)) new_ltEs21(xwv612, xwv622, ty_Int) -> new_ltEs8(xwv612, xwv622) new_esEs33(xwv125, xwv127, app(ty_Maybe, cac)) -> new_esEs15(xwv125, xwv127, cac) new_esEs36(xwv282, xwv332, app(app(app(ty_@3, fea), feb), fec)) -> new_esEs22(xwv282, xwv332, fea, feb, fec) new_esEs10(xwv41, xwv301, app(ty_Maybe, ebb)) -> new_esEs15(xwv41, xwv301, ebb) new_esEs4(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_esEs36(xwv282, xwv332, ty_Int) -> new_esEs26(xwv282, xwv332) new_esEs9(xwv40, xwv300, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs22(xwv40, xwv300, eae, eaf, eag) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Bool) -> new_ltEs14(xwv610, xwv620) new_compare27(xwv125, xwv126, xwv127, xwv128, False, cbe, cad) -> new_compare113(xwv125, xwv126, xwv127, xwv128, new_lt23(xwv125, xwv127, cbe), new_asAs(new_esEs33(xwv125, xwv127, cbe), new_ltEs23(xwv126, xwv128, cad)), cbe, cad) new_esEs40(xwv281, xwv331, app(app(ty_@2, gaf), gag)) -> new_esEs17(xwv281, xwv331, gaf, gag) new_lt23(xwv125, xwv127, ty_Double) -> new_lt5(xwv125, xwv127) new_esEs35(xwv281, xwv331, app(ty_Maybe, fcb)) -> new_esEs15(xwv281, xwv331, fcb) new_esEs27(xwv610, xwv620, app(app(ty_Either, hg), hh)) -> new_esEs24(xwv610, xwv620, hg, hh) new_esEs33(xwv125, xwv127, ty_Double) -> new_esEs14(xwv125, xwv127) new_lt23(xwv125, xwv127, app(ty_Ratio, egh)) -> new_lt13(xwv125, xwv127, egh) new_compare7(xwv40, xwv300, ty_@0) -> new_compare8(xwv40, xwv300) new_esEs6(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_compare7(xwv40, xwv300, ty_Bool) -> new_compare17(xwv40, xwv300) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(xwv42, xwv302, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs22(xwv42, xwv302, dbc, dbd, dbe) new_lt20(xwv103, xwv106, ty_Bool) -> new_lt16(xwv103, xwv106) new_compare0(:(xwv40, xwv41), :(xwv300, xwv301), eg) -> new_primCompAux0(xwv40, xwv300, new_compare0(xwv41, xwv301, eg), eg) new_esEs8(xwv41, xwv301, app(ty_Maybe, ecd)) -> new_esEs15(xwv41, xwv301, ecd) new_esEs4(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs24(Right(xwv280), Right(xwv330), dge, app(ty_Ratio, dhb)) -> new_esEs21(xwv280, xwv330, dhb) new_esEs36(xwv282, xwv332, ty_Double) -> new_esEs14(xwv282, xwv332) new_ltEs24(xwv68, xwv69, ty_@0) -> new_ltEs5(xwv68, xwv69) new_ltEs22(xwv75, xwv76, ty_Bool) -> new_ltEs14(xwv75, xwv76) new_lt6(xwv610, xwv620, app(app(app(ty_@3, bad), bae), baf)) -> new_lt17(xwv610, xwv620, bad, bae, baf) new_esEs30(xwv610, xwv620, ty_Ordering) -> new_esEs13(xwv610, xwv620) new_esEs9(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_esEs18(:(xwv280, xwv281), [], eec) -> False new_esEs18([], :(xwv330, xwv331), eec) -> False new_esEs36(xwv282, xwv332, ty_Char) -> new_esEs25(xwv282, xwv332) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_Integer) -> new_ltEs13(xwv610, xwv620) new_esEs39(xwv280, xwv330, app(app(ty_@2, fhd), fhe)) -> new_esEs17(xwv280, xwv330, fhd, fhe) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt21(xwv611, xwv621, ty_Float) -> new_lt12(xwv611, xwv621) new_esEs27(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) new_esEs24(Right(xwv280), Right(xwv330), dge, ty_Integer) -> new_esEs19(xwv280, xwv330) new_ltEs14(False, False) -> True new_compare7(xwv40, xwv300, app(app(ty_@2, fd), ff)) -> new_compare15(xwv40, xwv300, fd, ff) new_compare26(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, True, ceh, cdf, cdg) -> EQ new_lt22(xwv610, xwv620, ty_Int) -> new_lt10(xwv610, xwv620) new_esEs34(xwv280, xwv330, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs22(xwv280, xwv330, fbe, fbf, fbg) new_compare29(xwv68, xwv69, True, fgg, bfc) -> EQ new_primCmpNat0(Succ(xwv400), Succ(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_lt22(xwv610, xwv620, ty_@0) -> new_lt7(xwv610, xwv620) new_esEs25(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) new_lt6(xwv610, xwv620, ty_Int) -> new_lt10(xwv610, xwv620) new_esEs35(xwv281, xwv331, ty_Double) -> new_esEs14(xwv281, xwv331) new_compare6(LT, EQ) -> LT new_esEs16(False, False) -> True new_esEs40(xwv281, xwv331, ty_Float) -> new_esEs23(xwv281, xwv331) new_esEs28(xwv102, xwv105, ty_Float) -> new_esEs23(xwv102, xwv105) new_compare11(Left(xwv40), Right(xwv300), beh, bfa) -> LT new_lt20(xwv103, xwv106, app(app(ty_@2, cgf), cgg)) -> new_lt14(xwv103, xwv106, cgf, cgg) new_ltEs23(xwv126, xwv128, app(ty_[], cca)) -> new_ltEs9(xwv126, xwv128, cca) new_compare25(xwv61, xwv62, False, chf) -> new_compare110(xwv61, xwv62, new_ltEs4(xwv61, xwv62, chf), chf) new_lt21(xwv611, xwv621, app(ty_Ratio, edg)) -> new_lt13(xwv611, xwv621, edg) new_esEs39(xwv280, xwv330, app(ty_Ratio, fhg)) -> new_esEs21(xwv280, xwv330, fhg) new_esEs27(xwv610, xwv620, app(app(ty_@2, bab), bac)) -> new_esEs17(xwv610, xwv620, bab, bac) new_compare7(xwv40, xwv300, app(ty_Maybe, eh)) -> new_compare9(xwv40, xwv300, eh) new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_@2, bd), be)) -> new_ltEs12(xwv610, xwv620, bd, be) new_compare12(xwv4, xwv30) -> new_primCmpInt(xwv4, xwv30) new_ltEs22(xwv75, xwv76, ty_@0) -> new_ltEs5(xwv75, xwv76) new_ltEs6(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs15(xwv610, xwv620, bf, bg, bh) new_ltEs20(xwv104, xwv107, ty_Int) -> new_ltEs8(xwv104, xwv107) new_compare9(Just(xwv40), Just(xwv300), gb) -> new_compare25(xwv40, xwv300, new_esEs4(xwv40, xwv300, gb), gb) new_esEs9(xwv40, xwv300, app(ty_Maybe, dhh)) -> new_esEs15(xwv40, xwv300, dhh) new_lt20(xwv103, xwv106, ty_Char) -> new_lt18(xwv103, xwv106) new_ltEs24(xwv68, xwv69, app(ty_[], bff)) -> new_ltEs9(xwv68, xwv69, bff) new_esEs11(xwv42, xwv302, ty_Double) -> new_esEs14(xwv42, xwv302) new_ltEs6(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs14(xwv610, xwv620) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs6(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs16(xwv610, xwv620) new_esEs34(xwv280, xwv330, ty_Double) -> new_esEs14(xwv280, xwv330) new_compare8(@0, @0) -> EQ new_lt23(xwv125, xwv127, app(app(ty_Either, cae), caf)) -> new_lt9(xwv125, xwv127, cae, caf) new_ltEs6(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs10(xwv610, xwv620) new_ltEs23(xwv126, xwv128, ty_Integer) -> new_ltEs13(xwv126, xwv128) new_compare19(Double(xwv40, Pos(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_lt22(xwv610, xwv620, app(ty_Ratio, edf)) -> new_lt13(xwv610, xwv620, edf) new_esEs24(Left(xwv280), Left(xwv330), ty_Ordering, dfb) -> new_esEs13(xwv280, xwv330) new_esEs5(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_esEs34(xwv280, xwv330, app(ty_Maybe, fah)) -> new_esEs15(xwv280, xwv330, fah) new_lt18(xwv18, xwv13) -> new_esEs12(new_compare5(xwv18, xwv13)) new_primEqNat0(Zero, Zero) -> True new_esEs7(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_ltEs7(Right(xwv610), Right(xwv620), dd, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs15(xwv610, xwv620, ec, ed, ee) new_compare6(GT, LT) -> GT new_lt19(xwv102, xwv105, app(app(app(ty_@3, cee), cef), ceg)) -> new_lt17(xwv102, xwv105, cee, cef, ceg) new_esEs29(xwv103, xwv106, ty_Float) -> new_esEs23(xwv103, xwv106) new_compare6(GT, EQ) -> GT new_ltEs23(xwv126, xwv128, ty_@0) -> new_ltEs5(xwv126, xwv128) new_esEs21(:%(xwv280, xwv281), :%(xwv330, xwv331), fef) -> new_asAs(new_esEs37(xwv280, xwv330, fef), new_esEs38(xwv281, xwv331, fef)) new_ltEs23(xwv126, xwv128, app(app(ty_Either, cbg), cbh)) -> new_ltEs7(xwv126, xwv128, cbg, cbh) new_esEs38(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_ltEs24(xwv68, xwv69, ty_Integer) -> new_ltEs13(xwv68, xwv69) new_esEs24(Left(xwv280), Left(xwv330), app(app(app(ty_@3, dfh), dga), dgb), dfb) -> new_esEs22(xwv280, xwv330, dfh, dga, dgb) new_compare110(xwv147, xwv148, True, fgd) -> LT new_ltEs14(True, False) -> False new_lt21(xwv611, xwv621, ty_Char) -> new_lt18(xwv611, xwv621) new_esEs13(EQ, EQ) -> True new_compare26(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, cdg) -> new_compare114(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, new_lt19(xwv102, xwv105, ceh), new_asAs(new_esEs28(xwv102, xwv105, ceh), new_pePe(new_lt20(xwv103, xwv106, cdf), new_asAs(new_esEs29(xwv103, xwv106, cdf), new_ltEs20(xwv104, xwv107, cdg)))), ceh, cdf, cdg) new_esEs4(xwv40, xwv300, app(ty_Ratio, ehg)) -> new_esEs21(xwv40, xwv300, ehg) new_esEs15(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs13(xwv280, xwv330) new_ltEs7(Left(xwv610), Left(xwv620), app(ty_Maybe, ca), cb) -> new_ltEs6(xwv610, xwv620, ca) new_compare29(xwv68, xwv69, False, fgg, bfc) -> new_compare10(xwv68, xwv69, new_ltEs24(xwv68, xwv69, fgg), fgg, bfc) new_compare9(Nothing, Nothing, gb) -> EQ new_asAs(False, xwv135) -> False new_compare114(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, xwv199, dac, dad, dae) -> new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, dac, dad, dae) new_esEs24(Left(xwv280), Left(xwv330), app(ty_[], dff), dfb) -> new_esEs18(xwv280, xwv330, dff) new_esEs13(LT, EQ) -> False new_esEs13(EQ, LT) -> False new_ltEs6(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs13(xwv610, xwv620) new_lt22(xwv610, xwv620, app(ty_Maybe, bdd)) -> new_lt8(xwv610, xwv620, bdd) new_ltEs7(Right(xwv610), Right(xwv620), dd, ty_@0) -> new_ltEs5(xwv610, xwv620) new_lt20(xwv103, xwv106, app(app(app(ty_@3, cgh), cha), chb)) -> new_lt17(xwv103, xwv106, cgh, cha, chb) new_lt21(xwv611, xwv621, ty_Int) -> new_lt10(xwv611, xwv621) new_compare28(xwv75, xwv76, True, bgd, eea) -> EQ new_ltEs19(xwv611, xwv621, ty_Int) -> new_ltEs8(xwv611, xwv621) new_lt20(xwv103, xwv106, ty_Float) -> new_lt12(xwv103, xwv106) new_ltEs22(xwv75, xwv76, app(ty_Maybe, bge)) -> new_ltEs6(xwv75, xwv76, bge) new_esEs11(xwv42, xwv302, ty_Bool) -> new_esEs16(xwv42, xwv302) new_lt6(xwv610, xwv620, ty_Double) -> new_lt5(xwv610, xwv620) new_compare7(xwv40, xwv300, ty_Float) -> new_compare13(xwv40, xwv300) new_esEs28(xwv102, xwv105, app(ty_Ratio, dde)) -> new_esEs21(xwv102, xwv105, dde) new_lt19(xwv102, xwv105, app(app(ty_@2, cec), ced)) -> new_lt14(xwv102, xwv105, cec, ced) new_esEs35(xwv281, xwv331, ty_@0) -> new_esEs20(xwv281, xwv331) new_esEs35(xwv281, xwv331, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs22(xwv281, xwv331, fcg, fch, fda) new_esEs34(xwv280, xwv330, ty_Bool) -> new_esEs16(xwv280, xwv330) new_compare7(xwv40, xwv300, app(app(app(ty_@3, fg), fh), ga)) -> new_compare18(xwv40, xwv300, fg, fh, ga) new_ltEs4(xwv61, xwv62, ty_Double) -> new_ltEs18(xwv61, xwv62) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_lt23(xwv125, xwv127, ty_@0) -> new_lt7(xwv125, xwv127) new_lt17(xwv18, xwv13, ccg, cch, cda) -> new_esEs12(new_compare18(xwv18, xwv13, ccg, cch, cda)) new_esEs11(xwv42, xwv302, app(ty_Maybe, daf)) -> new_esEs15(xwv42, xwv302, daf) The set Q consists of the following terms: new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Double) new_ltEs6(Just(x0), Just(x1), ty_Bool) new_lt23(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt21(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_[], x2)) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_primMulInt(Pos(x0), Pos(x1)) new_esEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare12(x0, x1) new_lt19(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), [], x2) new_pePe(False, x0) new_ltEs20(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_esEs19(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare6(LT, GT) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_compare6(GT, LT) new_ltEs4(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_compare17(True, False) new_compare17(False, True) new_lt15(x0, x1) new_esEs20(@0, @0) new_lt22(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_esEs6(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare9(Nothing, Just(x0), x1) new_esEs39(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Ordering) new_compare7(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs20(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, False, x2, x3) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs6(Just(x0), Nothing, x1) new_compare115(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt19(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs13(LT, LT) new_esEs27(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Int) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_sr(x0, x1) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs10(x0, x1, ty_Double) new_compare7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare7(x0, x1, ty_Int) new_ltEs16(LT, LT) new_primMulNat0(Zero, Succ(x0)) new_compare110(x0, x1, True, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_lt22(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_compare29(x0, x1, False, x2, x3) new_lt21(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Ordering) new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt7(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_ltEs8(x0, x1) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare7(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Float) new_esEs4(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, ty_Char) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs6(Just(x0), Just(x1), ty_@0) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(True, True) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare8(@0, @0) new_compare25(x0, x1, False, x2) new_ltEs24(x0, x1, ty_Double) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs24(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs15(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Nothing, Just(x0), x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Bool) new_ltEs11(x0, x1, x2) new_ltEs6(Just(x0), Just(x1), ty_Float) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_esEs40(x0, x1, ty_Float) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs6(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs40(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Int) new_ltEs10(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCmpNat0(Zero, Succ(x0)) new_esEs35(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_@0) new_compare16(Integer(x0), Integer(x1)) new_esEs4(x0, x1, ty_Int) new_esEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt13(x0, x1, x2) new_esEs11(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Float) new_esEs15(Nothing, Just(x0), x1) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Ordering) new_ltEs16(GT, GT) new_compare115(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Double) new_esEs18(:(x0, x1), [], x2) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), ty_Int) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare6(EQ, GT) new_compare6(GT, EQ) new_esEs29(x0, x1, ty_Bool) new_esEs12(GT) new_esEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt22(x0, x1, ty_Bool) new_compare10(x0, x1, False, x2, x3) new_lt21(x0, x1, ty_Integer) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt21(x0, x1, ty_@0) new_compare7(x0, x1, ty_@0) new_lt23(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_ltEs6(Just(x0), Just(x1), ty_Char) new_esEs11(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Float) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare0([], [], x0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Float) new_ltEs4(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, ty_Ordering) new_compare11(Right(x0), Left(x1), x2, x3) new_ltEs23(x0, x1, ty_Int) new_compare11(Left(x0), Right(x1), x2, x3) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt23(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(False, False) new_esEs9(x0, x1, ty_Char) new_primPlusNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Int) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Int) new_esEs16(False, False) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_lt23(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(Just(x0), Just(x1), ty_Double) new_ltEs24(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Double) new_lt22(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_lt22(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_compare11(Left(x0), Left(x1), x2, x3) new_ltEs23(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), ty_Integer) new_compare11(Right(x0), Right(x1), x2, x3) new_esEs15(Just(x0), Just(x1), ty_@0) new_esEs23(Float(x0, x1), Float(x2, x3)) new_lt14(x0, x1, x2, x3) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs35(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_compare27(x0, x1, x2, x3, False, x4, x5) new_esEs11(x0, x1, ty_Double) new_ltEs9(x0, x1, x2) new_lt11(x0, x1, x2) new_esEs29(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(GT, GT) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs13(LT, EQ) new_esEs13(EQ, LT) new_lt23(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Char) new_lt19(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Double) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_lt9(x0, x1, x2, x3) new_lt22(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_lt8(x0, x1, x2) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Double) new_compare7(x0, x1, app(ty_[], x2)) new_esEs13(EQ, EQ) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs6(Nothing, Nothing, x0) new_ltEs16(EQ, EQ) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_asAs(True, x0) new_ltEs22(x0, x1, ty_Int) new_esEs40(x0, x1, ty_@0) new_compare7(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Integer) new_compare9(Nothing, Nothing, x0) new_ltEs21(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs31(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Char) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(Integer(x0), Integer(x1)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs30(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs18(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(x0, x1, ty_Float) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs5(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt6(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Integer) new_compare6(EQ, LT) new_compare6(LT, EQ) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Bool) new_compare6(GT, GT) new_esEs11(x0, x1, ty_Integer) new_esEs40(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare7(x0, x1, ty_Integer) new_compare111(x0, x1, x2, x3, True, x4, x5) new_primPlusNat0(Zero, Zero) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_lt18(x0, x1) new_ltEs14(True, True) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_not(True) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_fsEs(x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt10(x0, x1) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs33(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt4(x0, x1) new_esEs30(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs24(x0, x1, ty_Float) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare17(True, True) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt16(x0, x1) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_esEs15(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare9(Just(x0), Just(x1), x2) new_ltEs21(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(LT, LT) new_esEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_@0) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs22(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, False, x4, x5) new_ltEs22(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_@0) new_compare7(x0, x1, ty_Bool) new_compare7(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt22(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Int) new_compare5(Char(x0), Char(x1)) new_ltEs5(x0, x1) new_lt19(x0, x1, ty_Double) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(x0, x1, ty_Float) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs4(x0, x1, ty_Double) new_esEs35(x0, x1, ty_@0) new_lt6(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(LT, GT) new_esEs13(GT, LT) new_esEs6(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs15(Just(x0), Just(x1), ty_Char) new_ltEs13(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Bool) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_esEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_lt6(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_esEs18([], [], x0) new_lt20(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Just(x0), Just(x1), ty_Double) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs25(Char(x0), Char(x1)) new_esEs34(x0, x1, ty_Char) new_esEs12(EQ) new_esEs5(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(Just(x0), Just(x1), ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, EQ) new_lt6(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(x0, x1) new_esEs28(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_compare0([], :(x0, x1), x2) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, x1, x2, x3) new_esEs6(x0, x1, ty_Float) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs15(Nothing, Nothing, x0) new_lt5(x0, x1) new_ltEs18(x0, x1) new_not(False) new_ltEs19(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs13(EQ, GT) new_esEs13(GT, EQ) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs15(Just(x0), Just(x1), ty_Int) new_esEs15(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT) new_esEs33(x0, x1, app(ty_[], x2)) new_lt12(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs36(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs16(False, True) new_esEs16(True, False) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_compare17(False, False) new_lt20(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Ordering) new_compare9(Just(x0), Nothing, x1) new_compare6(EQ, EQ) new_lt22(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True, x2, x3) new_ltEs4(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, LT) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Char) new_esEs18([], :(x0, x1), x2) new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Bool) new_lt17(x0, x1, x2, x3, x4) new_compare110(x0, x1, False, x2) new_primCmpNat0(Zero, Zero) new_esEs33(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Integer) 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_compare1(Just(xwv40), Just(xwv300), gb) -> new_compare20(xwv40, xwv300, new_esEs4(xwv40, xwv300, gb), gb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt(xwv18, xwv13, bee) -> new_compare1(xwv18, xwv13, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare3(@2(xwv40, xwv41), @2(xwv300, xwv301), caa, cab) -> new_compare23(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs7(xwv40, xwv300, caa), new_esEs8(xwv41, xwv301, cab)), caa, cab) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs3(xwv612, xwv622, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt2(xwv18, xwv13, bhg, bhh) -> new_compare3(xwv18, xwv13, bhg, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt3(xwv18, xwv13, ccg, cch, cda) -> new_compare4(xwv18, xwv13, ccg, cch, cda) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare4(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), cdb, cdc, cdd) -> new_compare24(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs9(xwv40, xwv300, cdb), new_asAs(new_esEs10(xwv41, xwv301, cdc), new_esEs11(xwv42, xwv302, cdd))), cdb, cdc, cdd) 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_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs3(xwv611, xwv621, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(app(ty_Either, bbb), bbc)) -> new_ltEs0(xwv612, xwv622, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(app(ty_Either, ge), gf)) -> new_ltEs0(xwv611, xwv621, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs3(xwv610, xwv620, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_Either, ba), bb)) -> new_ltEs0(xwv610, xwv620, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(app(ty_@2, bbe), bbf)) -> new_ltEs2(xwv612, xwv622, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(app(ty_@2, gh), ha)) -> new_ltEs2(xwv611, xwv621, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Just(xwv610), Just(xwv620), app(app(ty_@2, bd), be)) -> new_ltEs2(xwv610, xwv620, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt1(xwv18, xwv13, bhf) -> new_compare(xwv18, xwv13, bhf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare2(Left(xwv40), Left(xwv300), beh, bfa) -> new_compare21(xwv40, xwv300, new_esEs5(xwv40, xwv300, beh), beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare22(xwv75, xwv76, False, bgd, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_ltEs3(xwv75, xwv76, bhc, bhd, bhe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(xwv75, xwv76, False, bgd, app(app(ty_Either, bgf), bgg)) -> new_ltEs0(xwv75, xwv76, bgf, bgg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(xwv75, xwv76, False, bgd, app(app(ty_@2, bha), bhb)) -> new_ltEs2(xwv75, xwv76, bha, bhb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs1(xwv61, xwv62, ef) -> new_compare(xwv61, xwv62, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_primCompAux(xwv40, xwv300, xwv56, app(ty_Maybe, eh)) -> new_compare1(xwv40, xwv300, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_Maybe, he), hf) -> new_lt(xwv610, xwv620, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs3(xwv126, xwv128, ccd, cce, ccf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(app(ty_Either, cbg), cbh)) -> new_ltEs0(xwv126, xwv128, cbg, cbh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(app(ty_@2, ccb), ccc)) -> new_ltEs2(xwv126, xwv128, ccb, ccc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(ty_Maybe, cac), cad) -> new_lt(xwv125, xwv127, cac) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_@2, fd), ff)) -> new_compare3(xwv40, xwv300, fd, ff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(Right(xwv40), Right(xwv300), beh, bfa) -> new_compare22(xwv40, xwv300, new_esEs6(xwv40, xwv300, bfa), beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare(:(xwv40, xwv41), :(xwv300, xwv301), eg) -> new_primCompAux(xwv40, xwv300, new_compare0(xwv41, xwv301, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(xwv40, xwv41), :(xwv300, xwv301), eg) -> new_compare(xwv41, xwv301, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_Either, hg), hh), hf) -> new_lt0(xwv610, xwv620, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_Either, cae), caf), cad) -> new_lt0(xwv125, xwv127, cae, caf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_lt0(xwv18, xwv13, bef, beg) -> new_compare2(xwv18, xwv13, bef, beg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_primCompAux(xwv40, xwv300, xwv56, app(app(ty_Either, fa), fb)) -> new_compare2(xwv40, xwv300, fa, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(ty_Maybe, bba)) -> new_ltEs(xwv612, xwv622, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(ty_Maybe, gd)) -> new_ltEs(xwv611, xwv621, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Just(xwv610), Just(xwv620), app(ty_Maybe, h)) -> new_ltEs(xwv610, xwv620, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Just(xwv610), Just(xwv620), app(ty_[], bc)) -> new_ltEs1(xwv610, xwv620, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(xwv75, xwv76, False, bgd, app(ty_Maybe, bge)) -> new_ltEs(xwv75, xwv76, bge) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(xwv75, xwv76, False, bgd, app(ty_[], bgh)) -> new_ltEs1(xwv75, xwv76, bgh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(ty_Maybe, cbf)) -> new_ltEs(xwv126, xwv128, cbf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(xwv104, xwv107, cfg, cfh, cga) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare21(xwv68, xwv69, False, app(app(app(ty_@3, bga), bgb), bgc), bfc) -> new_ltEs3(xwv68, xwv69, bga, bgb, bgc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(app(ty_Either, cfb), cfc)) -> new_ltEs0(xwv104, xwv107, cfb, cfc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(xwv68, xwv69, False, app(app(ty_Either, bfd), bfe), bfc) -> new_ltEs0(xwv68, xwv69, bfd, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(app(ty_@2, cfe), cff)) -> new_ltEs2(xwv104, xwv107, cfe, cff) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(xwv68, xwv69, False, app(app(ty_@2, bfg), bfh), bfc) -> new_ltEs2(xwv68, xwv69, bfg, bfh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(ty_Maybe, cfa)) -> new_ltEs(xwv104, xwv107, cfa) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(xwv68, xwv69, False, app(ty_Maybe, bfb), bfc) -> new_ltEs(xwv68, xwv69, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xwv40, xwv300, xwv56, app(app(app(ty_@3, fg), fh), ga)) -> new_compare4(xwv40, xwv300, fg, fh, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(ty_@2, bab), bac), hf) -> new_lt2(xwv610, xwv620, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(app(ty_@2, cah), cba), cad) -> new_lt2(xwv125, xwv127, cah, cba) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare20(xwv61, xwv62, False, app(ty_[], ef)) -> new_compare(xwv61, xwv62, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xwv40, xwv300, xwv56, app(ty_[], fc)) -> new_compare(xwv40, xwv300, fc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(xwv68, xwv69, False, app(ty_[], bff), bfc) -> new_ltEs1(xwv68, xwv69, bff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, bah, app(ty_[], bbd)) -> new_ltEs1(xwv612, xwv622, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), gc, app(ty_[], gg)) -> new_ltEs1(xwv611, xwv621, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, cbe, app(ty_[], cca)) -> new_ltEs1(xwv126, xwv128, cca) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, cdf, app(ty_[], cfd)) -> new_ltEs1(xwv104, xwv107, cfd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(app(app(ty_@3, bad), bae), baf), hf) -> new_lt3(xwv610, xwv620, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@2(xwv610, xwv611), @2(xwv620, xwv621), app(ty_[], baa), hf) -> new_lt1(xwv610, xwv620, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(app(app(ty_@3, cbb), cbc), cbd), cad) -> new_lt3(xwv125, xwv127, cbb, cbc, cbd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare23(xwv125, xwv126, xwv127, xwv128, False, app(ty_[], cag), cad) -> new_lt1(xwv125, xwv127, cag) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(ty_Maybe, bcb), bcc) -> new_lt(xwv611, xwv621, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_Maybe, bdd), bah, bcc) -> new_lt(xwv610, xwv620, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(app(ty_Either, bcd), bce), bcc) -> new_lt0(xwv611, xwv621, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_Either, bde), bdf), bah, bcc) -> new_lt0(xwv610, xwv620, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(ty_@2, bdh), bea), bah, bcc) -> new_lt2(xwv610, xwv620, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(app(ty_@2, bcg), bch), bcc) -> new_lt2(xwv611, xwv621, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(app(app(ty_@3, beb), bec), bed), bah, bcc) -> new_lt3(xwv610, xwv620, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(app(app(ty_@3, bda), bdb), bdc), bcc) -> new_lt3(xwv611, xwv621, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), bag, app(ty_[], bcf), bcc) -> new_lt1(xwv611, xwv621, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), app(ty_[], bdg), bah, bcc) -> new_lt1(xwv610, xwv620, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(xwv610), Right(xwv620), dd, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs3(xwv610, xwv620, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(xwv610), Left(xwv620), app(app(app(ty_@3, da), db), dc), cb) -> new_ltEs3(xwv610, xwv620, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(app(ty_@3, da), db), dc)), cb)) -> new_ltEs3(xwv610, xwv620, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(app(app(ty_@3, ec), ed), ee))) -> new_ltEs3(xwv610, xwv620, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(app(app(ty_@3, bbg), bbh), bca))) -> new_ltEs3(xwv612, xwv622, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs3(xwv611, xwv621, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(app(ty_@3, bf), bg), bh))) -> new_ltEs3(xwv610, xwv620, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Right(xwv610), Right(xwv620), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(xwv610, xwv620, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(xwv610), Left(xwv620), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(xwv610, xwv620, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Left(xwv610), Left(xwv620), app(app(ty_@2, cf), cg), cb) -> new_ltEs2(xwv610, xwv620, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(xwv610), Right(xwv620), dd, app(app(ty_@2, ea), eb)) -> new_ltEs2(xwv610, xwv620, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Right(xwv610), Right(xwv620), dd, app(ty_Maybe, de)) -> new_ltEs(xwv610, xwv620, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(xwv610), Left(xwv620), app(ty_Maybe, ca), cb) -> new_ltEs(xwv610, xwv620, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Left(xwv610), Left(xwv620), app(ty_[], ce), cb) -> new_ltEs1(xwv610, xwv620, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(xwv610), Right(xwv620), dd, app(ty_[], dh)) -> new_ltEs1(xwv610, xwv620, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(app(ty_Either, ge), gf))) -> new_ltEs0(xwv611, xwv621, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_Either, ba), bb))) -> new_ltEs0(xwv610, xwv620, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(app(ty_Either, df), dg))) -> new_ltEs0(xwv610, xwv620, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(app(ty_Either, bbb), bbc))) -> new_ltEs0(xwv612, xwv622, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb)) -> new_ltEs0(xwv610, xwv620, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(app(ty_@2, ea), eb))) -> new_ltEs2(xwv610, xwv620, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(app(ty_@2, bd), be))) -> new_ltEs2(xwv610, xwv620, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(app(ty_@2, gh), ha))) -> new_ltEs2(xwv611, xwv621, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(app(ty_@2, bbe), bbf))) -> new_ltEs2(xwv612, xwv622, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(app(ty_@2, cf), cg)), cb)) -> new_ltEs2(xwv610, xwv620, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_Maybe, he)), hf)) -> new_lt(xwv610, xwv620, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_Maybe, bdd)), bah), bcc)) -> new_lt(xwv610, xwv620, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(ty_Maybe, bcb)), bcc)) -> new_lt(xwv611, xwv621, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(app(ty_Either, bcd), bce)), bcc)) -> new_lt0(xwv611, xwv621, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_Either, bde), bdf)), bah), bcc)) -> new_lt0(xwv610, xwv620, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_Either, hg), hh)), hf)) -> new_lt0(xwv610, xwv620, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(ty_Maybe, gd))) -> new_ltEs(xwv611, xwv621, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(xwv610, xwv620, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(ty_Maybe, bba))) -> new_ltEs(xwv612, xwv622, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_Maybe, ca)), cb)) -> new_ltEs(xwv610, xwv620, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(ty_Maybe, de))) -> new_ltEs(xwv610, xwv620, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(app(ty_@2, bcg), bch)), bcc)) -> new_lt2(xwv611, xwv621, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(ty_@2, bab), bac)), hf)) -> new_lt2(xwv610, xwv620, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(ty_@2, bdh), bea)), bah), bcc)) -> new_lt2(xwv610, xwv620, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), bah), app(ty_[], bbd))) -> new_ltEs1(xwv612, xwv622, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xwv610), Left(xwv620), False, app(app(ty_Either, app(ty_[], ce)), cb)) -> new_ltEs1(xwv610, xwv620, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, gc), app(ty_[], gg))) -> new_ltEs1(xwv611, xwv621, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xwv610), Just(xwv620), False, app(ty_Maybe, app(ty_[], bc))) -> new_ltEs1(xwv610, xwv620, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xwv610), Right(xwv620), False, app(app(ty_Either, dd), app(ty_[], dh))) -> new_ltEs1(xwv610, xwv620, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(app(app(ty_@3, beb), bec), bed)), bah), bcc)) -> new_lt3(xwv610, xwv620, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(app(app(ty_@3, bad), bae), baf)), hf)) -> new_lt3(xwv610, xwv620, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(app(app(ty_@3, bda), bdb), bdc)), bcc)) -> new_lt3(xwv611, xwv621, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, bag), app(ty_[], bcf)), bcc)) -> new_lt1(xwv611, xwv621, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xwv610, xwv611), @2(xwv620, xwv621), False, app(app(ty_@2, app(ty_[], baa)), hf)) -> new_lt1(xwv610, xwv620, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), False, app(app(app(ty_@3, app(ty_[], bdg)), bah), bcc)) -> new_lt1(xwv610, xwv620, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(ty_Maybe, cgb), cdg) -> new_lt(xwv103, xwv106, cgb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(ty_Maybe, cde), cdf, cdg) -> new_lt(xwv102, xwv105, cde) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(app(ty_Either, cdh), cea), cdf, cdg) -> new_lt0(xwv102, xwv105, cdh, cea) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(app(ty_Either, cgc), cgd), cdg) -> new_lt0(xwv103, xwv106, cgc, cgd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(app(ty_@2, cec), ced), cdf, cdg) -> new_lt2(xwv102, xwv105, cec, ced) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(app(ty_@2, cgf), cgg), cdg) -> new_lt2(xwv103, xwv106, cgf, cgg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(app(app(ty_@3, cee), cef), ceg), cdf, cdg) -> new_lt3(xwv102, xwv105, cee, cef, ceg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(app(app(ty_@3, cgh), cha), chb), cdg) -> new_lt3(xwv103, xwv106, cgh, cha, chb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, app(ty_[], ceb), cdf, cdg) -> new_lt1(xwv102, xwv105, ceb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, ceh, app(ty_[], cge), cdg) -> new_lt1(xwv103, xwv106, cge) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xwv4000), Succ(xwv30100)) -> new_primMulNat(xwv4000, Succ(xwv30100)) 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(xwv4000), Succ(xwv30100)) -> new_primMulNat(xwv4000, Succ(xwv30100)) 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_primMinusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat(xwv16200, xwv13700) R is empty. Q is empty. 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_primMinusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primMinusNat(xwv16200, xwv13700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primPlusNat(xwv16200, xwv13700) 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_primPlusNat(Succ(xwv16200), Succ(xwv13700)) -> new_primPlusNat(xwv16200, xwv13700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_key10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), h, ba) -> new_glueBal2Mid_key10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, h, ba) 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_glueBal2Mid_key10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, Branch(xwv2940, xwv2941, xwv2942, xwv2943, xwv2944), h, ba) -> new_glueBal2Mid_key10(xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv2940, xwv2941, xwv2942, xwv2943, xwv2944, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) new_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv4, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv4, new_gt(xwv4, xwv30, bd), bd, be) The TRS R consists of the following rules: new_ltEs7(Left(xwv610), Left(xwv620), app(app(ty_Either, fcg), fch), dg) -> new_ltEs7(xwv610, xwv620, fcg, fch) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare114(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, xwv199, fa, fb, fc) -> new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, xwv199, fa, fb, fc) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs22(xwv75, xwv76, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs15(xwv75, xwv76, dff, dfg, dfh) new_compare11(Right(xwv40), Left(xwv300), gh, ha) -> GT new_pePe(True, xwv210) -> True new_esEs29(xwv103, xwv106, ty_Integer) -> new_esEs19(xwv103, xwv106) new_esEs7(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_ltEs19(xwv611, xwv621, ty_Double) -> new_ltEs18(xwv611, xwv621) new_ltEs19(xwv611, xwv621, ty_@0) -> new_ltEs5(xwv611, xwv621) new_ltEs4(xwv61, xwv62, ty_Integer) -> new_ltEs13(xwv61, xwv62) new_compare6(EQ, GT) -> LT new_esEs30(xwv610, xwv620, ty_Float) -> new_esEs23(xwv610, xwv620) new_esEs40(xwv281, xwv331, ty_@0) -> new_esEs20(xwv281, xwv331) new_lt6(xwv610, xwv620, ty_Ordering) -> new_lt4(xwv610, xwv620) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xwv147, xwv148, False, fce) -> GT new_esEs6(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_lt22(xwv610, xwv620, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_lt17(xwv610, xwv620, dbf, dbg, dbh) new_esEs34(xwv280, xwv330, app(app(ty_Either, ega), egb)) -> new_esEs24(xwv280, xwv330, ega, egb) new_ltEs19(xwv611, xwv621, app(app(ty_@2, bbg), bbh)) -> new_ltEs12(xwv611, xwv621, bbg, bbh) new_esEs5(xwv40, xwv300, app(ty_Ratio, dhh)) -> new_esEs21(xwv40, xwv300, dhh) new_lt4(xwv18, xwv13) -> new_esEs12(new_compare6(xwv18, xwv13)) new_lt23(xwv125, xwv127, app(ty_[], ece)) -> new_lt11(xwv125, xwv127, ece) new_compare111(xwv177, xwv178, xwv179, xwv180, False, eg, eh) -> GT new_lt6(xwv610, xwv620, ty_Char) -> new_lt18(xwv610, xwv620) new_esEs32(xwv280, xwv330, ty_Bool) -> new_esEs16(xwv280, xwv330) new_esEs9(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_lt19(xwv102, xwv105, ty_Bool) -> new_lt16(xwv102, xwv105) new_esEs27(xwv610, xwv620, ty_Ordering) -> new_esEs13(xwv610, xwv620) new_esEs36(xwv282, xwv332, app(ty_Ratio, faa)) -> new_esEs21(xwv282, xwv332, faa) new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Double) -> new_ltEs18(xwv610, xwv620) new_esEs28(xwv102, xwv105, ty_@0) -> new_esEs20(xwv102, xwv105) new_ltEs7(Left(xwv610), Left(xwv620), app(app(app(ty_@3, fde), fdf), fdg), dg) -> new_ltEs15(xwv610, xwv620, fde, fdf, fdg) new_ltEs21(xwv612, xwv622, ty_Ordering) -> new_ltEs16(xwv612, xwv622) new_compare5(Char(xwv40), Char(xwv300)) -> new_primCmpNat0(xwv40, xwv300) new_ltEs19(xwv611, xwv621, ty_Bool) -> new_ltEs14(xwv611, xwv621) new_esEs39(xwv280, xwv330, app(app(app(ty_@3, gag), gah), gba)) -> new_esEs22(xwv280, xwv330, gag, gah, gba) new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, False, fa, fb, fc) -> GT new_esEs34(xwv280, xwv330, app(ty_[], efd)) -> new_esEs18(xwv280, xwv330, efd) new_primEqNat0(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat0(xwv2800, xwv3300) new_compare14(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Int) -> new_compare12(new_sr(xwv40, xwv301), new_sr(xwv300, xwv41)) new_esEs6(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_esEs27(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) new_lt6(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_esEs39(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_not(True) -> False new_lt21(xwv611, xwv621, app(ty_Maybe, dca)) -> new_lt8(xwv611, xwv621, dca) new_ltEs21(xwv612, xwv622, ty_@0) -> new_ltEs5(xwv612, xwv622) new_lt21(xwv611, xwv621, app(app(ty_@2, dcf), dcg)) -> new_lt14(xwv611, xwv621, dcf, dcg) new_ltEs22(xwv75, xwv76, app(ty_[], dfb)) -> new_ltEs9(xwv75, xwv76, dfb) new_ltEs7(Left(xwv610), Left(xwv620), ty_Int, dg) -> new_ltEs8(xwv610, xwv620) new_esEs28(xwv102, xwv105, app(app(ty_@2, bef), beg)) -> new_esEs17(xwv102, xwv105, bef, beg) new_primCompAux00(xwv81, LT) -> LT new_esEs7(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_esEs15(Just(xwv280), Just(xwv330), app(ty_Ratio, fbe)) -> new_esEs21(xwv280, xwv330, fbe) new_esEs39(xwv280, xwv330, app(ty_[], gae)) -> new_esEs18(xwv280, xwv330, gae) new_esEs24(Left(xwv280), Left(xwv330), ty_Int, bhg) -> new_esEs26(xwv280, xwv330) new_esEs10(xwv41, xwv301, ty_Float) -> new_esEs23(xwv41, xwv301) new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Ordering) -> new_ltEs16(xwv610, xwv620) new_lt22(xwv610, xwv620, app(app(ty_Either, dah), dba)) -> new_lt9(xwv610, xwv620, dah, dba) new_lt8(xwv18, xwv13, fd) -> new_esEs12(new_compare9(xwv18, xwv13, fd)) new_ltEs20(xwv104, xwv107, app(app(ty_Either, bgf), bgg)) -> new_ltEs7(xwv104, xwv107, bgf, bgg) new_esEs11(xwv42, xwv302, ty_Char) -> new_esEs25(xwv42, xwv302) new_esEs39(xwv280, xwv330, app(app(ty_Either, gbb), gbc)) -> new_esEs24(xwv280, xwv330, gbb, gbc) new_lt21(xwv611, xwv621, ty_Integer) -> new_lt15(xwv611, xwv621) new_primEqNat0(Succ(xwv2800), Zero) -> False new_primEqNat0(Zero, Succ(xwv3300)) -> False new_esEs29(xwv103, xwv106, app(app(ty_Either, bfd), bfe)) -> new_esEs24(xwv103, xwv106, bfd, bfe) new_ltEs21(xwv612, xwv622, app(app(ty_@2, ddh), dea)) -> new_ltEs12(xwv612, xwv622, ddh, dea) new_lt22(xwv610, xwv620, ty_Float) -> new_lt12(xwv610, xwv620) new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Maybe, bcd)) -> new_ltEs6(xwv610, xwv620, bcd) new_compare7(xwv40, xwv300, app(ty_Ratio, ce)) -> new_compare14(xwv40, xwv300, ce) new_gt(xwv4, xwv30, ty_Ordering) -> new_esEs41(new_compare6(xwv4, xwv30)) new_lt23(xwv125, xwv127, ty_Int) -> new_lt10(xwv125, xwv127) new_compare10(xwv154, xwv155, True, bf, bg) -> LT new_ltEs23(xwv126, xwv128, ty_Char) -> new_ltEs17(xwv126, xwv128) new_ltEs4(xwv61, xwv62, app(ty_Ratio, ea)) -> new_ltEs11(xwv61, xwv62, ea) new_esEs24(Left(xwv280), Left(xwv330), ty_Bool, bhg) -> new_esEs16(xwv280, xwv330) new_esEs24(Left(xwv280), Left(xwv330), app(app(ty_@2, caa), cab), bhg) -> new_esEs17(xwv280, xwv330, caa, cab) new_ltEs22(xwv75, xwv76, ty_Float) -> new_ltEs10(xwv75, xwv76) new_esEs34(xwv280, xwv330, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_esEs31(xwv611, xwv621, app(ty_Ratio, dce)) -> new_esEs21(xwv611, xwv621, dce) new_esEs13(LT, LT) -> True new_esEs32(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_lt21(xwv611, xwv621, ty_Bool) -> new_lt16(xwv611, xwv621) new_primCmpInt(Pos(Succ(xwv400)), Neg(xwv300)) -> GT new_compare7(xwv40, xwv300, ty_Ordering) -> new_compare6(xwv40, xwv300) new_ltEs7(Left(xwv610), Left(xwv620), ty_Float, dg) -> new_ltEs10(xwv610, xwv620) new_ltEs21(xwv612, xwv622, ty_Bool) -> new_ltEs14(xwv612, xwv622) new_ltEs21(xwv612, xwv622, ty_Double) -> new_ltEs18(xwv612, xwv622) new_compare6(LT, GT) -> LT new_primCmpNat0(Zero, Succ(xwv3000)) -> LT new_esEs5(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_ltEs22(xwv75, xwv76, ty_Int) -> new_ltEs8(xwv75, xwv76) new_ltEs21(xwv612, xwv622, ty_Integer) -> new_ltEs13(xwv612, xwv622) new_esEs37(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_ltEs10(xwv61, xwv62) -> new_fsEs(new_compare13(xwv61, xwv62)) new_lt19(xwv102, xwv105, app(ty_Maybe, bea)) -> new_lt8(xwv102, xwv105, bea) new_esEs8(xwv41, xwv301, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs22(xwv41, xwv301, dab, dac, dad) new_esEs8(xwv41, xwv301, app(ty_[], chh)) -> new_esEs18(xwv41, xwv301, chh) new_esEs6(xwv40, xwv300, app(app(ty_Either, ebf), ebg)) -> new_esEs24(xwv40, xwv300, ebf, ebg) new_esEs30(xwv610, xwv620, app(app(ty_@2, dbd), dbe)) -> new_esEs17(xwv610, xwv620, dbd, dbe) new_esEs33(xwv125, xwv127, app(ty_Ratio, ecf)) -> new_esEs21(xwv125, xwv127, ecf) new_lt24(xwv18, xwv13, ty_Ordering) -> new_lt4(xwv18, xwv13) new_ltEs23(xwv126, xwv128, app(ty_Ratio, edh)) -> new_ltEs11(xwv126, xwv128, edh) new_compare19(Double(xwv40, Pos(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_compare19(Double(xwv40, Neg(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_lt24(xwv18, xwv13, ty_Bool) -> new_lt16(xwv18, xwv13) new_esEs31(xwv611, xwv621, app(ty_Maybe, dca)) -> new_esEs15(xwv611, xwv621, dca) new_esEs27(xwv610, xwv620, app(ty_[], bac)) -> new_esEs18(xwv610, xwv620, bac) new_esEs15(Just(xwv280), Just(xwv330), ty_Char) -> new_esEs25(xwv280, xwv330) new_esEs6(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_ltEs4(xwv61, xwv62, ty_@0) -> new_ltEs5(xwv61, xwv62) new_esEs27(xwv610, xwv620, ty_Bool) -> new_esEs16(xwv610, xwv620) new_esEs24(Left(xwv280), Left(xwv330), app(ty_Ratio, cad), bhg) -> new_esEs21(xwv280, xwv330, cad) new_esEs29(xwv103, xwv106, app(ty_[], bff)) -> new_esEs18(xwv103, xwv106, bff) new_esEs15(Just(xwv280), Just(xwv330), ty_Double) -> new_esEs14(xwv280, xwv330) new_esEs13(GT, GT) -> True new_ltEs6(Just(xwv610), Just(xwv620), ty_Double) -> new_ltEs18(xwv610, xwv620) new_lt20(xwv103, xwv106, app(ty_[], bff)) -> new_lt11(xwv103, xwv106, bff) new_esEs8(xwv41, xwv301, app(ty_Ratio, daa)) -> new_esEs21(xwv41, xwv301, daa) new_esEs6(xwv40, xwv300, app(ty_Maybe, eaf)) -> new_esEs15(xwv40, xwv300, eaf) new_esEs8(xwv41, xwv301, app(app(ty_Either, dae), daf)) -> new_esEs24(xwv41, xwv301, dae, daf) new_esEs17(@2(xwv280, xwv281), @2(xwv330, xwv331), fhh, gaa) -> new_asAs(new_esEs39(xwv280, xwv330, fhh), new_esEs40(xwv281, xwv331, gaa)) new_ltEs14(True, True) -> True new_lt24(xwv18, xwv13, ty_Char) -> new_lt18(xwv18, xwv13) new_lt13(xwv18, xwv13, ga) -> new_esEs12(new_compare14(xwv18, xwv13, ga)) new_esEs34(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs27(xwv610, xwv620, app(ty_Maybe, hh)) -> new_esEs15(xwv610, xwv620, hh) new_lt22(xwv610, xwv620, ty_Ordering) -> new_lt4(xwv610, xwv620) new_esEs24(Right(xwv280), Right(xwv330), cbb, app(app(ty_Either, ccc), ccd)) -> new_esEs24(xwv280, xwv330, ccc, ccd) new_primEqInt(Neg(Succ(xwv2800)), Neg(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_ltEs4(xwv61, xwv62, ty_Ordering) -> new_ltEs16(xwv61, xwv62) new_esEs31(xwv611, xwv621, app(app(ty_Either, dcb), dcc)) -> new_esEs24(xwv611, xwv621, dcb, dcc) new_esEs4(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_esEs9(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_primCmpInt(Neg(Zero), Pos(Succ(xwv3000))) -> LT new_esEs24(Right(xwv280), Right(xwv330), cbb, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs22(xwv280, xwv330, cbh, cca, ccb) new_ltEs20(xwv104, xwv107, ty_Char) -> new_ltEs17(xwv104, xwv107) new_primMulInt(Pos(xwv400), Pos(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) new_esEs31(xwv611, xwv621, ty_Double) -> new_esEs14(xwv611, xwv621) new_esEs13(EQ, GT) -> False new_esEs13(GT, EQ) -> False new_lt24(xwv18, xwv13, app(app(ty_@2, gb), gc)) -> new_lt14(xwv18, xwv13, gb, gc) new_esEs31(xwv611, xwv621, ty_Char) -> new_esEs25(xwv611, xwv621) new_esEs11(xwv42, xwv302, ty_Integer) -> new_esEs19(xwv42, xwv302) new_ltEs4(xwv61, xwv62, app(app(ty_@2, eb), ec)) -> new_ltEs12(xwv61, xwv62, eb, ec) new_lt24(xwv18, xwv13, ty_Float) -> new_lt12(xwv18, xwv13) new_esEs33(xwv125, xwv127, ty_Float) -> new_esEs23(xwv125, xwv127) new_ltEs9(xwv61, xwv62, dh) -> new_fsEs(new_compare0(xwv61, xwv62, dh)) new_primMulNat0(Succ(xwv4000), Zero) -> Zero new_primMulNat0(Zero, Succ(xwv30100)) -> Zero new_esEs15(Just(xwv280), Just(xwv330), ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs31(xwv611, xwv621, ty_Integer) -> new_esEs19(xwv611, xwv621) new_ltEs19(xwv611, xwv621, ty_Integer) -> new_ltEs13(xwv611, xwv621) new_ltEs18(xwv61, xwv62) -> new_fsEs(new_compare19(xwv61, xwv62)) new_esEs31(xwv611, xwv621, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(xwv611, xwv621, dch, dda, ddb) new_esEs24(Left(xwv280), Right(xwv330), cbb, bhg) -> False new_esEs24(Right(xwv280), Left(xwv330), cbb, bhg) -> False new_esEs15(Just(xwv280), Just(xwv330), app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs22(xwv280, xwv330, fbf, fbg, fbh) new_ltEs6(Just(xwv610), Just(xwv620), ty_Int) -> new_ltEs8(xwv610, xwv620) new_esEs29(xwv103, xwv106, app(ty_Maybe, bfc)) -> new_esEs15(xwv103, xwv106, bfc) new_primPlusNat0(Succ(xwv16200), Zero) -> Succ(xwv16200) new_primPlusNat0(Zero, Succ(xwv13700)) -> Succ(xwv13700) new_esEs15(Just(xwv280), Just(xwv330), app(app(ty_Either, fca), fcb)) -> new_esEs24(xwv280, xwv330, fca, fcb) new_lt23(xwv125, xwv127, ty_Integer) -> new_lt15(xwv125, xwv127) new_esEs31(xwv611, xwv621, app(ty_[], dcd)) -> new_esEs18(xwv611, xwv621, dcd) new_gt(xwv4, xwv30, app(app(ty_Either, gh), ha)) -> new_esEs41(new_compare11(xwv4, xwv30, gh, ha)) new_ltEs6(Nothing, Just(xwv620), de) -> True new_esEs33(xwv125, xwv127, ty_Char) -> new_esEs25(xwv125, xwv127) new_esEs7(xwv40, xwv300, app(app(ty_@2, cgd), cge)) -> new_esEs17(xwv40, xwv300, cgd, cge) new_esEs30(xwv610, xwv620, ty_@0) -> new_esEs20(xwv610, xwv620) new_esEs12(LT) -> True new_esEs35(xwv281, xwv331, ty_Float) -> new_esEs23(xwv281, xwv331) new_esEs4(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_esEs33(xwv125, xwv127, app(app(ty_@2, ecg), ech)) -> new_esEs17(xwv125, xwv127, ecg, ech) new_esEs10(xwv41, xwv301, app(app(ty_@2, cdh), cea)) -> new_esEs17(xwv41, xwv301, cdh, cea) new_esEs28(xwv102, xwv105, ty_Double) -> new_esEs14(xwv102, xwv105) new_esEs6(xwv40, xwv300, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs22(xwv40, xwv300, ebc, ebd, ebe) new_esEs7(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_esEs40(xwv281, xwv331, ty_Double) -> new_esEs14(xwv281, xwv331) new_esEs39(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_ltEs20(xwv104, xwv107, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs15(xwv104, xwv107, bhd, bhe, bhf) new_esEs5(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_compare115(xwv161, xwv162, False, fcc, fcd) -> GT new_ltEs21(xwv612, xwv622, app(ty_Ratio, ddg)) -> new_ltEs11(xwv612, xwv622, ddg) new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, fa, fb, fc) -> LT new_ltEs24(xwv68, xwv69, ty_Double) -> new_ltEs18(xwv68, xwv69) new_esEs4(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_ltEs19(xwv611, xwv621, ty_Float) -> new_ltEs10(xwv611, xwv621) new_esEs29(xwv103, xwv106, ty_Double) -> new_esEs14(xwv103, xwv106) new_compare25(xwv61, xwv62, True, dd) -> EQ new_esEs6(xwv40, xwv300, app(ty_[], eba)) -> new_esEs18(xwv40, xwv300, eba) new_esEs19(Integer(xwv280), Integer(xwv330)) -> new_primEqInt(xwv280, xwv330) new_esEs5(xwv40, xwv300, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs22(xwv40, xwv300, eaa, eab, eac) new_esEs8(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) new_ltEs19(xwv611, xwv621, ty_Ordering) -> new_ltEs16(xwv611, xwv621) new_esEs39(xwv280, xwv330, app(ty_Maybe, gab)) -> new_esEs15(xwv280, xwv330, gab) new_ltEs7(Left(xwv610), Left(xwv620), app(ty_Ratio, fdb), dg) -> new_ltEs11(xwv610, xwv620, fdb) new_esEs11(xwv42, xwv302, app(ty_Ratio, cfe)) -> new_esEs21(xwv42, xwv302, cfe) new_esEs8(xwv41, xwv301, ty_Integer) -> new_esEs19(xwv41, xwv301) new_ltEs4(xwv61, xwv62, ty_Bool) -> new_ltEs14(xwv61, xwv62) new_lt24(xwv18, xwv13, ty_Integer) -> new_lt15(xwv18, xwv13) new_esEs5(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_esEs32(xwv280, xwv330, app(app(ty_Either, dhb), dhc)) -> new_esEs24(xwv280, xwv330, dhb, dhc) new_esEs29(xwv103, xwv106, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs22(xwv103, xwv106, bgb, bgc, bgd) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_esEs40(xwv281, xwv331, ty_Bool) -> new_esEs16(xwv281, xwv331) new_ltEs15(@3(xwv610, xwv611, xwv612), @3(xwv620, xwv621, xwv622), ed, ee, ef) -> new_pePe(new_lt22(xwv610, xwv620, ed), new_asAs(new_esEs30(xwv610, xwv620, ed), new_pePe(new_lt21(xwv611, xwv621, ee), new_asAs(new_esEs31(xwv611, xwv621, ee), new_ltEs21(xwv612, xwv622, ef))))) new_esEs24(Left(xwv280), Left(xwv330), ty_Float, bhg) -> new_esEs23(xwv280, xwv330) new_lt16(xwv18, xwv13) -> new_esEs12(new_compare17(xwv18, xwv13)) new_ltEs7(Right(xwv610), Right(xwv620), df, app(app(ty_@2, fee), fef)) -> new_ltEs12(xwv610, xwv620, fee, fef) new_ltEs7(Left(xwv610), Right(xwv620), df, dg) -> True new_lt5(xwv18, xwv13) -> new_esEs12(new_compare19(xwv18, xwv13)) new_esEs12(GT) -> False new_lt19(xwv102, xwv105, ty_Float) -> new_lt12(xwv102, xwv105) new_esEs12(EQ) -> False new_ltEs19(xwv611, xwv621, app(ty_[], bbe)) -> new_ltEs9(xwv611, xwv621, bbe) new_lt6(xwv610, xwv620, app(ty_Maybe, hh)) -> new_lt8(xwv610, xwv620, hh) new_esEs31(xwv611, xwv621, ty_Ordering) -> new_esEs13(xwv611, xwv621) new_esEs9(xwv40, xwv300, app(ty_[], cch)) -> new_esEs18(xwv40, xwv300, cch) new_compare17(True, False) -> GT new_lt23(xwv125, xwv127, ty_Bool) -> new_lt16(xwv125, xwv127) new_esEs23(Float(xwv280, xwv281), Float(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_esEs35(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) new_esEs32(xwv280, xwv330, app(ty_Maybe, dgb)) -> new_esEs15(xwv280, xwv330, dgb) new_esEs37(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_esEs29(xwv103, xwv106, ty_Int) -> new_esEs26(xwv103, xwv106) new_ltEs7(Left(xwv610), Left(xwv620), ty_@0, dg) -> new_ltEs5(xwv610, xwv620) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Double) -> new_esEs14(xwv280, xwv330) new_lt23(xwv125, xwv127, app(ty_Maybe, ecb)) -> new_lt8(xwv125, xwv127, ecb) new_lt19(xwv102, xwv105, ty_@0) -> new_lt7(xwv102, xwv105) new_esEs11(xwv42, xwv302, app(app(ty_Either, cga), cgb)) -> new_esEs24(xwv42, xwv302, cga, cgb) new_gt(xwv4, xwv30, app(ty_Ratio, hb)) -> new_esEs41(new_compare14(xwv4, xwv30, hb)) new_compare111(xwv177, xwv178, xwv179, xwv180, True, eg, eh) -> LT new_compare0([], :(xwv300, xwv301), bh) -> LT new_lt19(xwv102, xwv105, ty_Ordering) -> new_lt4(xwv102, xwv105) new_esEs22(@3(xwv280, xwv281, xwv282), @3(xwv330, xwv331, xwv332), eef, eeg, eeh) -> new_asAs(new_esEs34(xwv280, xwv330, eef), new_asAs(new_esEs35(xwv281, xwv331, eeg), new_esEs36(xwv282, xwv332, eeh))) new_esEs15(Just(xwv280), Just(xwv330), app(app(ty_@2, fbb), fbc)) -> new_esEs17(xwv280, xwv330, fbb, fbc) new_esEs24(Left(xwv280), Left(xwv330), ty_Integer, bhg) -> new_esEs19(xwv280, xwv330) new_compare10(xwv154, xwv155, False, bf, bg) -> GT new_lt19(xwv102, xwv105, ty_Char) -> new_lt18(xwv102, xwv105) new_esEs10(xwv41, xwv301, ty_Ordering) -> new_esEs13(xwv41, xwv301) new_esEs36(xwv282, xwv332, ty_@0) -> new_esEs20(xwv282, xwv332) new_esEs35(xwv281, xwv331, ty_Ordering) -> new_esEs13(xwv281, xwv331) new_esEs11(xwv42, xwv302, ty_@0) -> new_esEs20(xwv42, xwv302) new_esEs30(xwv610, xwv620, app(ty_Ratio, dbc)) -> new_esEs21(xwv610, xwv620, dbc) new_esEs39(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) new_ltEs23(xwv126, xwv128, app(app(ty_@2, eea), eeb)) -> new_ltEs12(xwv126, xwv128, eea, eeb) new_lt24(xwv18, xwv13, app(app(app(ty_@3, gd), ge), gf)) -> new_lt17(xwv18, xwv13, gd, ge, gf) new_lt21(xwv611, xwv621, app(ty_[], dcd)) -> new_lt11(xwv611, xwv621, dcd) new_gt(xwv4, xwv30, app(app(ty_@2, hc), hd)) -> new_esEs41(new_compare15(xwv4, xwv30, hc, hd)) new_esEs31(xwv611, xwv621, app(app(ty_@2, dcf), dcg)) -> new_esEs17(xwv611, xwv621, dcf, dcg) new_esEs36(xwv282, xwv332, app(app(ty_Either, fae), faf)) -> new_esEs24(xwv282, xwv332, fae, faf) new_primCmpInt(Pos(Succ(xwv400)), Pos(xwv300)) -> new_primCmpNat0(Succ(xwv400), xwv300) new_esEs10(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) new_primCompAux00(xwv81, EQ) -> xwv81 new_esEs30(xwv610, xwv620, ty_Bool) -> new_esEs16(xwv610, xwv620) new_lt21(xwv611, xwv621, ty_@0) -> new_lt7(xwv611, xwv621) new_esEs33(xwv125, xwv127, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs22(xwv125, xwv127, eda, edb, edc) new_esEs15(Nothing, Just(xwv330), fah) -> False new_esEs15(Just(xwv280), Nothing, fah) -> False new_esEs5(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs15(Nothing, Nothing, fah) -> True new_gt(xwv4, xwv30, app(ty_[], bh)) -> new_esEs41(new_compare0(xwv4, xwv30, bh)) new_esEs15(Just(xwv280), Just(xwv330), ty_@0) -> new_esEs20(xwv280, xwv330) new_lt6(xwv610, xwv620, ty_Integer) -> new_lt15(xwv610, xwv620) new_esEs8(xwv41, xwv301, ty_Double) -> new_esEs14(xwv41, xwv301) new_compare7(xwv40, xwv300, ty_Char) -> new_compare5(xwv40, xwv300) new_primMulNat0(Succ(xwv4000), Succ(xwv30100)) -> new_primPlusNat0(new_primMulNat0(xwv4000, Succ(xwv30100)), Succ(xwv30100)) new_esEs29(xwv103, xwv106, ty_Ordering) -> new_esEs13(xwv103, xwv106) new_ltEs7(Left(xwv610), Left(xwv620), ty_Bool, dg) -> new_ltEs14(xwv610, xwv620) new_ltEs7(Right(xwv610), Right(xwv620), df, app(ty_[], fec)) -> new_ltEs9(xwv610, xwv620, fec) new_esEs31(xwv611, xwv621, ty_Int) -> new_esEs26(xwv611, xwv621) new_esEs32(xwv280, xwv330, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs22(xwv280, xwv330, dgg, dgh, dha) new_lt20(xwv103, xwv106, app(app(ty_Either, bfd), bfe)) -> new_lt9(xwv103, xwv106, bfd, bfe) new_esEs15(Just(xwv280), Just(xwv330), ty_Int) -> new_esEs26(xwv280, xwv330) new_lt12(xwv18, xwv13) -> new_esEs12(new_compare13(xwv18, xwv13)) new_esEs6(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs34(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) new_lt20(xwv103, xwv106, ty_Ordering) -> new_lt4(xwv103, xwv106) new_esEs40(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) new_ltEs14(False, True) -> True new_esEs7(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_ltEs20(xwv104, xwv107, app(ty_[], bgh)) -> new_ltEs9(xwv104, xwv107, bgh) new_esEs36(xwv282, xwv332, app(ty_Maybe, ehe)) -> new_esEs15(xwv282, xwv332, ehe) new_compare7(xwv40, xwv300, app(ty_[], cd)) -> new_compare0(xwv40, xwv300, cd) new_ltEs22(xwv75, xwv76, app(app(ty_@2, dfd), dfe)) -> new_ltEs12(xwv75, xwv76, dfd, dfe) new_lt21(xwv611, xwv621, ty_Ordering) -> new_lt4(xwv611, xwv621) new_esEs15(Just(xwv280), Just(xwv330), app(ty_Maybe, fba)) -> new_esEs15(xwv280, xwv330, fba) new_esEs35(xwv281, xwv331, ty_Char) -> new_esEs25(xwv281, xwv331) new_compare9(Nothing, Just(xwv300), gg) -> LT new_lt6(xwv610, xwv620, app(app(ty_Either, baa), bab)) -> new_lt9(xwv610, xwv620, baa, bab) new_esEs5(xwv40, xwv300, app(app(ty_Either, ead), eae)) -> new_esEs24(xwv40, xwv300, ead, eae) new_ltEs4(xwv61, xwv62, ty_Char) -> new_ltEs17(xwv61, xwv62) new_lt14(xwv18, xwv13, gb, gc) -> new_esEs12(new_compare15(xwv18, xwv13, gb, gc)) new_lt20(xwv103, xwv106, ty_@0) -> new_lt7(xwv103, xwv106) new_ltEs21(xwv612, xwv622, app(ty_[], ddf)) -> new_ltEs9(xwv612, xwv622, ddf) new_esEs29(xwv103, xwv106, app(app(ty_@2, bfh), bga)) -> new_esEs17(xwv103, xwv106, bfh, bga) new_esEs32(xwv280, xwv330, ty_@0) -> new_esEs20(xwv280, xwv330) new_ltEs7(Left(xwv610), Left(xwv620), ty_Ordering, dg) -> new_ltEs16(xwv610, xwv620) new_esEs16(True, True) -> True new_ltEs24(xwv68, xwv69, app(ty_Ratio, ffh)) -> new_ltEs11(xwv68, xwv69, ffh) new_lt6(xwv610, xwv620, ty_Bool) -> new_lt16(xwv610, xwv620) new_esEs41(GT) -> True new_esEs11(xwv42, xwv302, ty_Ordering) -> new_esEs13(xwv42, xwv302) new_ltEs7(Left(xwv610), Left(xwv620), ty_Char, dg) -> new_ltEs17(xwv610, xwv620) new_esEs11(xwv42, xwv302, ty_Int) -> new_esEs26(xwv42, xwv302) new_esEs10(xwv41, xwv301, ty_Bool) -> new_esEs16(xwv41, xwv301) new_esEs36(xwv282, xwv332, ty_Integer) -> new_esEs19(xwv282, xwv332) new_ltEs24(xwv68, xwv69, app(app(ty_@2, fga), fgb)) -> new_ltEs12(xwv68, xwv69, fga, fgb) new_esEs34(xwv280, xwv330, ty_Int) -> new_esEs26(xwv280, xwv330) new_lt24(xwv18, xwv13, app(ty_Maybe, fd)) -> new_lt8(xwv18, xwv13, fd) new_esEs27(xwv610, xwv620, app(ty_Ratio, bad)) -> new_esEs21(xwv610, xwv620, bad) new_ltEs7(Right(xwv610), Right(xwv620), df, app(ty_Ratio, fed)) -> new_ltEs11(xwv610, xwv620, fed) new_compare9(Just(xwv40), Nothing, gg) -> GT new_esEs33(xwv125, xwv127, ty_Bool) -> new_esEs16(xwv125, xwv127) new_compare18(@3(xwv40, xwv41, xwv42), @3(xwv300, xwv301, xwv302), he, hf, hg) -> new_compare26(xwv40, xwv41, xwv42, xwv300, xwv301, xwv302, new_asAs(new_esEs9(xwv40, xwv300, he), new_asAs(new_esEs10(xwv41, xwv301, hf), new_esEs11(xwv42, xwv302, hg))), he, hf, hg) new_compare16(Integer(xwv40), Integer(xwv300)) -> new_primCmpInt(xwv40, xwv300) new_lt10(xwv18, xwv13) -> new_esEs12(new_compare12(xwv18, xwv13)) new_esEs35(xwv281, xwv331, ty_Bool) -> new_esEs16(xwv281, xwv331) new_compare13(Float(xwv40, Pos(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_ltEs7(Left(xwv610), Left(xwv620), app(app(ty_@2, fdc), fdd), dg) -> new_ltEs12(xwv610, xwv620, fdc, fdd) new_lt19(xwv102, xwv105, ty_Integer) -> new_lt15(xwv102, xwv105) new_lt15(xwv18, xwv13) -> new_esEs12(new_compare16(xwv18, xwv13)) new_esEs24(Left(xwv280), Left(xwv330), app(ty_Maybe, bhh), bhg) -> new_esEs15(xwv280, xwv330, bhh) new_compare0(:(xwv40, xwv41), [], bh) -> GT new_esEs33(xwv125, xwv127, ty_@0) -> new_esEs20(xwv125, xwv127) new_esEs32(xwv280, xwv330, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_primPlusNat0(Succ(xwv16200), Succ(xwv13700)) -> Succ(Succ(new_primPlusNat0(xwv16200, xwv13700))) new_esEs4(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_esEs10(xwv41, xwv301, ty_@0) -> new_esEs20(xwv41, xwv301) new_esEs4(xwv40, xwv300, app(app(ty_Either, fhf), fhg)) -> new_esEs24(xwv40, xwv300, fhf, fhg) new_compare7(xwv40, xwv300, ty_Integer) -> new_compare16(xwv40, xwv300) new_lt24(xwv18, xwv13, app(ty_[], fh)) -> new_lt11(xwv18, xwv13, fh) new_lt21(xwv611, xwv621, app(app(app(ty_@3, dch), dda), ddb)) -> new_lt17(xwv611, xwv621, dch, dda, ddb) new_lt22(xwv610, xwv620, ty_Char) -> new_lt18(xwv610, xwv620) new_lt20(xwv103, xwv106, ty_Integer) -> new_lt15(xwv103, xwv106) new_ltEs12(@2(xwv610, xwv611), @2(xwv620, xwv621), eb, ec) -> new_pePe(new_lt6(xwv610, xwv620, eb), new_asAs(new_esEs27(xwv610, xwv620, eb), new_ltEs19(xwv611, xwv621, ec))) new_esEs29(xwv103, xwv106, app(ty_Ratio, bfg)) -> new_esEs21(xwv103, xwv106, bfg) new_ltEs6(Just(xwv610), Just(xwv620), ty_@0) -> new_ltEs5(xwv610, xwv620) new_ltEs11(xwv61, xwv62, ea) -> new_fsEs(new_compare14(xwv61, xwv62, ea)) new_esEs33(xwv125, xwv127, app(ty_Maybe, ecb)) -> new_esEs15(xwv125, xwv127, ecb) new_esEs36(xwv282, xwv332, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs22(xwv282, xwv332, fab, fac, fad) new_esEs10(xwv41, xwv301, app(ty_Maybe, cdg)) -> new_esEs15(xwv41, xwv301, cdg) new_esEs36(xwv282, xwv332, ty_Int) -> new_esEs26(xwv282, xwv332) new_esEs4(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_lt24(xwv18, xwv13, ty_@0) -> new_lt7(xwv18, xwv13) new_esEs35(xwv281, xwv331, app(ty_Maybe, egc)) -> new_esEs15(xwv281, xwv331, egc) new_compare7(xwv40, xwv300, ty_@0) -> new_compare8(xwv40, xwv300) new_esEs6(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_compare7(xwv40, xwv300, ty_Bool) -> new_compare17(xwv40, xwv300) new_esEs11(xwv42, xwv302, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs22(xwv42, xwv302, cff, cfg, cfh) new_lt20(xwv103, xwv106, ty_Bool) -> new_lt16(xwv103, xwv106) new_compare0(:(xwv40, xwv41), :(xwv300, xwv301), bh) -> new_primCompAux0(xwv40, xwv300, new_compare0(xwv41, xwv301, bh), bh) new_esEs4(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs24(Right(xwv280), Right(xwv330), cbb, app(ty_Ratio, cbg)) -> new_esEs21(xwv280, xwv330, cbg) new_lt6(xwv610, xwv620, app(app(app(ty_@3, bag), bah), bba)) -> new_lt17(xwv610, xwv620, bag, bah, bba) new_esEs30(xwv610, xwv620, ty_Ordering) -> new_esEs13(xwv610, xwv620) new_esEs9(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_esEs36(xwv282, xwv332, ty_Char) -> new_esEs25(xwv282, xwv332) new_lt21(xwv611, xwv621, ty_Float) -> new_lt12(xwv611, xwv621) new_ltEs14(False, False) -> True new_compare26(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, True, bdf, bdg, bdh) -> EQ new_esEs34(xwv280, xwv330, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs22(xwv280, xwv330, eff, efg, efh) new_compare29(xwv68, xwv69, True, ffb, ffc) -> EQ new_primCmpNat0(Succ(xwv400), Succ(xwv3000)) -> new_primCmpNat0(xwv400, xwv3000) new_lt22(xwv610, xwv620, ty_@0) -> new_lt7(xwv610, xwv620) new_esEs16(False, False) -> True new_esEs40(xwv281, xwv331, ty_Float) -> new_esEs23(xwv281, xwv331) new_compare11(Left(xwv40), Right(xwv300), gh, ha) -> LT new_ltEs23(xwv126, xwv128, app(ty_[], edg)) -> new_ltEs9(xwv126, xwv128, edg) new_compare25(xwv61, xwv62, False, dd) -> new_compare110(xwv61, xwv62, new_ltEs4(xwv61, xwv62, dd), dd) new_esEs27(xwv610, xwv620, app(app(ty_@2, bae), baf)) -> new_esEs17(xwv610, xwv620, bae, baf) new_compare7(xwv40, xwv300, app(ty_Maybe, ca)) -> new_compare9(xwv40, xwv300, ca) new_compare12(xwv4, xwv30) -> new_primCmpInt(xwv4, xwv30) new_ltEs6(Just(xwv610), Just(xwv620), app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs15(xwv610, xwv620, bdc, bdd, bde) new_lt20(xwv103, xwv106, ty_Char) -> new_lt18(xwv103, xwv106) new_ltEs24(xwv68, xwv69, app(ty_[], ffg)) -> new_ltEs9(xwv68, xwv69, ffg) new_ltEs6(Just(xwv610), Just(xwv620), ty_Bool) -> new_ltEs14(xwv610, xwv620) new_ltEs6(Just(xwv610), Just(xwv620), ty_Ordering) -> new_ltEs16(xwv610, xwv620) new_lt23(xwv125, xwv127, app(app(ty_Either, ecc), ecd)) -> new_lt9(xwv125, xwv127, ecc, ecd) new_ltEs6(Just(xwv610), Just(xwv620), ty_Float) -> new_ltEs10(xwv610, xwv620) new_compare19(Double(xwv40, Pos(xwv410)), Double(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_esEs5(xwv40, xwv300, ty_Float) -> new_esEs23(xwv40, xwv300) new_esEs34(xwv280, xwv330, app(ty_Maybe, efa)) -> new_esEs15(xwv280, xwv330, efa) new_lt19(xwv102, xwv105, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt17(xwv102, xwv105, beh, bfa, bfb) new_compare6(GT, EQ) -> GT new_esEs38(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_lt24(xwv18, xwv13, app(app(ty_Either, ff), fg)) -> new_lt9(xwv18, xwv13, ff, fg) new_compare110(xwv147, xwv148, True, fce) -> LT new_ltEs14(True, False) -> False new_lt21(xwv611, xwv621, ty_Char) -> new_lt18(xwv611, xwv621) new_esEs13(EQ, EQ) -> True new_compare26(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, False, bdf, bdg, bdh) -> new_compare114(xwv102, xwv103, xwv104, xwv105, xwv106, xwv107, new_lt19(xwv102, xwv105, bdf), new_asAs(new_esEs28(xwv102, xwv105, bdf), new_pePe(new_lt20(xwv103, xwv106, bdg), new_asAs(new_esEs29(xwv103, xwv106, bdg), new_ltEs20(xwv104, xwv107, bdh)))), bdf, bdg, bdh) new_esEs15(Just(xwv280), Just(xwv330), ty_Ordering) -> new_esEs13(xwv280, xwv330) new_ltEs7(Left(xwv610), Left(xwv620), app(ty_Maybe, fcf), dg) -> new_ltEs6(xwv610, xwv620, fcf) new_ltEs6(Just(xwv610), Just(xwv620), ty_Integer) -> new_ltEs13(xwv610, xwv620) new_lt22(xwv610, xwv620, app(ty_Maybe, dag)) -> new_lt8(xwv610, xwv620, dag) new_lt20(xwv103, xwv106, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_lt17(xwv103, xwv106, bgb, bgc, bgd) new_compare28(xwv75, xwv76, True, dee, def) -> EQ new_lt20(xwv103, xwv106, ty_Float) -> new_lt12(xwv103, xwv106) new_esEs11(xwv42, xwv302, ty_Bool) -> new_esEs16(xwv42, xwv302) new_compare7(xwv40, xwv300, ty_Float) -> new_compare13(xwv40, xwv300) new_esEs28(xwv102, xwv105, app(ty_Ratio, bee)) -> new_esEs21(xwv102, xwv105, bee) new_esEs35(xwv281, xwv331, ty_@0) -> new_esEs20(xwv281, xwv331) new_esEs35(xwv281, xwv331, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs22(xwv281, xwv331, egh, eha, ehb) new_esEs34(xwv280, xwv330, ty_Bool) -> new_esEs16(xwv280, xwv330) new_compare7(xwv40, xwv300, app(app(app(ty_@3, da), db), dc)) -> new_compare18(xwv40, xwv300, da, db, dc) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_lt23(xwv125, xwv127, ty_@0) -> new_lt7(xwv125, xwv127) new_esEs11(xwv42, xwv302, app(ty_Maybe, cfa)) -> new_esEs15(xwv42, xwv302, cfa) new_ltEs7(Right(xwv610), Left(xwv620), df, dg) -> False new_ltEs6(Just(xwv610), Just(xwv620), ty_Char) -> new_ltEs17(xwv610, xwv620) new_esEs24(Left(xwv280), Left(xwv330), ty_Double, bhg) -> new_esEs14(xwv280, xwv330) new_primCmpInt(Neg(Succ(xwv400)), Pos(xwv300)) -> LT new_esEs40(xwv281, xwv331, app(app(ty_Either, gce), gcf)) -> new_esEs24(xwv281, xwv331, gce, gcf) new_esEs39(xwv280, xwv330, ty_Float) -> new_esEs23(xwv280, xwv330) new_lt22(xwv610, xwv620, ty_Double) -> new_lt5(xwv610, xwv620) new_ltEs23(xwv126, xwv128, app(ty_Maybe, edd)) -> new_ltEs6(xwv126, xwv128, edd) new_esEs34(xwv280, xwv330, ty_@0) -> new_esEs20(xwv280, xwv330) new_lt6(xwv610, xwv620, app(ty_[], bac)) -> new_lt11(xwv610, xwv620, bac) new_primCmpInt(Pos(Zero), Neg(Succ(xwv3000))) -> GT new_ltEs23(xwv126, xwv128, ty_Float) -> new_ltEs10(xwv126, xwv128) new_esEs7(xwv40, xwv300, app(app(ty_Either, chc), chd)) -> new_esEs24(xwv40, xwv300, chc, chd) new_esEs32(xwv280, xwv330, app(ty_Ratio, dgf)) -> new_esEs21(xwv280, xwv330, dgf) new_lt23(xwv125, xwv127, ty_Ordering) -> new_lt4(xwv125, xwv127) new_gt(xwv4, xwv30, app(ty_Maybe, gg)) -> new_esEs41(new_compare9(xwv4, xwv30, gg)) new_ltEs22(xwv75, xwv76, app(ty_Ratio, dfc)) -> new_ltEs11(xwv75, xwv76, dfc) new_ltEs24(xwv68, xwv69, app(app(ty_Either, ffe), fff)) -> new_ltEs7(xwv68, xwv69, ffe, fff) new_primCmpInt(Neg(Succ(xwv400)), Neg(xwv300)) -> new_primCmpNat0(xwv300, Succ(xwv400)) new_esEs26(xwv28, xwv33) -> new_primEqInt(xwv28, xwv33) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Float) -> new_esEs23(xwv280, xwv330) new_esEs5(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_compare115(xwv161, xwv162, True, fcc, fcd) -> LT new_esEs36(xwv282, xwv332, ty_Bool) -> new_esEs16(xwv282, xwv332) new_esEs9(xwv40, xwv300, app(ty_Ratio, cda)) -> new_esEs21(xwv40, xwv300, cda) new_esEs41(EQ) -> False new_esEs6(xwv40, xwv300, app(app(ty_@2, eag), eah)) -> new_esEs17(xwv40, xwv300, eag, eah) new_esEs40(xwv281, xwv331, app(ty_[], gbg)) -> new_esEs18(xwv281, xwv331, gbg) new_lt6(xwv610, xwv620, ty_@0) -> new_lt7(xwv610, xwv620) new_esEs30(xwv610, xwv620, app(app(ty_Either, dah), dba)) -> new_esEs24(xwv610, xwv620, dah, dba) new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_Either, bce), bcf)) -> new_ltEs7(xwv610, xwv620, bce, bcf) new_primEqInt(Pos(Succ(xwv2800)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xwv3300))) -> False new_esEs33(xwv125, xwv127, ty_Ordering) -> new_esEs13(xwv125, xwv127) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_@0) -> new_esEs20(xwv280, xwv330) new_esEs7(xwv40, xwv300, app(ty_[], cgf)) -> new_esEs18(xwv40, xwv300, cgf) new_ltEs4(xwv61, xwv62, ty_Int) -> new_ltEs8(xwv61, xwv62) new_esEs30(xwv610, xwv620, app(ty_Maybe, dag)) -> new_esEs15(xwv610, xwv620, dag) new_ltEs4(xwv61, xwv62, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs15(xwv61, xwv62, ed, ee, ef) new_esEs18([], [], dga) -> True new_esEs33(xwv125, xwv127, ty_Int) -> new_esEs26(xwv125, xwv127) new_esEs28(xwv102, xwv105, app(ty_[], bed)) -> new_esEs18(xwv102, xwv105, bed) new_esEs24(Left(xwv280), Left(xwv330), ty_Char, bhg) -> new_esEs25(xwv280, xwv330) new_esEs39(xwv280, xwv330, ty_@0) -> new_esEs20(xwv280, xwv330) new_lt21(xwv611, xwv621, app(app(ty_Either, dcb), dcc)) -> new_lt9(xwv611, xwv621, dcb, dcc) new_esEs27(xwv610, xwv620, ty_Double) -> new_esEs14(xwv610, xwv620) new_primCmpNat0(Zero, Zero) -> EQ new_lt22(xwv610, xwv620, ty_Integer) -> new_lt15(xwv610, xwv620) new_esEs20(@0, @0) -> True new_esEs10(xwv41, xwv301, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs22(xwv41, xwv301, ced, cee, cef) new_lt9(xwv18, xwv13, ff, fg) -> new_esEs12(new_compare11(xwv18, xwv13, ff, fg)) new_esEs15(Just(xwv280), Just(xwv330), ty_Bool) -> new_esEs16(xwv280, xwv330) new_esEs24(Left(xwv280), Left(xwv330), app(app(ty_Either, cah), cba), bhg) -> new_esEs24(xwv280, xwv330, cah, cba) new_esEs6(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_ltEs16(GT, EQ) -> False new_ltEs22(xwv75, xwv76, ty_Integer) -> new_ltEs13(xwv75, xwv76) new_esEs7(xwv40, xwv300, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs22(xwv40, xwv300, cgh, cha, chb) new_esEs34(xwv280, xwv330, app(app(ty_@2, efb), efc)) -> new_esEs17(xwv280, xwv330, efb, efc) new_esEs40(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs30(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_ltEs20(xwv104, xwv107, ty_Double) -> new_ltEs18(xwv104, xwv107) new_esEs8(xwv41, xwv301, ty_Float) -> new_esEs23(xwv41, xwv301) new_compare113(xwv177, xwv178, xwv179, xwv180, True, xwv182, eg, eh) -> new_compare111(xwv177, xwv178, xwv179, xwv180, True, eg, eh) new_ltEs20(xwv104, xwv107, ty_Bool) -> new_ltEs14(xwv104, xwv107) new_primCompAux00(xwv81, GT) -> GT new_esEs7(xwv40, xwv300, app(ty_Maybe, cgc)) -> new_esEs15(xwv40, xwv300, cgc) new_esEs32(xwv280, xwv330, ty_Double) -> new_esEs14(xwv280, xwv330) new_esEs35(xwv281, xwv331, app(app(ty_Either, ehc), ehd)) -> new_esEs24(xwv281, xwv331, ehc, ehd) new_lt23(xwv125, xwv127, ty_Float) -> new_lt12(xwv125, xwv127) new_esEs28(xwv102, xwv105, app(app(ty_Either, beb), bec)) -> new_esEs24(xwv102, xwv105, beb, bec) new_esEs33(xwv125, xwv127, app(ty_[], ece)) -> new_esEs18(xwv125, xwv127, ece) new_ltEs16(LT, LT) -> True new_lt20(xwv103, xwv106, app(ty_Maybe, bfc)) -> new_lt8(xwv103, xwv106, bfc) new_esEs31(xwv611, xwv621, ty_Bool) -> new_esEs16(xwv611, xwv621) new_ltEs24(xwv68, xwv69, ty_Char) -> new_ltEs17(xwv68, xwv69) new_lt23(xwv125, xwv127, ty_Char) -> new_lt18(xwv125, xwv127) new_esEs40(xwv281, xwv331, ty_Ordering) -> new_esEs13(xwv281, xwv331) new_esEs28(xwv102, xwv105, ty_Ordering) -> new_esEs13(xwv102, xwv105) new_esEs35(xwv281, xwv331, ty_Integer) -> new_esEs19(xwv281, xwv331) new_esEs8(xwv41, xwv301, ty_@0) -> new_esEs20(xwv41, xwv301) new_gt(xwv4, xwv30, ty_Float) -> new_esEs41(new_compare13(xwv4, xwv30)) new_ltEs20(xwv104, xwv107, ty_@0) -> new_ltEs5(xwv104, xwv107) new_compare11(Left(xwv40), Left(xwv300), gh, ha) -> new_compare29(xwv40, xwv300, new_esEs5(xwv40, xwv300, gh), gh, ha) new_esEs33(xwv125, xwv127, app(app(ty_Either, ecc), ecd)) -> new_esEs24(xwv125, xwv127, ecc, ecd) new_esEs10(xwv41, xwv301, app(ty_Ratio, cec)) -> new_esEs21(xwv41, xwv301, cec) new_primCmpNat0(Succ(xwv400), Zero) -> GT new_ltEs19(xwv611, xwv621, app(app(ty_Either, bbc), bbd)) -> new_ltEs7(xwv611, xwv621, bbc, bbd) new_pePe(False, xwv210) -> xwv210 new_ltEs23(xwv126, xwv128, ty_Int) -> new_ltEs8(xwv126, xwv128) new_esEs9(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_esEs28(xwv102, xwv105, ty_Int) -> new_esEs26(xwv102, xwv105) new_compare17(False, False) -> EQ new_esEs10(xwv41, xwv301, app(app(ty_Either, ceg), ceh)) -> new_esEs24(xwv41, xwv301, ceg, ceh) new_ltEs13(xwv61, xwv62) -> new_fsEs(new_compare16(xwv61, xwv62)) new_esEs7(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_lt22(xwv610, xwv620, app(ty_[], dbb)) -> new_lt11(xwv610, xwv620, dbb) new_lt23(xwv125, xwv127, app(app(app(ty_@3, eda), edb), edc)) -> new_lt17(xwv125, xwv127, eda, edb, edc) new_ltEs16(LT, GT) -> True new_esEs4(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs27(xwv610, xwv620, ty_@0) -> new_esEs20(xwv610, xwv620) new_esEs35(xwv281, xwv331, app(ty_Ratio, egg)) -> new_esEs21(xwv281, xwv331, egg) new_esEs6(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_primEqInt(Pos(Zero), Neg(Succ(xwv3300))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xwv3300))) -> False new_ltEs7(Left(xwv610), Left(xwv620), ty_Integer, dg) -> new_ltEs13(xwv610, xwv620) new_ltEs16(GT, LT) -> False new_esEs9(xwv40, xwv300, ty_Char) -> new_esEs25(xwv40, xwv300) new_esEs31(xwv611, xwv621, ty_@0) -> new_esEs20(xwv611, xwv621) new_esEs4(xwv40, xwv300, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs22(xwv40, xwv300, fhc, fhd, fhe) new_esEs24(Right(xwv280), Right(xwv330), cbb, app(ty_Maybe, cbc)) -> new_esEs15(xwv280, xwv330, cbc) new_compare13(Float(xwv40, Pos(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Pos(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_compare13(Float(xwv40, Neg(xwv410)), Float(xwv300, Pos(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Pos(xwv410), xwv300)) new_esEs36(xwv282, xwv332, ty_Float) -> new_esEs23(xwv282, xwv332) new_esEs7(xwv40, xwv300, ty_Integer) -> new_esEs19(xwv40, xwv300) new_lt22(xwv610, xwv620, ty_Bool) -> new_lt16(xwv610, xwv620) new_ltEs4(xwv61, xwv62, app(ty_Maybe, de)) -> new_ltEs6(xwv61, xwv62, de) new_ltEs7(Right(xwv610), Right(xwv620), df, app(app(ty_Either, fea), feb)) -> new_ltEs7(xwv610, xwv620, fea, feb) new_esEs28(xwv102, xwv105, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs22(xwv102, xwv105, beh, bfa, bfb) new_esEs29(xwv103, xwv106, ty_Bool) -> new_esEs16(xwv103, xwv106) new_esEs38(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) new_ltEs21(xwv612, xwv622, app(app(app(ty_@3, deb), dec), ded)) -> new_ltEs15(xwv612, xwv622, deb, dec, ded) new_esEs6(xwv40, xwv300, ty_Double) -> new_esEs14(xwv40, xwv300) new_esEs24(Right(xwv280), Right(xwv330), cbb, app(app(ty_@2, cbd), cbe)) -> new_esEs17(xwv280, xwv330, cbd, cbe) new_ltEs4(xwv61, xwv62, ty_Float) -> new_ltEs10(xwv61, xwv62) new_ltEs5(xwv61, xwv62) -> new_fsEs(new_compare8(xwv61, xwv62)) new_lt19(xwv102, xwv105, app(app(ty_Either, beb), bec)) -> new_lt9(xwv102, xwv105, beb, bec) new_ltEs19(xwv611, xwv621, ty_Char) -> new_ltEs17(xwv611, xwv621) new_fsEs(xwv205) -> new_not(new_esEs13(xwv205, GT)) new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Char) -> new_ltEs17(xwv610, xwv620) new_esEs34(xwv280, xwv330, ty_Float) -> new_esEs23(xwv280, xwv330) new_esEs30(xwv610, xwv620, ty_Int) -> new_esEs26(xwv610, xwv620) new_esEs30(xwv610, xwv620, app(ty_[], dbb)) -> new_esEs18(xwv610, xwv620, dbb) new_esEs10(xwv41, xwv301, ty_Char) -> new_esEs25(xwv41, xwv301) new_esEs40(xwv281, xwv331, app(app(app(ty_@3, gca), gcb), gcc)) -> new_esEs22(xwv281, xwv331, gca, gcb, gcc) new_compare7(xwv40, xwv300, app(app(ty_Either, cb), cc)) -> new_compare11(xwv40, xwv300, cb, cc) new_lt19(xwv102, xwv105, app(ty_[], bed)) -> new_lt11(xwv102, xwv105, bed) new_ltEs16(EQ, GT) -> True new_ltEs20(xwv104, xwv107, app(app(ty_@2, bhb), bhc)) -> new_ltEs12(xwv104, xwv107, bhb, bhc) new_esEs8(xwv41, xwv301, app(app(ty_@2, chf), chg)) -> new_esEs17(xwv41, xwv301, chf, chg) new_esEs32(xwv280, xwv330, ty_Integer) -> new_esEs19(xwv280, xwv330) new_ltEs16(EQ, EQ) -> True new_gt(xwv4, xwv30, ty_Bool) -> new_esEs41(new_compare17(xwv4, xwv30)) new_esEs39(xwv280, xwv330, ty_Bool) -> new_esEs16(xwv280, xwv330) new_esEs24(Left(xwv280), Left(xwv330), ty_@0, bhg) -> new_esEs20(xwv280, xwv330) new_esEs9(xwv40, xwv300, app(app(ty_@2, ccf), ccg)) -> new_esEs17(xwv40, xwv300, ccf, ccg) new_ltEs22(xwv75, xwv76, ty_Char) -> new_ltEs17(xwv75, xwv76) new_compare11(Right(xwv40), Right(xwv300), gh, ha) -> new_compare28(xwv40, xwv300, new_esEs6(xwv40, xwv300, ha), gh, ha) new_esEs33(xwv125, xwv127, ty_Integer) -> new_esEs19(xwv125, xwv127) new_ltEs23(xwv126, xwv128, ty_Double) -> new_ltEs18(xwv126, xwv128) new_compare6(LT, LT) -> EQ new_esEs11(xwv42, xwv302, ty_Float) -> new_esEs23(xwv42, xwv302) new_compare113(xwv177, xwv178, xwv179, xwv180, False, xwv182, eg, eh) -> new_compare111(xwv177, xwv178, xwv179, xwv180, xwv182, eg, eh) new_esEs10(xwv41, xwv301, ty_Integer) -> new_esEs19(xwv41, xwv301) new_ltEs20(xwv104, xwv107, ty_Float) -> new_ltEs10(xwv104, xwv107) new_ltEs20(xwv104, xwv107, ty_Ordering) -> new_ltEs16(xwv104, xwv107) new_esEs5(xwv40, xwv300, app(ty_[], dhg)) -> new_esEs18(xwv40, xwv300, dhg) new_esEs36(xwv282, xwv332, ty_Ordering) -> new_esEs13(xwv282, xwv332) new_lt11(xwv18, xwv13, fh) -> new_esEs12(new_compare0(xwv18, xwv13, fh)) new_esEs5(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_primMulInt(Neg(xwv400), Neg(xwv3010)) -> Pos(new_primMulNat0(xwv400, xwv3010)) new_primCmpInt(Pos(Zero), Pos(Succ(xwv3000))) -> new_primCmpNat0(Zero, Succ(xwv3000)) new_esEs32(xwv280, xwv330, app(app(ty_@2, dgc), dgd)) -> new_esEs17(xwv280, xwv330, dgc, dgd) new_esEs40(xwv281, xwv331, ty_Int) -> new_esEs26(xwv281, xwv331) new_esEs30(xwv610, xwv620, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(xwv610, xwv620, dbf, dbg, dbh) new_esEs28(xwv102, xwv105, app(ty_Maybe, bea)) -> new_esEs15(xwv102, xwv105, bea) new_ltEs19(xwv611, xwv621, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs15(xwv611, xwv621, bca, bcb, bcc) new_esEs4(xwv40, xwv300, app(ty_Maybe, fgf)) -> new_esEs15(xwv40, xwv300, fgf) new_esEs34(xwv280, xwv330, app(ty_Ratio, efe)) -> new_esEs21(xwv280, xwv330, efe) new_ltEs4(xwv61, xwv62, app(ty_[], dh)) -> new_ltEs9(xwv61, xwv62, dh) new_ltEs21(xwv612, xwv622, ty_Char) -> new_ltEs17(xwv612, xwv622) new_esEs29(xwv103, xwv106, ty_@0) -> new_esEs20(xwv103, xwv106) new_esEs24(Right(xwv280), Right(xwv330), cbb, app(ty_[], cbf)) -> new_esEs18(xwv280, xwv330, cbf) new_esEs40(xwv281, xwv331, app(ty_Maybe, gbd)) -> new_esEs15(xwv281, xwv331, gbd) new_esEs28(xwv102, xwv105, ty_Bool) -> new_esEs16(xwv102, xwv105) new_esEs32(xwv280, xwv330, ty_Char) -> new_esEs25(xwv280, xwv330) new_esEs7(xwv40, xwv300, ty_Bool) -> new_esEs16(xwv40, xwv300) new_esEs39(xwv280, xwv330, ty_Double) -> new_esEs14(xwv280, xwv330) new_gt(xwv4, xwv30, ty_Double) -> new_esEs41(new_compare19(xwv4, xwv30)) new_esEs11(xwv42, xwv302, app(ty_[], cfd)) -> new_esEs18(xwv42, xwv302, cfd) new_esEs8(xwv41, xwv301, ty_Int) -> new_esEs26(xwv41, xwv301) new_primMulInt(Pos(xwv400), Neg(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) new_primMulInt(Neg(xwv400), Pos(xwv3010)) -> Neg(new_primMulNat0(xwv400, xwv3010)) new_esEs4(xwv40, xwv300, app(app(ty_@2, fgg), fgh)) -> new_esEs17(xwv40, xwv300, fgg, fgh) new_esEs5(xwv40, xwv300, app(ty_Maybe, dhd)) -> new_esEs15(xwv40, xwv300, dhd) new_esEs18(:(xwv280, xwv281), :(xwv330, xwv331), dga) -> new_asAs(new_esEs32(xwv280, xwv330, dga), new_esEs18(xwv281, xwv331, dga)) new_ltEs23(xwv126, xwv128, ty_Bool) -> new_ltEs14(xwv126, xwv128) new_esEs40(xwv281, xwv331, app(ty_Ratio, gbh)) -> new_esEs21(xwv281, xwv331, gbh) new_ltEs7(Left(xwv610), Left(xwv620), ty_Double, dg) -> new_ltEs18(xwv610, xwv620) new_ltEs4(xwv61, xwv62, app(app(ty_Either, df), dg)) -> new_ltEs7(xwv61, xwv62, df, dg) new_esEs36(xwv282, xwv332, app(ty_[], ehh)) -> new_esEs18(xwv282, xwv332, ehh) new_ltEs23(xwv126, xwv128, ty_Ordering) -> new_ltEs16(xwv126, xwv128) new_esEs30(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) new_ltEs24(xwv68, xwv69, ty_Int) -> new_ltEs8(xwv68, xwv69) new_esEs14(Double(xwv280, xwv281), Double(xwv330, xwv331)) -> new_esEs26(new_sr(xwv280, xwv331), new_sr(xwv281, xwv330)) new_sr0(Integer(xwv400), Integer(xwv3010)) -> Integer(new_primMulInt(xwv400, xwv3010)) new_gt0(xwv4, xwv30) -> new_esEs41(new_compare12(xwv4, xwv30)) new_ltEs24(xwv68, xwv69, app(app(app(ty_@3, fgc), fgd), fge)) -> new_ltEs15(xwv68, xwv69, fgc, fgd, fge) new_ltEs7(Right(xwv610), Right(xwv620), df, app(ty_Maybe, fdh)) -> new_ltEs6(xwv610, xwv620, fdh) new_esEs30(xwv610, xwv620, ty_Double) -> new_esEs14(xwv610, xwv620) new_lt24(xwv18, xwv13, app(ty_Ratio, ga)) -> new_lt13(xwv18, xwv13, ga) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Char) -> new_esEs25(xwv280, xwv330) new_ltEs21(xwv612, xwv622, app(ty_Maybe, ddc)) -> new_ltEs6(xwv612, xwv622, ddc) new_esEs9(xwv40, xwv300, ty_@0) -> new_esEs20(xwv40, xwv300) new_lt20(xwv103, xwv106, ty_Int) -> new_lt10(xwv103, xwv106) new_asAs(True, xwv135) -> xwv135 new_esEs9(xwv40, xwv300, app(app(ty_Either, cde), cdf)) -> new_esEs24(xwv40, xwv300, cde, cdf) new_esEs27(xwv610, xwv620, ty_Integer) -> new_esEs19(xwv610, xwv620) new_esEs15(Just(xwv280), Just(xwv330), app(ty_[], fbd)) -> new_esEs18(xwv280, xwv330, fbd) new_esEs8(xwv41, xwv301, ty_Ordering) -> new_esEs13(xwv41, xwv301) new_ltEs21(xwv612, xwv622, ty_Float) -> new_ltEs10(xwv612, xwv622) new_lt6(xwv610, xwv620, app(app(ty_@2, bae), baf)) -> new_lt14(xwv610, xwv620, bae, baf) new_ltEs22(xwv75, xwv76, app(app(ty_Either, deh), dfa)) -> new_ltEs7(xwv75, xwv76, deh, dfa) new_compare13(Float(xwv40, Neg(xwv410)), Float(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_ltEs20(xwv104, xwv107, app(ty_Ratio, bha)) -> new_ltEs11(xwv104, xwv107, bha) new_gt(xwv4, xwv30, ty_Integer) -> new_esEs41(new_compare16(xwv4, xwv30)) new_lt20(xwv103, xwv106, ty_Double) -> new_lt5(xwv103, xwv106) new_lt19(xwv102, xwv105, ty_Int) -> new_lt10(xwv102, xwv105) new_compare0([], [], bh) -> EQ new_gt(xwv4, xwv30, ty_Char) -> new_esEs41(new_compare5(xwv4, xwv30)) new_sr(xwv40, xwv301) -> new_primMulInt(xwv40, xwv301) new_esEs35(xwv281, xwv331, app(app(ty_@2, egd), ege)) -> new_esEs17(xwv281, xwv331, egd, ege) new_ltEs21(xwv612, xwv622, app(app(ty_Either, ddd), dde)) -> new_ltEs7(xwv612, xwv622, ddd, dde) new_ltEs16(GT, GT) -> True new_ltEs7(Left(xwv610), Left(xwv620), app(ty_[], fda), dg) -> new_ltEs9(xwv610, xwv620, fda) new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Float) -> new_ltEs10(xwv610, xwv620) new_esEs27(xwv610, xwv620, ty_Float) -> new_esEs23(xwv610, xwv620) new_ltEs6(Just(xwv610), Just(xwv620), app(ty_Ratio, bch)) -> new_ltEs11(xwv610, xwv620, bch) new_primMulNat0(Zero, Zero) -> Zero new_lt19(xwv102, xwv105, ty_Double) -> new_lt5(xwv102, xwv105) new_ltEs22(xwv75, xwv76, ty_Double) -> new_ltEs18(xwv75, xwv76) new_compare6(GT, GT) -> EQ new_compare6(EQ, EQ) -> EQ new_esEs10(xwv41, xwv301, ty_Double) -> new_esEs14(xwv41, xwv301) new_ltEs17(xwv61, xwv62) -> new_fsEs(new_compare5(xwv61, xwv62)) new_esEs36(xwv282, xwv332, app(app(ty_@2, ehf), ehg)) -> new_esEs17(xwv282, xwv332, ehf, ehg) new_esEs11(xwv42, xwv302, app(app(ty_@2, cfb), cfc)) -> new_esEs17(xwv42, xwv302, cfb, cfc) new_compare19(Double(xwv40, Neg(xwv410)), Double(xwv300, Neg(xwv3010))) -> new_compare12(new_sr(xwv40, Neg(xwv3010)), new_sr(Neg(xwv410), xwv300)) new_gt(xwv4, xwv30, app(app(app(ty_@3, he), hf), hg)) -> new_esEs41(new_compare18(xwv4, xwv30, he, hf, hg)) new_esEs4(xwv40, xwv300, app(ty_[], fha)) -> new_esEs18(xwv40, xwv300, fha) new_ltEs20(xwv104, xwv107, ty_Integer) -> new_ltEs13(xwv104, xwv107) new_compare15(@2(xwv40, xwv41), @2(xwv300, xwv301), hc, hd) -> new_compare27(xwv40, xwv41, xwv300, xwv301, new_asAs(new_esEs7(xwv40, xwv300, hc), new_esEs8(xwv41, xwv301, hd)), hc, hd) new_gt(xwv4, xwv30, ty_@0) -> new_esEs41(new_compare8(xwv4, xwv30)) new_ltEs20(xwv104, xwv107, app(ty_Maybe, bge)) -> new_ltEs6(xwv104, xwv107, bge) new_ltEs19(xwv611, xwv621, app(ty_Ratio, bbf)) -> new_ltEs11(xwv611, xwv621, bbf) new_esEs9(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_lt20(xwv103, xwv106, app(ty_Ratio, bfg)) -> new_lt13(xwv103, xwv106, bfg) new_esEs32(xwv280, xwv330, app(ty_[], dge)) -> new_esEs18(xwv280, xwv330, dge) new_lt23(xwv125, xwv127, app(app(ty_@2, ecg), ech)) -> new_lt14(xwv125, xwv127, ecg, ech) new_esEs28(xwv102, xwv105, ty_Char) -> new_esEs25(xwv102, xwv105) new_esEs27(xwv610, xwv620, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs22(xwv610, xwv620, bag, bah, bba) new_esEs32(xwv280, xwv330, ty_Float) -> new_esEs23(xwv280, xwv330) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Bool) -> new_esEs16(xwv280, xwv330) new_ltEs19(xwv611, xwv621, app(ty_Maybe, bbb)) -> new_ltEs6(xwv611, xwv621, bbb) new_lt24(xwv18, xwv13, ty_Double) -> new_lt5(xwv18, xwv13) new_compare6(EQ, LT) -> GT new_compare27(xwv125, xwv126, xwv127, xwv128, True, ebh, eca) -> EQ new_lt19(xwv102, xwv105, app(ty_Ratio, bee)) -> new_lt13(xwv102, xwv105, bee) new_lt24(xwv18, xwv13, ty_Int) -> new_lt10(xwv18, xwv13) new_primEqInt(Neg(Succ(xwv2800)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xwv3300))) -> False new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Int) -> new_ltEs8(xwv610, xwv620) new_primEqInt(Pos(Succ(xwv2800)), Pos(Succ(xwv3300))) -> new_primEqNat0(xwv2800, xwv3300) new_esEs39(xwv280, xwv330, ty_Ordering) -> new_esEs13(xwv280, xwv330) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Int) -> new_esEs26(xwv280, xwv330) new_esEs29(xwv103, xwv106, ty_Char) -> new_esEs25(xwv103, xwv106) new_lt22(xwv610, xwv620, app(app(ty_@2, dbd), dbe)) -> new_lt14(xwv610, xwv620, dbd, dbe) new_compare7(xwv40, xwv300, ty_Double) -> new_compare19(xwv40, xwv300) new_ltEs6(Nothing, Nothing, de) -> True new_esEs4(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_esEs10(xwv41, xwv301, app(ty_[], ceb)) -> new_esEs18(xwv41, xwv301, ceb) new_compare17(False, True) -> LT new_compare28(xwv75, xwv76, False, dee, def) -> new_compare115(xwv75, xwv76, new_ltEs22(xwv75, xwv76, def), dee, def) new_primEqInt(Pos(Succ(xwv2800)), Neg(xwv330)) -> False new_primEqInt(Neg(Succ(xwv2800)), Pos(xwv330)) -> False new_esEs5(xwv40, xwv300, app(app(ty_@2, dhe), dhf)) -> new_esEs17(xwv40, xwv300, dhe, dhf) new_gt(xwv4, xwv30, ty_Int) -> new_gt0(xwv4, xwv30) new_ltEs6(Just(xwv610), Nothing, de) -> False new_primCmpInt(Neg(Zero), Neg(Succ(xwv3000))) -> new_primCmpNat0(Succ(xwv3000), Zero) new_esEs7(xwv40, xwv300, app(ty_Ratio, cgg)) -> new_esEs21(xwv40, xwv300, cgg) new_esEs13(LT, GT) -> False new_esEs13(GT, LT) -> False new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare17(True, True) -> EQ new_ltEs22(xwv75, xwv76, ty_Ordering) -> new_ltEs16(xwv75, xwv76) new_esEs5(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_primCompAux0(xwv40, xwv300, xwv56, bh) -> new_primCompAux00(xwv56, new_compare7(xwv40, xwv300, bh)) new_ltEs24(xwv68, xwv69, ty_Float) -> new_ltEs10(xwv68, xwv69) new_esEs35(xwv281, xwv331, app(ty_[], egf)) -> new_esEs18(xwv281, xwv331, egf) new_esEs6(xwv40, xwv300, app(ty_Ratio, ebb)) -> new_esEs21(xwv40, xwv300, ebb) new_esEs8(xwv41, xwv301, ty_Bool) -> new_esEs16(xwv41, xwv301) new_esEs28(xwv102, xwv105, ty_Integer) -> new_esEs19(xwv102, xwv105) new_not(False) -> True new_esEs9(xwv40, xwv300, ty_Int) -> new_esEs26(xwv40, xwv300) new_esEs15(Just(xwv280), Just(xwv330), ty_Float) -> new_esEs23(xwv280, xwv330) new_lt21(xwv611, xwv621, ty_Double) -> new_lt5(xwv611, xwv621) new_ltEs8(xwv61, xwv62) -> new_fsEs(new_compare12(xwv61, xwv62)) new_ltEs23(xwv126, xwv128, app(app(app(ty_@3, eec), eed), eee)) -> new_ltEs15(xwv126, xwv128, eec, eed, eee) new_ltEs24(xwv68, xwv69, app(ty_Maybe, ffd)) -> new_ltEs6(xwv68, xwv69, ffd) new_esEs31(xwv611, xwv621, ty_Float) -> new_esEs23(xwv611, xwv621) new_ltEs24(xwv68, xwv69, ty_Bool) -> new_ltEs14(xwv68, xwv69) new_ltEs24(xwv68, xwv69, ty_Ordering) -> new_ltEs16(xwv68, xwv69) new_ltEs6(Just(xwv610), Just(xwv620), app(ty_[], bcg)) -> new_ltEs9(xwv610, xwv620, bcg) new_compare14(:%(xwv40, xwv41), :%(xwv300, xwv301), ty_Integer) -> new_compare16(new_sr0(xwv40, xwv301), new_sr0(xwv300, xwv41)) new_lt6(xwv610, xwv620, app(ty_Ratio, bad)) -> new_lt13(xwv610, xwv620, bad) new_lt7(xwv18, xwv13) -> new_esEs12(new_compare8(xwv18, xwv13)) new_esEs41(LT) -> False new_compare7(xwv40, xwv300, ty_Int) -> new_compare12(xwv40, xwv300) new_ltEs21(xwv612, xwv622, ty_Int) -> new_ltEs8(xwv612, xwv622) new_esEs9(xwv40, xwv300, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs22(xwv40, xwv300, cdb, cdc, cdd) new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Bool) -> new_ltEs14(xwv610, xwv620) new_compare27(xwv125, xwv126, xwv127, xwv128, False, ebh, eca) -> new_compare113(xwv125, xwv126, xwv127, xwv128, new_lt23(xwv125, xwv127, ebh), new_asAs(new_esEs33(xwv125, xwv127, ebh), new_ltEs23(xwv126, xwv128, eca)), ebh, eca) new_esEs40(xwv281, xwv331, app(app(ty_@2, gbe), gbf)) -> new_esEs17(xwv281, xwv331, gbe, gbf) new_lt23(xwv125, xwv127, ty_Double) -> new_lt5(xwv125, xwv127) new_esEs27(xwv610, xwv620, app(app(ty_Either, baa), bab)) -> new_esEs24(xwv610, xwv620, baa, bab) new_esEs33(xwv125, xwv127, ty_Double) -> new_esEs14(xwv125, xwv127) new_lt23(xwv125, xwv127, app(ty_Ratio, ecf)) -> new_lt13(xwv125, xwv127, ecf) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xwv41, xwv301, app(ty_Maybe, che)) -> new_esEs15(xwv41, xwv301, che) new_esEs36(xwv282, xwv332, ty_Double) -> new_esEs14(xwv282, xwv332) new_ltEs24(xwv68, xwv69, ty_@0) -> new_ltEs5(xwv68, xwv69) new_ltEs22(xwv75, xwv76, ty_Bool) -> new_ltEs14(xwv75, xwv76) new_esEs18(:(xwv280, xwv281), [], dga) -> False new_esEs18([], :(xwv330, xwv331), dga) -> False new_ltEs7(Right(xwv610), Right(xwv620), df, ty_Integer) -> new_ltEs13(xwv610, xwv620) new_esEs39(xwv280, xwv330, app(app(ty_@2, gac), gad)) -> new_esEs17(xwv280, xwv330, gac, gad) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs27(xwv610, xwv620, ty_Char) -> new_esEs25(xwv610, xwv620) new_esEs24(Right(xwv280), Right(xwv330), cbb, ty_Integer) -> new_esEs19(xwv280, xwv330) new_compare7(xwv40, xwv300, app(app(ty_@2, cf), cg)) -> new_compare15(xwv40, xwv300, cf, cg) new_lt22(xwv610, xwv620, ty_Int) -> new_lt10(xwv610, xwv620) new_esEs25(Char(xwv280), Char(xwv330)) -> new_primEqNat0(xwv280, xwv330) new_lt6(xwv610, xwv620, ty_Int) -> new_lt10(xwv610, xwv620) new_esEs35(xwv281, xwv331, ty_Double) -> new_esEs14(xwv281, xwv331) new_compare6(LT, EQ) -> LT new_esEs28(xwv102, xwv105, ty_Float) -> new_esEs23(xwv102, xwv105) new_lt20(xwv103, xwv106, app(app(ty_@2, bfh), bga)) -> new_lt14(xwv103, xwv106, bfh, bga) new_lt21(xwv611, xwv621, app(ty_Ratio, dce)) -> new_lt13(xwv611, xwv621, dce) new_esEs39(xwv280, xwv330, app(ty_Ratio, gaf)) -> new_esEs21(xwv280, xwv330, gaf) new_ltEs6(Just(xwv610), Just(xwv620), app(app(ty_@2, bda), bdb)) -> new_ltEs12(xwv610, xwv620, bda, bdb) new_ltEs22(xwv75, xwv76, ty_@0) -> new_ltEs5(xwv75, xwv76) new_ltEs20(xwv104, xwv107, ty_Int) -> new_ltEs8(xwv104, xwv107) new_compare9(Just(xwv40), Just(xwv300), gg) -> new_compare25(xwv40, xwv300, new_esEs4(xwv40, xwv300, gg), gg) new_esEs9(xwv40, xwv300, app(ty_Maybe, cce)) -> new_esEs15(xwv40, xwv300, cce) new_esEs11(xwv42, xwv302, ty_Double) -> new_esEs14(xwv42, xwv302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs34(xwv280, xwv330, ty_Double) -> new_esEs14(xwv280, xwv330) new_compare8(@0, @0) -> EQ new_ltEs23(xwv126, xwv128, ty_Integer) -> new_ltEs13(xwv126, xwv128) new_lt22(xwv610, xwv620, app(ty_Ratio, dbc)) -> new_lt13(xwv610, xwv620, dbc) new_esEs24(Left(xwv280), Left(xwv330), ty_Ordering, bhg) -> new_esEs13(xwv280, xwv330) new_lt18(xwv18, xwv13) -> new_esEs12(new_compare5(xwv18, xwv13)) new_primEqNat0(Zero, Zero) -> True new_esEs7(xwv40, xwv300, ty_Ordering) -> new_esEs13(xwv40, xwv300) new_ltEs7(Right(xwv610), Right(xwv620), df, app(app(app(ty_@3, feg), feh), ffa)) -> new_ltEs15(xwv610, xwv620, feg, feh, ffa) new_compare6(GT, LT) -> GT new_esEs29(xwv103, xwv106, ty_Float) -> new_esEs23(xwv103, xwv106) new_ltEs23(xwv126, xwv128, ty_@0) -> new_ltEs5(xwv126, xwv128) new_esEs21(:%(xwv280, xwv281), :%(xwv330, xwv331), fag) -> new_asAs(new_esEs37(xwv280, xwv330, fag), new_esEs38(xwv281, xwv331, fag)) new_ltEs23(xwv126, xwv128, app(app(ty_Either, ede), edf)) -> new_ltEs7(xwv126, xwv128, ede, edf) new_ltEs24(xwv68, xwv69, ty_Integer) -> new_ltEs13(xwv68, xwv69) new_esEs24(Left(xwv280), Left(xwv330), app(app(app(ty_@3, cae), caf), cag), bhg) -> new_esEs22(xwv280, xwv330, cae, caf, cag) new_esEs4(xwv40, xwv300, app(ty_Ratio, fhb)) -> new_esEs21(xwv40, xwv300, fhb) new_compare29(xwv68, xwv69, False, ffb, ffc) -> new_compare10(xwv68, xwv69, new_ltEs24(xwv68, xwv69, ffb), ffb, ffc) new_compare9(Nothing, Nothing, gg) -> EQ new_asAs(False, xwv135) -> False new_compare114(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, xwv199, fa, fb, fc) -> new_compare112(xwv192, xwv193, xwv194, xwv195, xwv196, xwv197, True, fa, fb, fc) new_esEs24(Left(xwv280), Left(xwv330), app(ty_[], cac), bhg) -> new_esEs18(xwv280, xwv330, cac) new_esEs13(LT, EQ) -> False new_esEs13(EQ, LT) -> False new_ltEs7(Right(xwv610), Right(xwv620), df, ty_@0) -> new_ltEs5(xwv610, xwv620) new_lt21(xwv611, xwv621, ty_Int) -> new_lt10(xwv611, xwv621) new_ltEs19(xwv611, xwv621, ty_Int) -> new_ltEs8(xwv611, xwv621) new_ltEs22(xwv75, xwv76, app(ty_Maybe, deg)) -> new_ltEs6(xwv75, xwv76, deg) new_lt6(xwv610, xwv620, ty_Double) -> new_lt5(xwv610, xwv620) new_lt19(xwv102, xwv105, app(app(ty_@2, bef), beg)) -> new_lt14(xwv102, xwv105, bef, beg) new_ltEs4(xwv61, xwv62, ty_Double) -> new_ltEs18(xwv61, xwv62) new_lt17(xwv18, xwv13, gd, ge, gf) -> new_esEs12(new_compare18(xwv18, xwv13, gd, ge, gf)) The set Q consists of the following terms: new_compare9(Nothing, Nothing, x0) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Float) new_ltEs6(Just(x0), Just(x1), ty_Bool) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare12(x0, x1) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt24(x0, x1, ty_Float) new_lt21(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare6(LT, GT) new_compare6(GT, LT) new_ltEs6(Nothing, Nothing, x0) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs18([], [], x0) new_compare9(Just(x0), Just(x1), x2) new_gt(x0, x1, app(ty_[], x2)) new_lt15(x0, x1) new_esEs20(@0, @0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs39(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_compare7(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_ltEs4(x0, x1, ty_Int) new_lt17(x0, x1, x2, x3, x4) new_esEs4(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs13(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs35(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_Int) new_compare7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_lt24(x0, x1, ty_Integer) new_esEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs16(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt19(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, False, x2) new_compare115(x0, x1, False, x2, x3) new_esEs39(x0, x1, ty_Bool) new_compare11(Right(x0), Left(x1), x2, x3) new_compare11(Left(x0), Right(x1), x2, x3) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs24(x0, x1, ty_Bool) new_compare11(Right(x0), Right(x1), x2, x3) new_esEs36(x0, x1, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_lt22(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_lt21(x0, x1, ty_Char) new_lt7(x0, x1) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1, x2, x3) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Ordering) new_ltEs8(x0, x1) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare7(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_@0) new_lt24(x0, x1, ty_Bool) new_compare7(x0, x1, ty_Char) new_ltEs6(Just(x0), Just(x1), ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_@0) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, x2, x3) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs15(Nothing, Just(x0), x1) new_pePe(True, x0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_compare16(Integer(x0), Integer(x1)) new_esEs34(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Int) new_compare29(x0, x1, True, x2, x3) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs31(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, x2) new_compare6(EQ, GT) new_compare6(GT, EQ) new_esEs12(GT) new_gt0(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt20(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Char) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(:(x0, x1), [], x2) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_lt24(x0, x1, ty_@0) new_gt(x0, x1, ty_Integer) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_ltEs4(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs14(False, False) new_esEs9(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Char) new_gt(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), ty_Integer) new_esEs15(Just(x0), Just(x1), ty_@0) new_esEs23(Float(x0, x1), Float(x2, x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Double) new_lt19(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_esEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare7(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(LT, EQ) new_esEs13(EQ, LT) new_esEs28(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_gt(x0, x1, ty_Double) new_esEs13(EQ, EQ) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_asAs(True, x0) new_ltEs22(x0, x1, ty_Int) new_esEs40(x0, x1, ty_@0) new_lt6(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_@0) new_lt24(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Bool) new_gt(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare9(Nothing, Just(x0), x1) new_esEs30(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1) new_esEs11(x0, x1, ty_Float) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs15(Just(x0), Just(x1), app(ty_[], x2)) new_lt6(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Int) new_ltEs4(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_lt18(x0, x1) new_not(True) new_esEs34(x0, x1, ty_Integer) new_fsEs(x0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_esEs10(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_esEs40(x0, x1, ty_Int) new_compare111(x0, x1, x2, x3, False, x4, x5) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt24(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs15(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_Integer) new_ltEs6(Just(x0), Nothing, x1) new_ltEs9(x0, x1, x2) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Char) new_esEs31(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt16(x0, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Char) new_compare6(LT, LT) new_esEs35(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Zero) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18([], :(x0, x1), x2) new_esEs10(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Ordering) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs9(x0, x1, ty_Double) new_compare5(Char(x0), Char(x1)) new_ltEs5(x0, x1) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs23(x0, x1, ty_@0) new_ltEs6(Nothing, Just(x0), x1) new_esEs4(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_compare0([], :(x0, x1), x2) new_lt6(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Float) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs34(x0, x1, ty_Char) new_primCompAux00(x0, EQ) new_esEs27(x0, x1, ty_@0) new_ltEs17(x0, x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs13(EQ, GT) new_esEs13(GT, EQ) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs12(LT) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs34(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Bool) new_compare17(False, False) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt13(x0, x1, x2) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_compare6(EQ, EQ) new_esEs41(LT) new_esEs11(x0, x1, ty_Char) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Char) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Integer) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt23(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_lt19(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_pePe(False, x0) new_lt21(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs19(Integer(x0), Integer(x1)) new_compare10(x0, x1, False, x2, x3) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs31(x0, x1, app(ty_[], x2)) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(x0, x1, ty_Double) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare17(True, False) new_compare17(False, True) new_esEs6(x0, x1, ty_Integer) new_primMulInt(Neg(x0), Neg(x1)) new_esEs34(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_compare0(:(x0, x1), [], x2) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, x2) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Ordering) new_sr(x0, x1) new_esEs10(x0, x1, ty_Double) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_compare7(x0, x1, ty_Int) new_compare110(x0, x1, True, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_compare25(x0, x1, True, x2) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Int) new_compare0([], [], x0) new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Ordering) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(True, True) new_ltEs24(x0, x1, ty_Char) new_compare8(@0, @0) new_ltEs24(x0, x1, ty_Double) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs15(Just(x0), Just(x1), ty_Ordering) new_lt6(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Float) new_esEs15(Just(x0), Nothing, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_esEs7(x0, x1, ty_Float) new_ltEs6(Just(x0), Just(x1), ty_Ordering) new_esEs41(GT) new_esEs33(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs40(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs31(x0, x1, ty_Int) new_ltEs10(x0, x1) new_primCmpNat0(Zero, Succ(x0)) new_esEs35(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_ltEs16(GT, GT) new_esEs7(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_@0) new_compare7(x0, x1, ty_@0) new_ltEs6(Just(x0), Just(x1), ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, ty_Ordering) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs23(x0, x1, ty_Int) new_lt23(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Char) new_compare28(x0, x1, True, x2, x3) new_primPlusNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_compare7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs16(False, False) new_esEs9(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare9(Just(x0), Nothing, x1) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs15(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_lt22(x0, x1, ty_Int) new_primCompAux00(x0, GT) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_esEs13(GT, GT) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_lt19(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs16(EQ, EQ) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Integer) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_esEs29(x0, x1, ty_Char) new_sr0(Integer(x0), Integer(x1)) new_esEs5(x0, x1, ty_Bool) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_compare7(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, ty_Float) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_ltEs23(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt21(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt24(x0, x1, app(ty_Maybe, x2)) new_compare6(EQ, LT) new_compare6(LT, EQ) new_esEs9(x0, x1, ty_Integer) new_compare6(GT, GT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs14(True, True) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt10(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_compare111(x0, x1, x2, x3, True, x4, x5) new_ltEs24(x0, x1, ty_Float) new_compare7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Int) new_lt6(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare17(True, True) new_ltEs19(x0, x1, ty_Float) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs7(x0, x1, ty_Int) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs18(:(x0, x1), :(x2, x3), x4) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs15(Just(x0), Just(x1), ty_Integer) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_lt19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_compare11(Left(x0), Left(x1), x2, x3) new_ltEs22(x0, x1, ty_Double) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_@0) new_compare7(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt22(x0, x1, ty_Integer) new_esEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_compare7(x0, x1, app(ty_[], x2)) new_gt(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs8(x0, x1, ty_Int) new_lt19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Ordering) new_gt(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_@0) new_esEs13(LT, GT) new_esEs13(GT, LT) new_esEs15(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs13(x0, x1) new_ltEs19(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_Integer) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_ltEs6(Just(x0), Just(x1), ty_Double) new_esEs25(Char(x0), Char(x1)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs12(EQ) new_lt21(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs15(Just(x0), Just(x1), ty_Bool) new_compare115(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_esEs41(EQ) new_ltEs4(x0, x1, ty_Char) new_ltEs14(False, True) new_ltEs14(True, False) new_compare28(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1) new_ltEs18(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_ltEs11(x0, x1, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Integer) new_esEs15(Just(x0), Just(x1), ty_Int) new_esEs10(x0, x1, ty_Ordering) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_lt12(x0, x1) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs16(False, True) new_esEs16(True, False) new_lt20(x0, x1, ty_Char) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Integer) new_lt22(x0, x1, ty_@0) new_compare27(x0, x1, x2, x3, False, x4, x5) new_esEs15(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, LT) new_compare29(x0, x1, False, x2, x3) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_esEs30(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 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_delFromFM1(xwv28, xwv29, xwv30, xwv31, xwv32, xwv33, True, bb, bc) -> new_delFromFM(xwv31, xwv33, bb, bc) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_delFromFM(Branch(xwv30, xwv31, xwv32, xwv33, xwv34), xwv4, bd, be) -> new_delFromFM2(xwv30, xwv31, xwv32, xwv33, xwv34, xwv4, new_gt(xwv4, xwv30, bd), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, h, ba) -> new_delFromFM1(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_lt24(xwv18, xwv13, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_delFromFM2(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, h, ba) -> new_delFromFM(xwv17, xwv18, h, ba) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) 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_deleteMin(xwv520, xwv521, xwv522, Branch(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234), xwv524, h, ba) -> new_deleteMin(xwv5230, xwv5231, xwv5232, xwv5233, xwv5234, h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 ---------------------------------------- (43) YES ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_elt20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, h, ba) -> new_glueBal2Mid_elt20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) 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_glueBal2Mid_elt20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, Branch(xwv2770, xwv2771, xwv2772, xwv2773, xwv2774), xwv278, h, ba) -> new_glueBal2Mid_elt20(xwv264, xwv265, xwv266, xwv267, xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv2770, xwv2771, xwv2772, xwv2773, xwv2774, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (46) YES ---------------------------------------- (47) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_key20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, h, ba) -> new_glueBal2Mid_key20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (48) 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_glueBal2Mid_key20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv258, xwv259, xwv260, Branch(xwv2610, xwv2611, xwv2612, xwv2613, xwv2614), xwv262, h, ba) -> new_glueBal2Mid_key20(xwv248, xwv249, xwv250, xwv251, xwv252, xwv253, xwv254, xwv255, xwv256, xwv257, xwv2610, xwv2611, xwv2612, xwv2613, xwv2614, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (49) YES ---------------------------------------- (50) Obligation: Q DP problem: The TRS P consists of the following rules: new_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (51) 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_deleteMax(xwv510, xwv511, xwv512, xwv513, Branch(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144), h, ba) -> new_deleteMax(xwv5140, xwv5141, xwv5142, xwv5143, xwv5144, h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 ---------------------------------------- (52) YES ---------------------------------------- (53) Obligation: Q DP problem: The TRS P consists of the following rules: new_glueBal2Mid_elt10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), h, ba) -> new_glueBal2Mid_elt10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (54) 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_glueBal2Mid_elt10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv306, xwv307, xwv308, xwv309, Branch(xwv3100, xwv3101, xwv3102, xwv3103, xwv3104), h, ba) -> new_glueBal2Mid_elt10(xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, xwv304, xwv305, xwv3100, xwv3101, xwv3102, xwv3103, xwv3104, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 ---------------------------------------- (55) YES ---------------------------------------- (56) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (57) 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(xwv2800), Succ(xwv3300)) -> new_primEqNat(xwv2800, xwv3300) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (58) YES