/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: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 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, 7 ms] (10) HASKELL (11) NumRed [SOUND, 10 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 18 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : _) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (\vv1 ->case vv1 of { (x,i)-> if p x then i : [] else []; _-> []; } ) (zip xs (enumFrom 0)); } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\ab->(a,b)" is transformed to "zip0 a b = (a,b); " The following Lambda expression "\vv1->case vv1 of { (x,i) -> if p x then i : [] else []; _ -> []} " is transformed to "findIndices0 p vv1 = case vv1 of { (x,i) -> if p x then i : [] else []; _ -> []} ; " ---------------------------------------- (2) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : _) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = case vv1 of { (x,i)-> if p x then i : [] else []; _-> []; } ; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case vv1 of { (x,i) -> if p x then i : [] else []; _ -> []} " is transformed to "findIndices00 p (x,i) = if p x then i : [] else []; findIndices00 p _ = []; " ---------------------------------------- (4) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : _) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = if p x then i : [] else []; findIndices00 p _ = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if p x then i : [] else []" is transformed to "findIndices000 i True = i : []; findIndices000 i False = []; " ---------------------------------------- (6) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : _) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p _ = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : xz) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p yu = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " ---------------------------------------- (10) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : xz) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p yu = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; listToMaybe :: [a] -> Maybe a; listToMaybe [] = Nothing; listToMaybe (a : xz) = Just a; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; elemIndex :: Eq a => a -> [a] -> Maybe Int; elemIndex x = findIndex (== x); findIndex :: (a -> Bool) -> [a] -> Maybe Int; findIndex p = Maybe.listToMaybe . findIndices p; findIndices :: (a -> Bool) -> [a] -> [Int]; findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); findIndices0 p vv1 = findIndices00 p vv1; findIndices00 p (x,i) = findIndices000 i (p x); findIndices00 p yu = []; findIndices000 i True = i : []; findIndices000 i False = []; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="List.elemIndex",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="List.elemIndex yv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="List.elemIndex yv3 yv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="List.findIndex (yv3 ==) yv4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="Maybe.listToMaybe . List.findIndices (yv3 ==)",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 7[label="Maybe.listToMaybe (List.findIndices (yv3 ==) yv4)",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 8[label="Maybe.listToMaybe (concatMap (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 9[label="Maybe.listToMaybe (concat . map (List.findIndices0 (yv3 ==)))",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 10[label="Maybe.listToMaybe (concat (map (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 11[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 12[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="burlywood",shape="box"];1617[label="yv4/yv40 : yv41",fontsize=10,color="white",style="solid",shape="box"];12 -> 1617[label="",style="solid", color="burlywood", weight=9]; 1617 -> 13[label="",style="solid", color="burlywood", weight=3]; 1618[label="yv4/[]",fontsize=10,color="white",style="solid",shape="box"];12 -> 1618[label="",style="solid", color="burlywood", weight=9]; 1618 -> 14[label="",style="solid", color="burlywood", weight=3]; 13[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 14[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 [] (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 15[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (numericEnumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) []))",fontsize=16,color="black",shape="triangle"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (Pos Zero : (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="Maybe.listToMaybe (foldr (++) [] [])",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zip0 yv40 (Pos Zero) : zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20[label="Maybe.listToMaybe []",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 21[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (yv3 ==) (zip0 yv40 (Pos Zero)) : map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];21 -> 23[label="",style="solid", color="black", weight=3]; 22[label="Nothing",fontsize=16,color="green",shape="box"];23[label="Maybe.listToMaybe ((++) List.findIndices0 (yv3 ==) (zip0 yv40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];23 -> 24[label="",style="solid", color="black", weight=3]; 24[label="Maybe.listToMaybe ((++) List.findIndices00 (yv3 ==) (zip0 yv40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];24 -> 25[label="",style="solid", color="black", weight=3]; 25[label="Maybe.listToMaybe ((++) List.findIndices00 (yv3 ==) (yv40,Pos Zero) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];25 -> 26[label="",style="solid", color="black", weight=3]; 26[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv3 == yv40) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1619[label="yv3/Left yv30",fontsize=10,color="white",style="solid",shape="box"];26 -> 1619[label="",style="solid", color="burlywood", weight=9]; 1619 -> 27[label="",style="solid", color="burlywood", weight=3]; 1620[label="yv3/Right yv30",fontsize=10,color="white",style="solid",shape="box"];26 -> 1620[label="",style="solid", color="burlywood", weight=9]; 1620 -> 28[label="",style="solid", color="burlywood", weight=3]; 27[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Left yv30 == yv40) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1621[label="yv40/Left yv400",fontsize=10,color="white",style="solid",shape="box"];27 -> 1621[label="",style="solid", color="burlywood", weight=9]; 1621 -> 29[label="",style="solid", color="burlywood", weight=3]; 1622[label="yv40/Right yv400",fontsize=10,color="white",style="solid",shape="box"];27 -> 1622[label="",style="solid", color="burlywood", weight=9]; 1622 -> 30[label="",style="solid", color="burlywood", weight=3]; 28[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Right yv30 == yv40) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1623[label="yv40/Left yv400",fontsize=10,color="white",style="solid",shape="box"];28 -> 1623[label="",style="solid", color="burlywood", weight=9]; 1623 -> 31[label="",style="solid", color="burlywood", weight=3]; 1624[label="yv40/Right yv400",fontsize=10,color="white",style="solid",shape="box"];28 -> 1624[label="",style="solid", color="burlywood", weight=9]; 1624 -> 32[label="",style="solid", color="burlywood", weight=3]; 29[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Left yv30 == Left yv400) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 30[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Left yv30 == Right yv400) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 31[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Right yv30 == Left yv400) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 32[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Right yv30 == Right yv400) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 33 -> 807[label="",style="dashed", color="red", weight=0]; 33[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 == yv400) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];33 -> 808[label="",style="dashed", color="magenta", weight=3]; 33 -> 809[label="",style="dashed", color="magenta", weight=3]; 33 -> 810[label="",style="dashed", color="magenta", weight=3]; 33 -> 811[label="",style="dashed", color="magenta", weight=3]; 33 -> 812[label="",style="dashed", color="magenta", weight=3]; 34 -> 807[label="",style="dashed", color="red", weight=0]; 34[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) False foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];34 -> 813[label="",style="dashed", color="magenta", weight=3]; 34 -> 814[label="",style="dashed", color="magenta", weight=3]; 34 -> 815[label="",style="dashed", color="magenta", weight=3]; 34 -> 816[label="",style="dashed", color="magenta", weight=3]; 34 -> 817[label="",style="dashed", color="magenta", weight=3]; 35 -> 839[label="",style="dashed", color="red", weight=0]; 35[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) False foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];35 -> 840[label="",style="dashed", color="magenta", weight=3]; 35 -> 841[label="",style="dashed", color="magenta", weight=3]; 35 -> 842[label="",style="dashed", color="magenta", weight=3]; 35 -> 843[label="",style="dashed", color="magenta", weight=3]; 35 -> 844[label="",style="dashed", color="magenta", weight=3]; 36 -> 839[label="",style="dashed", color="red", weight=0]; 36[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 == yv400) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];36 -> 845[label="",style="dashed", color="magenta", weight=3]; 36 -> 846[label="",style="dashed", color="magenta", weight=3]; 36 -> 847[label="",style="dashed", color="magenta", weight=3]; 36 -> 848[label="",style="dashed", color="magenta", weight=3]; 36 -> 849[label="",style="dashed", color="magenta", weight=3]; 808[label="yv30",fontsize=16,color="green",shape="box"];809[label="Zero",fontsize=16,color="green",shape="box"];810[label="yv41",fontsize=16,color="green",shape="box"];811[label="Zero",fontsize=16,color="green",shape="box"];812[label="yv30 == yv400",fontsize=16,color="blue",shape="box"];1625[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1625[label="",style="solid", color="blue", weight=9]; 1625 -> 823[label="",style="solid", color="blue", weight=3]; 1626[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1626[label="",style="solid", color="blue", weight=9]; 1626 -> 824[label="",style="solid", color="blue", weight=3]; 1627[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1627[label="",style="solid", color="blue", weight=9]; 1627 -> 825[label="",style="solid", color="blue", weight=3]; 1628[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1628[label="",style="solid", color="blue", weight=9]; 1628 -> 826[label="",style="solid", color="blue", weight=3]; 1629[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1629[label="",style="solid", color="blue", weight=9]; 1629 -> 827[label="",style="solid", color="blue", weight=3]; 1630[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1630[label="",style="solid", color="blue", weight=9]; 1630 -> 828[label="",style="solid", color="blue", weight=3]; 1631[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1631[label="",style="solid", color="blue", weight=9]; 1631 -> 829[label="",style="solid", color="blue", weight=3]; 1632[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1632[label="",style="solid", color="blue", weight=9]; 1632 -> 830[label="",style="solid", color="blue", weight=3]; 1633[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1633[label="",style="solid", color="blue", weight=9]; 1633 -> 831[label="",style="solid", color="blue", weight=3]; 1634[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1634[label="",style="solid", color="blue", weight=9]; 1634 -> 832[label="",style="solid", color="blue", weight=3]; 1635[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1635[label="",style="solid", color="blue", weight=9]; 1635 -> 833[label="",style="solid", color="blue", weight=3]; 1636[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1636[label="",style="solid", color="blue", weight=9]; 1636 -> 834[label="",style="solid", color="blue", weight=3]; 1637[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1637[label="",style="solid", color="blue", weight=9]; 1637 -> 835[label="",style="solid", color="blue", weight=3]; 1638[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];812 -> 1638[label="",style="solid", color="blue", weight=9]; 1638 -> 836[label="",style="solid", color="blue", weight=3]; 807[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv39) yv43 foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];1639[label="yv43/False",fontsize=10,color="white",style="solid",shape="box"];807 -> 1639[label="",style="solid", color="burlywood", weight=9]; 1639 -> 837[label="",style="solid", color="burlywood", weight=3]; 1640[label="yv43/True",fontsize=10,color="white",style="solid",shape="box"];807 -> 1640[label="",style="solid", color="burlywood", weight=9]; 1640 -> 838[label="",style="solid", color="burlywood", weight=3]; 813[label="yv30",fontsize=16,color="green",shape="box"];814[label="Zero",fontsize=16,color="green",shape="box"];815[label="yv41",fontsize=16,color="green",shape="box"];816[label="Zero",fontsize=16,color="green",shape="box"];817[label="False",fontsize=16,color="green",shape="box"];840[label="yv41",fontsize=16,color="green",shape="box"];841[label="Zero",fontsize=16,color="green",shape="box"];842[label="Zero",fontsize=16,color="green",shape="box"];843[label="False",fontsize=16,color="green",shape="box"];844[label="yv30",fontsize=16,color="green",shape="box"];839[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv41) yv44 foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];1641[label="yv44/False",fontsize=10,color="white",style="solid",shape="box"];839 -> 1641[label="",style="solid", color="burlywood", weight=9]; 1641 -> 855[label="",style="solid", color="burlywood", weight=3]; 1642[label="yv44/True",fontsize=10,color="white",style="solid",shape="box"];839 -> 1642[label="",style="solid", color="burlywood", weight=9]; 1642 -> 856[label="",style="solid", color="burlywood", weight=3]; 845[label="yv41",fontsize=16,color="green",shape="box"];846[label="Zero",fontsize=16,color="green",shape="box"];847[label="Zero",fontsize=16,color="green",shape="box"];848[label="yv30 == yv400",fontsize=16,color="blue",shape="box"];1643[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1643[label="",style="solid", color="blue", weight=9]; 1643 -> 857[label="",style="solid", color="blue", weight=3]; 1644[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1644[label="",style="solid", color="blue", weight=9]; 1644 -> 858[label="",style="solid", color="blue", weight=3]; 1645[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1645[label="",style="solid", color="blue", weight=9]; 1645 -> 859[label="",style="solid", color="blue", weight=3]; 1646[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1646[label="",style="solid", color="blue", weight=9]; 1646 -> 860[label="",style="solid", color="blue", weight=3]; 1647[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1647[label="",style="solid", color="blue", weight=9]; 1647 -> 861[label="",style="solid", color="blue", weight=3]; 1648[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1648[label="",style="solid", color="blue", weight=9]; 1648 -> 862[label="",style="solid", color="blue", weight=3]; 1649[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1649[label="",style="solid", color="blue", weight=9]; 1649 -> 863[label="",style="solid", color="blue", weight=3]; 1650[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1650[label="",style="solid", color="blue", weight=9]; 1650 -> 864[label="",style="solid", color="blue", weight=3]; 1651[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1651[label="",style="solid", color="blue", weight=9]; 1651 -> 865[label="",style="solid", color="blue", weight=3]; 1652[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1652[label="",style="solid", color="blue", weight=9]; 1652 -> 866[label="",style="solid", color="blue", weight=3]; 1653[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1653[label="",style="solid", color="blue", weight=9]; 1653 -> 867[label="",style="solid", color="blue", weight=3]; 1654[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1654[label="",style="solid", color="blue", weight=9]; 1654 -> 868[label="",style="solid", color="blue", weight=3]; 1655[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1655[label="",style="solid", color="blue", weight=9]; 1655 -> 869[label="",style="solid", color="blue", weight=3]; 1656[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 1656[label="",style="solid", color="blue", weight=9]; 1656 -> 870[label="",style="solid", color="blue", weight=3]; 849[label="yv30",fontsize=16,color="green",shape="box"];823[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1657[label="yv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];823 -> 1657[label="",style="solid", color="burlywood", weight=9]; 1657 -> 871[label="",style="solid", color="burlywood", weight=3]; 1658[label="yv30/Just yv300",fontsize=10,color="white",style="solid",shape="box"];823 -> 1658[label="",style="solid", color="burlywood", weight=9]; 1658 -> 872[label="",style="solid", color="burlywood", weight=3]; 824[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1659[label="yv30/False",fontsize=10,color="white",style="solid",shape="box"];824 -> 1659[label="",style="solid", color="burlywood", weight=9]; 1659 -> 873[label="",style="solid", color="burlywood", weight=3]; 1660[label="yv30/True",fontsize=10,color="white",style="solid",shape="box"];824 -> 1660[label="",style="solid", color="burlywood", weight=9]; 1660 -> 874[label="",style="solid", color="burlywood", weight=3]; 825[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1661[label="yv30/Left yv300",fontsize=10,color="white",style="solid",shape="box"];825 -> 1661[label="",style="solid", color="burlywood", weight=9]; 1661 -> 875[label="",style="solid", color="burlywood", weight=3]; 1662[label="yv30/Right yv300",fontsize=10,color="white",style="solid",shape="box"];825 -> 1662[label="",style="solid", color="burlywood", weight=9]; 1662 -> 876[label="",style="solid", color="burlywood", weight=3]; 826[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];826 -> 877[label="",style="solid", color="black", weight=3]; 827[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1663[label="yv30/(yv300,yv301,yv302)",fontsize=10,color="white",style="solid",shape="box"];827 -> 1663[label="",style="solid", color="burlywood", weight=9]; 1663 -> 878[label="",style="solid", color="burlywood", weight=3]; 828[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];828 -> 879[label="",style="solid", color="black", weight=3]; 829[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];829 -> 880[label="",style="solid", color="black", weight=3]; 830[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1664[label="yv30/yv300 :% yv301",fontsize=10,color="white",style="solid",shape="box"];830 -> 1664[label="",style="solid", color="burlywood", weight=9]; 1664 -> 881[label="",style="solid", color="burlywood", weight=3]; 831[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1665[label="yv30/LT",fontsize=10,color="white",style="solid",shape="box"];831 -> 1665[label="",style="solid", color="burlywood", weight=9]; 1665 -> 882[label="",style="solid", color="burlywood", weight=3]; 1666[label="yv30/EQ",fontsize=10,color="white",style="solid",shape="box"];831 -> 1666[label="",style="solid", color="burlywood", weight=9]; 1666 -> 883[label="",style="solid", color="burlywood", weight=3]; 1667[label="yv30/GT",fontsize=10,color="white",style="solid",shape="box"];831 -> 1667[label="",style="solid", color="burlywood", weight=9]; 1667 -> 884[label="",style="solid", color="burlywood", weight=3]; 832[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1668[label="yv30/yv300 : yv301",fontsize=10,color="white",style="solid",shape="box"];832 -> 1668[label="",style="solid", color="burlywood", weight=9]; 1668 -> 885[label="",style="solid", color="burlywood", weight=3]; 1669[label="yv30/[]",fontsize=10,color="white",style="solid",shape="box"];832 -> 1669[label="",style="solid", color="burlywood", weight=9]; 1669 -> 886[label="",style="solid", color="burlywood", weight=3]; 833[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1670[label="yv30/()",fontsize=10,color="white",style="solid",shape="box"];833 -> 1670[label="",style="solid", color="burlywood", weight=9]; 1670 -> 887[label="",style="solid", color="burlywood", weight=3]; 834[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];834 -> 888[label="",style="solid", color="black", weight=3]; 835[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1671[label="yv30/Integer yv300",fontsize=10,color="white",style="solid",shape="box"];835 -> 1671[label="",style="solid", color="burlywood", weight=9]; 1671 -> 889[label="",style="solid", color="burlywood", weight=3]; 836[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1672[label="yv30/(yv300,yv301)",fontsize=10,color="white",style="solid",shape="box"];836 -> 1672[label="",style="solid", color="burlywood", weight=9]; 1672 -> 890[label="",style="solid", color="burlywood", weight=3]; 837[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv39) False foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];837 -> 891[label="",style="solid", color="black", weight=3]; 838[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv39) True foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];838 -> 892[label="",style="solid", color="black", weight=3]; 855[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv41) False foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];855 -> 893[label="",style="solid", color="black", weight=3]; 856[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv41) True foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];856 -> 894[label="",style="solid", color="black", weight=3]; 857 -> 823[label="",style="dashed", color="red", weight=0]; 857[label="yv30 == yv400",fontsize=16,color="magenta"];857 -> 895[label="",style="dashed", color="magenta", weight=3]; 857 -> 896[label="",style="dashed", color="magenta", weight=3]; 858 -> 824[label="",style="dashed", color="red", weight=0]; 858[label="yv30 == yv400",fontsize=16,color="magenta"];858 -> 897[label="",style="dashed", color="magenta", weight=3]; 858 -> 898[label="",style="dashed", color="magenta", weight=3]; 859 -> 825[label="",style="dashed", color="red", weight=0]; 859[label="yv30 == yv400",fontsize=16,color="magenta"];859 -> 899[label="",style="dashed", color="magenta", weight=3]; 859 -> 900[label="",style="dashed", color="magenta", weight=3]; 860 -> 826[label="",style="dashed", color="red", weight=0]; 860[label="yv30 == yv400",fontsize=16,color="magenta"];860 -> 901[label="",style="dashed", color="magenta", weight=3]; 860 -> 902[label="",style="dashed", color="magenta", weight=3]; 861 -> 827[label="",style="dashed", color="red", weight=0]; 861[label="yv30 == yv400",fontsize=16,color="magenta"];861 -> 903[label="",style="dashed", color="magenta", weight=3]; 861 -> 904[label="",style="dashed", color="magenta", weight=3]; 862 -> 828[label="",style="dashed", color="red", weight=0]; 862[label="yv30 == yv400",fontsize=16,color="magenta"];862 -> 905[label="",style="dashed", color="magenta", weight=3]; 862 -> 906[label="",style="dashed", color="magenta", weight=3]; 863 -> 829[label="",style="dashed", color="red", weight=0]; 863[label="yv30 == yv400",fontsize=16,color="magenta"];863 -> 907[label="",style="dashed", color="magenta", weight=3]; 863 -> 908[label="",style="dashed", color="magenta", weight=3]; 864 -> 830[label="",style="dashed", color="red", weight=0]; 864[label="yv30 == yv400",fontsize=16,color="magenta"];864 -> 909[label="",style="dashed", color="magenta", weight=3]; 864 -> 910[label="",style="dashed", color="magenta", weight=3]; 865 -> 831[label="",style="dashed", color="red", weight=0]; 865[label="yv30 == yv400",fontsize=16,color="magenta"];865 -> 911[label="",style="dashed", color="magenta", weight=3]; 865 -> 912[label="",style="dashed", color="magenta", weight=3]; 866 -> 832[label="",style="dashed", color="red", weight=0]; 866[label="yv30 == yv400",fontsize=16,color="magenta"];866 -> 913[label="",style="dashed", color="magenta", weight=3]; 866 -> 914[label="",style="dashed", color="magenta", weight=3]; 867 -> 833[label="",style="dashed", color="red", weight=0]; 867[label="yv30 == yv400",fontsize=16,color="magenta"];867 -> 915[label="",style="dashed", color="magenta", weight=3]; 867 -> 916[label="",style="dashed", color="magenta", weight=3]; 868 -> 834[label="",style="dashed", color="red", weight=0]; 868[label="yv30 == yv400",fontsize=16,color="magenta"];868 -> 917[label="",style="dashed", color="magenta", weight=3]; 868 -> 918[label="",style="dashed", color="magenta", weight=3]; 869 -> 835[label="",style="dashed", color="red", weight=0]; 869[label="yv30 == yv400",fontsize=16,color="magenta"];869 -> 919[label="",style="dashed", color="magenta", weight=3]; 869 -> 920[label="",style="dashed", color="magenta", weight=3]; 870 -> 836[label="",style="dashed", color="red", weight=0]; 870[label="yv30 == yv400",fontsize=16,color="magenta"];870 -> 921[label="",style="dashed", color="magenta", weight=3]; 870 -> 922[label="",style="dashed", color="magenta", weight=3]; 871[label="Nothing == yv400",fontsize=16,color="burlywood",shape="box"];1673[label="yv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];871 -> 1673[label="",style="solid", color="burlywood", weight=9]; 1673 -> 923[label="",style="solid", color="burlywood", weight=3]; 1674[label="yv400/Just yv4000",fontsize=10,color="white",style="solid",shape="box"];871 -> 1674[label="",style="solid", color="burlywood", weight=9]; 1674 -> 924[label="",style="solid", color="burlywood", weight=3]; 872[label="Just yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1675[label="yv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];872 -> 1675[label="",style="solid", color="burlywood", weight=9]; 1675 -> 925[label="",style="solid", color="burlywood", weight=3]; 1676[label="yv400/Just yv4000",fontsize=10,color="white",style="solid",shape="box"];872 -> 1676[label="",style="solid", color="burlywood", weight=9]; 1676 -> 926[label="",style="solid", color="burlywood", weight=3]; 873[label="False == yv400",fontsize=16,color="burlywood",shape="box"];1677[label="yv400/False",fontsize=10,color="white",style="solid",shape="box"];873 -> 1677[label="",style="solid", color="burlywood", weight=9]; 1677 -> 927[label="",style="solid", color="burlywood", weight=3]; 1678[label="yv400/True",fontsize=10,color="white",style="solid",shape="box"];873 -> 1678[label="",style="solid", color="burlywood", weight=9]; 1678 -> 928[label="",style="solid", color="burlywood", weight=3]; 874[label="True == yv400",fontsize=16,color="burlywood",shape="box"];1679[label="yv400/False",fontsize=10,color="white",style="solid",shape="box"];874 -> 1679[label="",style="solid", color="burlywood", weight=9]; 1679 -> 929[label="",style="solid", color="burlywood", weight=3]; 1680[label="yv400/True",fontsize=10,color="white",style="solid",shape="box"];874 -> 1680[label="",style="solid", color="burlywood", weight=9]; 1680 -> 930[label="",style="solid", color="burlywood", weight=3]; 875[label="Left yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1681[label="yv400/Left yv4000",fontsize=10,color="white",style="solid",shape="box"];875 -> 1681[label="",style="solid", color="burlywood", weight=9]; 1681 -> 931[label="",style="solid", color="burlywood", weight=3]; 1682[label="yv400/Right yv4000",fontsize=10,color="white",style="solid",shape="box"];875 -> 1682[label="",style="solid", color="burlywood", weight=9]; 1682 -> 932[label="",style="solid", color="burlywood", weight=3]; 876[label="Right yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1683[label="yv400/Left yv4000",fontsize=10,color="white",style="solid",shape="box"];876 -> 1683[label="",style="solid", color="burlywood", weight=9]; 1683 -> 933[label="",style="solid", color="burlywood", weight=3]; 1684[label="yv400/Right yv4000",fontsize=10,color="white",style="solid",shape="box"];876 -> 1684[label="",style="solid", color="burlywood", weight=9]; 1684 -> 934[label="",style="solid", color="burlywood", weight=3]; 877[label="primEqInt yv30 yv400",fontsize=16,color="burlywood",shape="triangle"];1685[label="yv30/Pos yv300",fontsize=10,color="white",style="solid",shape="box"];877 -> 1685[label="",style="solid", color="burlywood", weight=9]; 1685 -> 935[label="",style="solid", color="burlywood", weight=3]; 1686[label="yv30/Neg yv300",fontsize=10,color="white",style="solid",shape="box"];877 -> 1686[label="",style="solid", color="burlywood", weight=9]; 1686 -> 936[label="",style="solid", color="burlywood", weight=3]; 878[label="(yv300,yv301,yv302) == yv400",fontsize=16,color="burlywood",shape="box"];1687[label="yv400/(yv4000,yv4001,yv4002)",fontsize=10,color="white",style="solid",shape="box"];878 -> 1687[label="",style="solid", color="burlywood", weight=9]; 1687 -> 937[label="",style="solid", color="burlywood", weight=3]; 879[label="primEqFloat yv30 yv400",fontsize=16,color="burlywood",shape="box"];1688[label="yv30/Float yv300 yv301",fontsize=10,color="white",style="solid",shape="box"];879 -> 1688[label="",style="solid", color="burlywood", weight=9]; 1688 -> 938[label="",style="solid", color="burlywood", weight=3]; 880[label="primEqDouble yv30 yv400",fontsize=16,color="burlywood",shape="box"];1689[label="yv30/Double yv300 yv301",fontsize=10,color="white",style="solid",shape="box"];880 -> 1689[label="",style="solid", color="burlywood", weight=9]; 1689 -> 939[label="",style="solid", color="burlywood", weight=3]; 881[label="yv300 :% yv301 == yv400",fontsize=16,color="burlywood",shape="box"];1690[label="yv400/yv4000 :% yv4001",fontsize=10,color="white",style="solid",shape="box"];881 -> 1690[label="",style="solid", color="burlywood", weight=9]; 1690 -> 940[label="",style="solid", color="burlywood", weight=3]; 882[label="LT == yv400",fontsize=16,color="burlywood",shape="box"];1691[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];882 -> 1691[label="",style="solid", color="burlywood", weight=9]; 1691 -> 941[label="",style="solid", color="burlywood", weight=3]; 1692[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];882 -> 1692[label="",style="solid", color="burlywood", weight=9]; 1692 -> 942[label="",style="solid", color="burlywood", weight=3]; 1693[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];882 -> 1693[label="",style="solid", color="burlywood", weight=9]; 1693 -> 943[label="",style="solid", color="burlywood", weight=3]; 883[label="EQ == yv400",fontsize=16,color="burlywood",shape="box"];1694[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];883 -> 1694[label="",style="solid", color="burlywood", weight=9]; 1694 -> 944[label="",style="solid", color="burlywood", weight=3]; 1695[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];883 -> 1695[label="",style="solid", color="burlywood", weight=9]; 1695 -> 945[label="",style="solid", color="burlywood", weight=3]; 1696[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];883 -> 1696[label="",style="solid", color="burlywood", weight=9]; 1696 -> 946[label="",style="solid", color="burlywood", weight=3]; 884[label="GT == yv400",fontsize=16,color="burlywood",shape="box"];1697[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];884 -> 1697[label="",style="solid", color="burlywood", weight=9]; 1697 -> 947[label="",style="solid", color="burlywood", weight=3]; 1698[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];884 -> 1698[label="",style="solid", color="burlywood", weight=9]; 1698 -> 948[label="",style="solid", color="burlywood", weight=3]; 1699[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];884 -> 1699[label="",style="solid", color="burlywood", weight=9]; 1699 -> 949[label="",style="solid", color="burlywood", weight=3]; 885[label="yv300 : yv301 == yv400",fontsize=16,color="burlywood",shape="box"];1700[label="yv400/yv4000 : yv4001",fontsize=10,color="white",style="solid",shape="box"];885 -> 1700[label="",style="solid", color="burlywood", weight=9]; 1700 -> 950[label="",style="solid", color="burlywood", weight=3]; 1701[label="yv400/[]",fontsize=10,color="white",style="solid",shape="box"];885 -> 1701[label="",style="solid", color="burlywood", weight=9]; 1701 -> 951[label="",style="solid", color="burlywood", weight=3]; 886[label="[] == yv400",fontsize=16,color="burlywood",shape="box"];1702[label="yv400/yv4000 : yv4001",fontsize=10,color="white",style="solid",shape="box"];886 -> 1702[label="",style="solid", color="burlywood", weight=9]; 1702 -> 952[label="",style="solid", color="burlywood", weight=3]; 1703[label="yv400/[]",fontsize=10,color="white",style="solid",shape="box"];886 -> 1703[label="",style="solid", color="burlywood", weight=9]; 1703 -> 953[label="",style="solid", color="burlywood", weight=3]; 887[label="() == yv400",fontsize=16,color="burlywood",shape="box"];1704[label="yv400/()",fontsize=10,color="white",style="solid",shape="box"];887 -> 1704[label="",style="solid", color="burlywood", weight=9]; 1704 -> 954[label="",style="solid", color="burlywood", weight=3]; 888[label="primEqChar yv30 yv400",fontsize=16,color="burlywood",shape="box"];1705[label="yv30/Char yv300",fontsize=10,color="white",style="solid",shape="box"];888 -> 1705[label="",style="solid", color="burlywood", weight=9]; 1705 -> 955[label="",style="solid", color="burlywood", weight=3]; 889[label="Integer yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1706[label="yv400/Integer yv4000",fontsize=10,color="white",style="solid",shape="box"];889 -> 1706[label="",style="solid", color="burlywood", weight=9]; 1706 -> 956[label="",style="solid", color="burlywood", weight=3]; 890[label="(yv300,yv301) == yv400",fontsize=16,color="burlywood",shape="box"];1707[label="yv400/(yv4000,yv4001)",fontsize=10,color="white",style="solid",shape="box"];890 -> 1707[label="",style="solid", color="burlywood", weight=9]; 1707 -> 957[label="",style="solid", color="burlywood", weight=3]; 891[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];891 -> 958[label="",style="solid", color="black", weight=3]; 892[label="Maybe.listToMaybe ((++) (Pos yv39 : []) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];892 -> 959[label="",style="solid", color="black", weight=3]; 893[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];893 -> 960[label="",style="solid", color="black", weight=3]; 894[label="Maybe.listToMaybe ((++) (Pos yv41 : []) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];894 -> 961[label="",style="solid", color="black", weight=3]; 895[label="yv30",fontsize=16,color="green",shape="box"];896[label="yv400",fontsize=16,color="green",shape="box"];897[label="yv30",fontsize=16,color="green",shape="box"];898[label="yv400",fontsize=16,color="green",shape="box"];899[label="yv30",fontsize=16,color="green",shape="box"];900[label="yv400",fontsize=16,color="green",shape="box"];901[label="yv30",fontsize=16,color="green",shape="box"];902[label="yv400",fontsize=16,color="green",shape="box"];903[label="yv30",fontsize=16,color="green",shape="box"];904[label="yv400",fontsize=16,color="green",shape="box"];905[label="yv30",fontsize=16,color="green",shape="box"];906[label="yv400",fontsize=16,color="green",shape="box"];907[label="yv30",fontsize=16,color="green",shape="box"];908[label="yv400",fontsize=16,color="green",shape="box"];909[label="yv30",fontsize=16,color="green",shape="box"];910[label="yv400",fontsize=16,color="green",shape="box"];911[label="yv30",fontsize=16,color="green",shape="box"];912[label="yv400",fontsize=16,color="green",shape="box"];913[label="yv30",fontsize=16,color="green",shape="box"];914[label="yv400",fontsize=16,color="green",shape="box"];915[label="yv30",fontsize=16,color="green",shape="box"];916[label="yv400",fontsize=16,color="green",shape="box"];917[label="yv30",fontsize=16,color="green",shape="box"];918[label="yv400",fontsize=16,color="green",shape="box"];919[label="yv30",fontsize=16,color="green",shape="box"];920[label="yv400",fontsize=16,color="green",shape="box"];921[label="yv30",fontsize=16,color="green",shape="box"];922[label="yv400",fontsize=16,color="green",shape="box"];923[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];923 -> 962[label="",style="solid", color="black", weight=3]; 924[label="Nothing == Just yv4000",fontsize=16,color="black",shape="box"];924 -> 963[label="",style="solid", color="black", weight=3]; 925[label="Just yv300 == Nothing",fontsize=16,color="black",shape="box"];925 -> 964[label="",style="solid", color="black", weight=3]; 926[label="Just yv300 == Just yv4000",fontsize=16,color="black",shape="box"];926 -> 965[label="",style="solid", color="black", weight=3]; 927[label="False == False",fontsize=16,color="black",shape="box"];927 -> 966[label="",style="solid", color="black", weight=3]; 928[label="False == True",fontsize=16,color="black",shape="box"];928 -> 967[label="",style="solid", color="black", weight=3]; 929[label="True == False",fontsize=16,color="black",shape="box"];929 -> 968[label="",style="solid", color="black", weight=3]; 930[label="True == True",fontsize=16,color="black",shape="box"];930 -> 969[label="",style="solid", color="black", weight=3]; 931[label="Left yv300 == Left yv4000",fontsize=16,color="black",shape="box"];931 -> 970[label="",style="solid", color="black", weight=3]; 932[label="Left yv300 == Right yv4000",fontsize=16,color="black",shape="box"];932 -> 971[label="",style="solid", color="black", weight=3]; 933[label="Right yv300 == Left yv4000",fontsize=16,color="black",shape="box"];933 -> 972[label="",style="solid", color="black", weight=3]; 934[label="Right yv300 == Right yv4000",fontsize=16,color="black",shape="box"];934 -> 973[label="",style="solid", color="black", weight=3]; 935[label="primEqInt (Pos yv300) yv400",fontsize=16,color="burlywood",shape="box"];1708[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];935 -> 1708[label="",style="solid", color="burlywood", weight=9]; 1708 -> 974[label="",style="solid", color="burlywood", weight=3]; 1709[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];935 -> 1709[label="",style="solid", color="burlywood", weight=9]; 1709 -> 975[label="",style="solid", color="burlywood", weight=3]; 936[label="primEqInt (Neg yv300) yv400",fontsize=16,color="burlywood",shape="box"];1710[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];936 -> 1710[label="",style="solid", color="burlywood", weight=9]; 1710 -> 976[label="",style="solid", color="burlywood", weight=3]; 1711[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];936 -> 1711[label="",style="solid", color="burlywood", weight=9]; 1711 -> 977[label="",style="solid", color="burlywood", weight=3]; 937[label="(yv300,yv301,yv302) == (yv4000,yv4001,yv4002)",fontsize=16,color="black",shape="box"];937 -> 978[label="",style="solid", color="black", weight=3]; 938[label="primEqFloat (Float yv300 yv301) yv400",fontsize=16,color="burlywood",shape="box"];1712[label="yv400/Float yv4000 yv4001",fontsize=10,color="white",style="solid",shape="box"];938 -> 1712[label="",style="solid", color="burlywood", weight=9]; 1712 -> 979[label="",style="solid", color="burlywood", weight=3]; 939[label="primEqDouble (Double yv300 yv301) yv400",fontsize=16,color="burlywood",shape="box"];1713[label="yv400/Double yv4000 yv4001",fontsize=10,color="white",style="solid",shape="box"];939 -> 1713[label="",style="solid", color="burlywood", weight=9]; 1713 -> 980[label="",style="solid", color="burlywood", weight=3]; 940[label="yv300 :% yv301 == yv4000 :% yv4001",fontsize=16,color="black",shape="box"];940 -> 981[label="",style="solid", color="black", weight=3]; 941[label="LT == LT",fontsize=16,color="black",shape="box"];941 -> 982[label="",style="solid", color="black", weight=3]; 942[label="LT == EQ",fontsize=16,color="black",shape="box"];942 -> 983[label="",style="solid", color="black", weight=3]; 943[label="LT == GT",fontsize=16,color="black",shape="box"];943 -> 984[label="",style="solid", color="black", weight=3]; 944[label="EQ == LT",fontsize=16,color="black",shape="box"];944 -> 985[label="",style="solid", color="black", weight=3]; 945[label="EQ == EQ",fontsize=16,color="black",shape="box"];945 -> 986[label="",style="solid", color="black", weight=3]; 946[label="EQ == GT",fontsize=16,color="black",shape="box"];946 -> 987[label="",style="solid", color="black", weight=3]; 947[label="GT == LT",fontsize=16,color="black",shape="box"];947 -> 988[label="",style="solid", color="black", weight=3]; 948[label="GT == EQ",fontsize=16,color="black",shape="box"];948 -> 989[label="",style="solid", color="black", weight=3]; 949[label="GT == GT",fontsize=16,color="black",shape="box"];949 -> 990[label="",style="solid", color="black", weight=3]; 950[label="yv300 : yv301 == yv4000 : yv4001",fontsize=16,color="black",shape="box"];950 -> 991[label="",style="solid", color="black", weight=3]; 951[label="yv300 : yv301 == []",fontsize=16,color="black",shape="box"];951 -> 992[label="",style="solid", color="black", weight=3]; 952[label="[] == yv4000 : yv4001",fontsize=16,color="black",shape="box"];952 -> 993[label="",style="solid", color="black", weight=3]; 953[label="[] == []",fontsize=16,color="black",shape="box"];953 -> 994[label="",style="solid", color="black", weight=3]; 954[label="() == ()",fontsize=16,color="black",shape="box"];954 -> 995[label="",style="solid", color="black", weight=3]; 955[label="primEqChar (Char yv300) yv400",fontsize=16,color="burlywood",shape="box"];1714[label="yv400/Char yv4000",fontsize=10,color="white",style="solid",shape="box"];955 -> 1714[label="",style="solid", color="burlywood", weight=9]; 1714 -> 996[label="",style="solid", color="burlywood", weight=3]; 956[label="Integer yv300 == Integer yv4000",fontsize=16,color="black",shape="box"];956 -> 997[label="",style="solid", color="black", weight=3]; 957[label="(yv300,yv301) == (yv4000,yv4001)",fontsize=16,color="black",shape="box"];957 -> 998[label="",style="solid", color="black", weight=3]; 958[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1715[label="yv111/yv1110 : yv1111",fontsize=10,color="white",style="solid",shape="box"];958 -> 1715[label="",style="solid", color="burlywood", weight=9]; 1715 -> 999[label="",style="solid", color="burlywood", weight=3]; 1716[label="yv111/[]",fontsize=10,color="white",style="solid",shape="box"];958 -> 1716[label="",style="solid", color="burlywood", weight=9]; 1716 -> 1000[label="",style="solid", color="burlywood", weight=3]; 959[label="Maybe.listToMaybe (Pos yv39 : [] ++ foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];959 -> 1001[label="",style="solid", color="black", weight=3]; 960[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1717[label="yv181/yv1810 : yv1811",fontsize=10,color="white",style="solid",shape="box"];960 -> 1717[label="",style="solid", color="burlywood", weight=9]; 1717 -> 1002[label="",style="solid", color="burlywood", weight=3]; 1718[label="yv181/[]",fontsize=10,color="white",style="solid",shape="box"];960 -> 1718[label="",style="solid", color="burlywood", weight=9]; 1718 -> 1003[label="",style="solid", color="burlywood", weight=3]; 961[label="Maybe.listToMaybe (Pos yv41 : [] ++ foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];961 -> 1004[label="",style="solid", color="black", weight=3]; 962[label="True",fontsize=16,color="green",shape="box"];963[label="False",fontsize=16,color="green",shape="box"];964[label="False",fontsize=16,color="green",shape="box"];965[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1719[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1719[label="",style="solid", color="blue", weight=9]; 1719 -> 1005[label="",style="solid", color="blue", weight=3]; 1720[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1720[label="",style="solid", color="blue", weight=9]; 1720 -> 1006[label="",style="solid", color="blue", weight=3]; 1721[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1721[label="",style="solid", color="blue", weight=9]; 1721 -> 1007[label="",style="solid", color="blue", weight=3]; 1722[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1722[label="",style="solid", color="blue", weight=9]; 1722 -> 1008[label="",style="solid", color="blue", weight=3]; 1723[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1723[label="",style="solid", color="blue", weight=9]; 1723 -> 1009[label="",style="solid", color="blue", weight=3]; 1724[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1724[label="",style="solid", color="blue", weight=9]; 1724 -> 1010[label="",style="solid", color="blue", weight=3]; 1725[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1725[label="",style="solid", color="blue", weight=9]; 1725 -> 1011[label="",style="solid", color="blue", weight=3]; 1726[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1726[label="",style="solid", color="blue", weight=9]; 1726 -> 1012[label="",style="solid", color="blue", weight=3]; 1727[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1727[label="",style="solid", color="blue", weight=9]; 1727 -> 1013[label="",style="solid", color="blue", weight=3]; 1728[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1728[label="",style="solid", color="blue", weight=9]; 1728 -> 1014[label="",style="solid", color="blue", weight=3]; 1729[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1729[label="",style="solid", color="blue", weight=9]; 1729 -> 1015[label="",style="solid", color="blue", weight=3]; 1730[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1730[label="",style="solid", color="blue", weight=9]; 1730 -> 1016[label="",style="solid", color="blue", weight=3]; 1731[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1731[label="",style="solid", color="blue", weight=9]; 1731 -> 1017[label="",style="solid", color="blue", weight=3]; 1732[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 1732[label="",style="solid", color="blue", weight=9]; 1732 -> 1018[label="",style="solid", color="blue", weight=3]; 966[label="True",fontsize=16,color="green",shape="box"];967[label="False",fontsize=16,color="green",shape="box"];968[label="False",fontsize=16,color="green",shape="box"];969[label="True",fontsize=16,color="green",shape="box"];970[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1733[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1733[label="",style="solid", color="blue", weight=9]; 1733 -> 1019[label="",style="solid", color="blue", weight=3]; 1734[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1734[label="",style="solid", color="blue", weight=9]; 1734 -> 1020[label="",style="solid", color="blue", weight=3]; 1735[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1735[label="",style="solid", color="blue", weight=9]; 1735 -> 1021[label="",style="solid", color="blue", weight=3]; 1736[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1736[label="",style="solid", color="blue", weight=9]; 1736 -> 1022[label="",style="solid", color="blue", weight=3]; 1737[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1737[label="",style="solid", color="blue", weight=9]; 1737 -> 1023[label="",style="solid", color="blue", weight=3]; 1738[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1738[label="",style="solid", color="blue", weight=9]; 1738 -> 1024[label="",style="solid", color="blue", weight=3]; 1739[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1739[label="",style="solid", color="blue", weight=9]; 1739 -> 1025[label="",style="solid", color="blue", weight=3]; 1740[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1740[label="",style="solid", color="blue", weight=9]; 1740 -> 1026[label="",style="solid", color="blue", weight=3]; 1741[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1741[label="",style="solid", color="blue", weight=9]; 1741 -> 1027[label="",style="solid", color="blue", weight=3]; 1742[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1742[label="",style="solid", color="blue", weight=9]; 1742 -> 1028[label="",style="solid", color="blue", weight=3]; 1743[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1743[label="",style="solid", color="blue", weight=9]; 1743 -> 1029[label="",style="solid", color="blue", weight=3]; 1744[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1744[label="",style="solid", color="blue", weight=9]; 1744 -> 1030[label="",style="solid", color="blue", weight=3]; 1745[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1745[label="",style="solid", color="blue", weight=9]; 1745 -> 1031[label="",style="solid", color="blue", weight=3]; 1746[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 1746[label="",style="solid", color="blue", weight=9]; 1746 -> 1032[label="",style="solid", color="blue", weight=3]; 971[label="False",fontsize=16,color="green",shape="box"];972[label="False",fontsize=16,color="green",shape="box"];973[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1747[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1747[label="",style="solid", color="blue", weight=9]; 1747 -> 1033[label="",style="solid", color="blue", weight=3]; 1748[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1748[label="",style="solid", color="blue", weight=9]; 1748 -> 1034[label="",style="solid", color="blue", weight=3]; 1749[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1749[label="",style="solid", color="blue", weight=9]; 1749 -> 1035[label="",style="solid", color="blue", weight=3]; 1750[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1750[label="",style="solid", color="blue", weight=9]; 1750 -> 1036[label="",style="solid", color="blue", weight=3]; 1751[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1751[label="",style="solid", color="blue", weight=9]; 1751 -> 1037[label="",style="solid", color="blue", weight=3]; 1752[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1752[label="",style="solid", color="blue", weight=9]; 1752 -> 1038[label="",style="solid", color="blue", weight=3]; 1753[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1753[label="",style="solid", color="blue", weight=9]; 1753 -> 1039[label="",style="solid", color="blue", weight=3]; 1754[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1754[label="",style="solid", color="blue", weight=9]; 1754 -> 1040[label="",style="solid", color="blue", weight=3]; 1755[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1755[label="",style="solid", color="blue", weight=9]; 1755 -> 1041[label="",style="solid", color="blue", weight=3]; 1756[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1756[label="",style="solid", color="blue", weight=9]; 1756 -> 1042[label="",style="solid", color="blue", weight=3]; 1757[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1757[label="",style="solid", color="blue", weight=9]; 1757 -> 1043[label="",style="solid", color="blue", weight=3]; 1758[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1758[label="",style="solid", color="blue", weight=9]; 1758 -> 1044[label="",style="solid", color="blue", weight=3]; 1759[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1759[label="",style="solid", color="blue", weight=9]; 1759 -> 1045[label="",style="solid", color="blue", weight=3]; 1760[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];973 -> 1760[label="",style="solid", color="blue", weight=9]; 1760 -> 1046[label="",style="solid", color="blue", weight=3]; 974[label="primEqInt (Pos (Succ yv3000)) yv400",fontsize=16,color="burlywood",shape="box"];1761[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];974 -> 1761[label="",style="solid", color="burlywood", weight=9]; 1761 -> 1047[label="",style="solid", color="burlywood", weight=3]; 1762[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];974 -> 1762[label="",style="solid", color="burlywood", weight=9]; 1762 -> 1048[label="",style="solid", color="burlywood", weight=3]; 975[label="primEqInt (Pos Zero) yv400",fontsize=16,color="burlywood",shape="box"];1763[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];975 -> 1763[label="",style="solid", color="burlywood", weight=9]; 1763 -> 1049[label="",style="solid", color="burlywood", weight=3]; 1764[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];975 -> 1764[label="",style="solid", color="burlywood", weight=9]; 1764 -> 1050[label="",style="solid", color="burlywood", weight=3]; 976[label="primEqInt (Neg (Succ yv3000)) yv400",fontsize=16,color="burlywood",shape="box"];1765[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];976 -> 1765[label="",style="solid", color="burlywood", weight=9]; 1765 -> 1051[label="",style="solid", color="burlywood", weight=3]; 1766[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];976 -> 1766[label="",style="solid", color="burlywood", weight=9]; 1766 -> 1052[label="",style="solid", color="burlywood", weight=3]; 977[label="primEqInt (Neg Zero) yv400",fontsize=16,color="burlywood",shape="box"];1767[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];977 -> 1767[label="",style="solid", color="burlywood", weight=9]; 1767 -> 1053[label="",style="solid", color="burlywood", weight=3]; 1768[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];977 -> 1768[label="",style="solid", color="burlywood", weight=9]; 1768 -> 1054[label="",style="solid", color="burlywood", weight=3]; 978 -> 1192[label="",style="dashed", color="red", weight=0]; 978[label="yv300 == yv4000 && yv301 == yv4001 && yv302 == yv4002",fontsize=16,color="magenta"];978 -> 1193[label="",style="dashed", color="magenta", weight=3]; 978 -> 1194[label="",style="dashed", color="magenta", weight=3]; 979[label="primEqFloat (Float yv300 yv301) (Float yv4000 yv4001)",fontsize=16,color="black",shape="box"];979 -> 1061[label="",style="solid", color="black", weight=3]; 980[label="primEqDouble (Double yv300 yv301) (Double yv4000 yv4001)",fontsize=16,color="black",shape="box"];980 -> 1062[label="",style="solid", color="black", weight=3]; 981 -> 1192[label="",style="dashed", color="red", weight=0]; 981[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];981 -> 1195[label="",style="dashed", color="magenta", weight=3]; 981 -> 1196[label="",style="dashed", color="magenta", weight=3]; 982[label="True",fontsize=16,color="green",shape="box"];983[label="False",fontsize=16,color="green",shape="box"];984[label="False",fontsize=16,color="green",shape="box"];985[label="False",fontsize=16,color="green",shape="box"];986[label="True",fontsize=16,color="green",shape="box"];987[label="False",fontsize=16,color="green",shape="box"];988[label="False",fontsize=16,color="green",shape="box"];989[label="False",fontsize=16,color="green",shape="box"];990[label="True",fontsize=16,color="green",shape="box"];991 -> 1192[label="",style="dashed", color="red", weight=0]; 991[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];991 -> 1197[label="",style="dashed", color="magenta", weight=3]; 991 -> 1198[label="",style="dashed", color="magenta", weight=3]; 992[label="False",fontsize=16,color="green",shape="box"];993[label="False",fontsize=16,color="green",shape="box"];994[label="True",fontsize=16,color="green",shape="box"];995[label="True",fontsize=16,color="green",shape="box"];996[label="primEqChar (Char yv300) (Char yv4000)",fontsize=16,color="black",shape="box"];996 -> 1073[label="",style="solid", color="black", weight=3]; 997 -> 877[label="",style="dashed", color="red", weight=0]; 997[label="primEqInt yv300 yv4000",fontsize=16,color="magenta"];997 -> 1074[label="",style="dashed", color="magenta", weight=3]; 997 -> 1075[label="",style="dashed", color="magenta", weight=3]; 998 -> 1192[label="",style="dashed", color="red", weight=0]; 998[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];998 -> 1199[label="",style="dashed", color="magenta", weight=3]; 998 -> 1200[label="",style="dashed", color="magenta", weight=3]; 999[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];999 -> 1076[label="",style="solid", color="black", weight=3]; 1000[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv40 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1000 -> 1077[label="",style="solid", color="black", weight=3]; 1001[label="Just (Pos yv39)",fontsize=16,color="green",shape="box"];1002[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1002 -> 1078[label="",style="solid", color="black", weight=3]; 1003[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv42 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1003 -> 1079[label="",style="solid", color="black", weight=3]; 1004[label="Just (Pos yv41)",fontsize=16,color="green",shape="box"];1005 -> 823[label="",style="dashed", color="red", weight=0]; 1005[label="yv300 == yv4000",fontsize=16,color="magenta"];1005 -> 1080[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1006 -> 824[label="",style="dashed", color="red", weight=0]; 1006[label="yv300 == yv4000",fontsize=16,color="magenta"];1006 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1007 -> 825[label="",style="dashed", color="red", weight=0]; 1007[label="yv300 == yv4000",fontsize=16,color="magenta"];1007 -> 1084[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1085[label="",style="dashed", color="magenta", weight=3]; 1008 -> 826[label="",style="dashed", color="red", weight=0]; 1008[label="yv300 == yv4000",fontsize=16,color="magenta"];1008 -> 1086[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1087[label="",style="dashed", color="magenta", weight=3]; 1009 -> 827[label="",style="dashed", color="red", weight=0]; 1009[label="yv300 == yv4000",fontsize=16,color="magenta"];1009 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1010 -> 828[label="",style="dashed", color="red", weight=0]; 1010[label="yv300 == yv4000",fontsize=16,color="magenta"];1010 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1091[label="",style="dashed", color="magenta", weight=3]; 1011 -> 829[label="",style="dashed", color="red", weight=0]; 1011[label="yv300 == yv4000",fontsize=16,color="magenta"];1011 -> 1092[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1093[label="",style="dashed", color="magenta", weight=3]; 1012 -> 830[label="",style="dashed", color="red", weight=0]; 1012[label="yv300 == yv4000",fontsize=16,color="magenta"];1012 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1013 -> 831[label="",style="dashed", color="red", weight=0]; 1013[label="yv300 == yv4000",fontsize=16,color="magenta"];1013 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1014 -> 832[label="",style="dashed", color="red", weight=0]; 1014[label="yv300 == yv4000",fontsize=16,color="magenta"];1014 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1015 -> 833[label="",style="dashed", color="red", weight=0]; 1015[label="yv300 == yv4000",fontsize=16,color="magenta"];1015 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1016 -> 834[label="",style="dashed", color="red", weight=0]; 1016[label="yv300 == yv4000",fontsize=16,color="magenta"];1016 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1017 -> 835[label="",style="dashed", color="red", weight=0]; 1017[label="yv300 == yv4000",fontsize=16,color="magenta"];1017 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1018 -> 836[label="",style="dashed", color="red", weight=0]; 1018[label="yv300 == yv4000",fontsize=16,color="magenta"];1018 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1019 -> 823[label="",style="dashed", color="red", weight=0]; 1019[label="yv300 == yv4000",fontsize=16,color="magenta"];1019 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1109[label="",style="dashed", color="magenta", weight=3]; 1020 -> 824[label="",style="dashed", color="red", weight=0]; 1020[label="yv300 == yv4000",fontsize=16,color="magenta"];1020 -> 1110[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1111[label="",style="dashed", color="magenta", weight=3]; 1021 -> 825[label="",style="dashed", color="red", weight=0]; 1021[label="yv300 == yv4000",fontsize=16,color="magenta"];1021 -> 1112[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1113[label="",style="dashed", color="magenta", weight=3]; 1022 -> 826[label="",style="dashed", color="red", weight=0]; 1022[label="yv300 == yv4000",fontsize=16,color="magenta"];1022 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1023 -> 827[label="",style="dashed", color="red", weight=0]; 1023[label="yv300 == yv4000",fontsize=16,color="magenta"];1023 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1024 -> 828[label="",style="dashed", color="red", weight=0]; 1024[label="yv300 == yv4000",fontsize=16,color="magenta"];1024 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1119[label="",style="dashed", color="magenta", weight=3]; 1025 -> 829[label="",style="dashed", color="red", weight=0]; 1025[label="yv300 == yv4000",fontsize=16,color="magenta"];1025 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1026 -> 830[label="",style="dashed", color="red", weight=0]; 1026[label="yv300 == yv4000",fontsize=16,color="magenta"];1026 -> 1122[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1123[label="",style="dashed", color="magenta", weight=3]; 1027 -> 831[label="",style="dashed", color="red", weight=0]; 1027[label="yv300 == yv4000",fontsize=16,color="magenta"];1027 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1028 -> 832[label="",style="dashed", color="red", weight=0]; 1028[label="yv300 == yv4000",fontsize=16,color="magenta"];1028 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1029 -> 833[label="",style="dashed", color="red", weight=0]; 1029[label="yv300 == yv4000",fontsize=16,color="magenta"];1029 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1030 -> 834[label="",style="dashed", color="red", weight=0]; 1030[label="yv300 == yv4000",fontsize=16,color="magenta"];1030 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1031 -> 835[label="",style="dashed", color="red", weight=0]; 1031[label="yv300 == yv4000",fontsize=16,color="magenta"];1031 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1032 -> 836[label="",style="dashed", color="red", weight=0]; 1032[label="yv300 == yv4000",fontsize=16,color="magenta"];1032 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1033 -> 823[label="",style="dashed", color="red", weight=0]; 1033[label="yv300 == yv4000",fontsize=16,color="magenta"];1033 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1034 -> 824[label="",style="dashed", color="red", weight=0]; 1034[label="yv300 == yv4000",fontsize=16,color="magenta"];1034 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1035 -> 825[label="",style="dashed", color="red", weight=0]; 1035[label="yv300 == yv4000",fontsize=16,color="magenta"];1035 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1036 -> 826[label="",style="dashed", color="red", weight=0]; 1036[label="yv300 == yv4000",fontsize=16,color="magenta"];1036 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1036 -> 1143[label="",style="dashed", color="magenta", weight=3]; 1037 -> 827[label="",style="dashed", color="red", weight=0]; 1037[label="yv300 == yv4000",fontsize=16,color="magenta"];1037 -> 1144[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1145[label="",style="dashed", color="magenta", weight=3]; 1038 -> 828[label="",style="dashed", color="red", weight=0]; 1038[label="yv300 == yv4000",fontsize=16,color="magenta"];1038 -> 1146[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1147[label="",style="dashed", color="magenta", weight=3]; 1039 -> 829[label="",style="dashed", color="red", weight=0]; 1039[label="yv300 == yv4000",fontsize=16,color="magenta"];1039 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1040 -> 830[label="",style="dashed", color="red", weight=0]; 1040[label="yv300 == yv4000",fontsize=16,color="magenta"];1040 -> 1150[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1041 -> 831[label="",style="dashed", color="red", weight=0]; 1041[label="yv300 == yv4000",fontsize=16,color="magenta"];1041 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1042 -> 832[label="",style="dashed", color="red", weight=0]; 1042[label="yv300 == yv4000",fontsize=16,color="magenta"];1042 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1043 -> 833[label="",style="dashed", color="red", weight=0]; 1043[label="yv300 == yv4000",fontsize=16,color="magenta"];1043 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1044 -> 834[label="",style="dashed", color="red", weight=0]; 1044[label="yv300 == yv4000",fontsize=16,color="magenta"];1044 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1045 -> 835[label="",style="dashed", color="red", weight=0]; 1045[label="yv300 == yv4000",fontsize=16,color="magenta"];1045 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1046 -> 836[label="",style="dashed", color="red", weight=0]; 1046[label="yv300 == yv4000",fontsize=16,color="magenta"];1046 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1047[label="primEqInt (Pos (Succ yv3000)) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];1769[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1047 -> 1769[label="",style="solid", color="burlywood", weight=9]; 1769 -> 1164[label="",style="solid", color="burlywood", weight=3]; 1770[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1047 -> 1770[label="",style="solid", color="burlywood", weight=9]; 1770 -> 1165[label="",style="solid", color="burlywood", weight=3]; 1048[label="primEqInt (Pos (Succ yv3000)) (Neg yv4000)",fontsize=16,color="black",shape="box"];1048 -> 1166[label="",style="solid", color="black", weight=3]; 1049[label="primEqInt (Pos Zero) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];1771[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1049 -> 1771[label="",style="solid", color="burlywood", weight=9]; 1771 -> 1167[label="",style="solid", color="burlywood", weight=3]; 1772[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1049 -> 1772[label="",style="solid", color="burlywood", weight=9]; 1772 -> 1168[label="",style="solid", color="burlywood", weight=3]; 1050[label="primEqInt (Pos Zero) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];1773[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1050 -> 1773[label="",style="solid", color="burlywood", weight=9]; 1773 -> 1169[label="",style="solid", color="burlywood", weight=3]; 1774[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1050 -> 1774[label="",style="solid", color="burlywood", weight=9]; 1774 -> 1170[label="",style="solid", color="burlywood", weight=3]; 1051[label="primEqInt (Neg (Succ yv3000)) (Pos yv4000)",fontsize=16,color="black",shape="box"];1051 -> 1171[label="",style="solid", color="black", weight=3]; 1052[label="primEqInt (Neg (Succ yv3000)) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];1775[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1052 -> 1775[label="",style="solid", color="burlywood", weight=9]; 1775 -> 1172[label="",style="solid", color="burlywood", weight=3]; 1776[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1052 -> 1776[label="",style="solid", color="burlywood", weight=9]; 1776 -> 1173[label="",style="solid", color="burlywood", weight=3]; 1053[label="primEqInt (Neg Zero) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];1777[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1053 -> 1777[label="",style="solid", color="burlywood", weight=9]; 1777 -> 1174[label="",style="solid", color="burlywood", weight=3]; 1778[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1053 -> 1778[label="",style="solid", color="burlywood", weight=9]; 1778 -> 1175[label="",style="solid", color="burlywood", weight=3]; 1054[label="primEqInt (Neg Zero) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];1779[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1054 -> 1779[label="",style="solid", color="burlywood", weight=9]; 1779 -> 1176[label="",style="solid", color="burlywood", weight=3]; 1780[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1054 -> 1780[label="",style="solid", color="burlywood", weight=9]; 1780 -> 1177[label="",style="solid", color="burlywood", weight=3]; 1193[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1781[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1781[label="",style="solid", color="blue", weight=9]; 1781 -> 1204[label="",style="solid", color="blue", weight=3]; 1782[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1782[label="",style="solid", color="blue", weight=9]; 1782 -> 1205[label="",style="solid", color="blue", weight=3]; 1783[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1783[label="",style="solid", color="blue", weight=9]; 1783 -> 1206[label="",style="solid", color="blue", weight=3]; 1784[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1784[label="",style="solid", color="blue", weight=9]; 1784 -> 1207[label="",style="solid", color="blue", weight=3]; 1785[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1785[label="",style="solid", color="blue", weight=9]; 1785 -> 1208[label="",style="solid", color="blue", weight=3]; 1786[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1786[label="",style="solid", color="blue", weight=9]; 1786 -> 1209[label="",style="solid", color="blue", weight=3]; 1787[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1787[label="",style="solid", color="blue", weight=9]; 1787 -> 1210[label="",style="solid", color="blue", weight=3]; 1788[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1788[label="",style="solid", color="blue", weight=9]; 1788 -> 1211[label="",style="solid", color="blue", weight=3]; 1789[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1789[label="",style="solid", color="blue", weight=9]; 1789 -> 1212[label="",style="solid", color="blue", weight=3]; 1790[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1790[label="",style="solid", color="blue", weight=9]; 1790 -> 1213[label="",style="solid", color="blue", weight=3]; 1791[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1791[label="",style="solid", color="blue", weight=9]; 1791 -> 1214[label="",style="solid", color="blue", weight=3]; 1792[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1792[label="",style="solid", color="blue", weight=9]; 1792 -> 1215[label="",style="solid", color="blue", weight=3]; 1793[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1793[label="",style="solid", color="blue", weight=9]; 1793 -> 1216[label="",style="solid", color="blue", weight=3]; 1794[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 1794[label="",style="solid", color="blue", weight=9]; 1794 -> 1217[label="",style="solid", color="blue", weight=3]; 1194 -> 1192[label="",style="dashed", color="red", weight=0]; 1194[label="yv301 == yv4001 && yv302 == yv4002",fontsize=16,color="magenta"];1194 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1192[label="yv51 && yv63",fontsize=16,color="burlywood",shape="triangle"];1795[label="yv51/False",fontsize=10,color="white",style="solid",shape="box"];1192 -> 1795[label="",style="solid", color="burlywood", weight=9]; 1795 -> 1220[label="",style="solid", color="burlywood", weight=3]; 1796[label="yv51/True",fontsize=10,color="white",style="solid",shape="box"];1192 -> 1796[label="",style="solid", color="burlywood", weight=9]; 1796 -> 1221[label="",style="solid", color="burlywood", weight=3]; 1061 -> 826[label="",style="dashed", color="red", weight=0]; 1061[label="yv300 * yv4001 == yv301 * yv4000",fontsize=16,color="magenta"];1061 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1062 -> 826[label="",style="dashed", color="red", weight=0]; 1062[label="yv300 * yv4001 == yv301 * yv4000",fontsize=16,color="magenta"];1062 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1195[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1797[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 1797[label="",style="solid", color="blue", weight=9]; 1797 -> 1226[label="",style="solid", color="blue", weight=3]; 1798[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 1798[label="",style="solid", color="blue", weight=9]; 1798 -> 1227[label="",style="solid", color="blue", weight=3]; 1196[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];1799[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 1799[label="",style="solid", color="blue", weight=9]; 1799 -> 1228[label="",style="solid", color="blue", weight=3]; 1800[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 1800[label="",style="solid", color="blue", weight=9]; 1800 -> 1229[label="",style="solid", color="blue", weight=3]; 1197[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1801[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1801[label="",style="solid", color="blue", weight=9]; 1801 -> 1230[label="",style="solid", color="blue", weight=3]; 1802[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1802[label="",style="solid", color="blue", weight=9]; 1802 -> 1231[label="",style="solid", color="blue", weight=3]; 1803[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1803[label="",style="solid", color="blue", weight=9]; 1803 -> 1232[label="",style="solid", color="blue", weight=3]; 1804[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1804[label="",style="solid", color="blue", weight=9]; 1804 -> 1233[label="",style="solid", color="blue", weight=3]; 1805[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1805[label="",style="solid", color="blue", weight=9]; 1805 -> 1234[label="",style="solid", color="blue", weight=3]; 1806[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1806[label="",style="solid", color="blue", weight=9]; 1806 -> 1235[label="",style="solid", color="blue", weight=3]; 1807[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1807[label="",style="solid", color="blue", weight=9]; 1807 -> 1236[label="",style="solid", color="blue", weight=3]; 1808[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1808[label="",style="solid", color="blue", weight=9]; 1808 -> 1237[label="",style="solid", color="blue", weight=3]; 1809[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1809[label="",style="solid", color="blue", weight=9]; 1809 -> 1238[label="",style="solid", color="blue", weight=3]; 1810[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1810[label="",style="solid", color="blue", weight=9]; 1810 -> 1239[label="",style="solid", color="blue", weight=3]; 1811[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1811[label="",style="solid", color="blue", weight=9]; 1811 -> 1240[label="",style="solid", color="blue", weight=3]; 1812[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1812[label="",style="solid", color="blue", weight=9]; 1812 -> 1241[label="",style="solid", color="blue", weight=3]; 1813[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1813[label="",style="solid", color="blue", weight=9]; 1813 -> 1242[label="",style="solid", color="blue", weight=3]; 1814[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 1814[label="",style="solid", color="blue", weight=9]; 1814 -> 1243[label="",style="solid", color="blue", weight=3]; 1198 -> 832[label="",style="dashed", color="red", weight=0]; 1198[label="yv301 == yv4001",fontsize=16,color="magenta"];1198 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1073[label="primEqNat yv300 yv4000",fontsize=16,color="burlywood",shape="triangle"];1815[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];1073 -> 1815[label="",style="solid", color="burlywood", weight=9]; 1815 -> 1246[label="",style="solid", color="burlywood", weight=3]; 1816[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];1073 -> 1816[label="",style="solid", color="burlywood", weight=9]; 1816 -> 1247[label="",style="solid", color="burlywood", weight=3]; 1074[label="yv300",fontsize=16,color="green",shape="box"];1075[label="yv4000",fontsize=16,color="green",shape="box"];1199[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1817[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1817[label="",style="solid", color="blue", weight=9]; 1817 -> 1248[label="",style="solid", color="blue", weight=3]; 1818[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1818[label="",style="solid", color="blue", weight=9]; 1818 -> 1249[label="",style="solid", color="blue", weight=3]; 1819[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1819[label="",style="solid", color="blue", weight=9]; 1819 -> 1250[label="",style="solid", color="blue", weight=3]; 1820[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1820[label="",style="solid", color="blue", weight=9]; 1820 -> 1251[label="",style="solid", color="blue", weight=3]; 1821[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1821[label="",style="solid", color="blue", weight=9]; 1821 -> 1252[label="",style="solid", color="blue", weight=3]; 1822[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1822[label="",style="solid", color="blue", weight=9]; 1822 -> 1253[label="",style="solid", color="blue", weight=3]; 1823[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1823[label="",style="solid", color="blue", weight=9]; 1823 -> 1254[label="",style="solid", color="blue", weight=3]; 1824[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1824[label="",style="solid", color="blue", weight=9]; 1824 -> 1255[label="",style="solid", color="blue", weight=3]; 1825[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1825[label="",style="solid", color="blue", weight=9]; 1825 -> 1256[label="",style="solid", color="blue", weight=3]; 1826[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1826[label="",style="solid", color="blue", weight=9]; 1826 -> 1257[label="",style="solid", color="blue", weight=3]; 1827[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1827[label="",style="solid", color="blue", weight=9]; 1827 -> 1258[label="",style="solid", color="blue", weight=3]; 1828[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1828[label="",style="solid", color="blue", weight=9]; 1828 -> 1259[label="",style="solid", color="blue", weight=3]; 1829[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1829[label="",style="solid", color="blue", weight=9]; 1829 -> 1260[label="",style="solid", color="blue", weight=3]; 1830[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 1830[label="",style="solid", color="blue", weight=9]; 1830 -> 1261[label="",style="solid", color="blue", weight=3]; 1200[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];1831[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1831[label="",style="solid", color="blue", weight=9]; 1831 -> 1262[label="",style="solid", color="blue", weight=3]; 1832[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1832[label="",style="solid", color="blue", weight=9]; 1832 -> 1263[label="",style="solid", color="blue", weight=3]; 1833[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1833[label="",style="solid", color="blue", weight=9]; 1833 -> 1264[label="",style="solid", color="blue", weight=3]; 1834[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1834[label="",style="solid", color="blue", weight=9]; 1834 -> 1265[label="",style="solid", color="blue", weight=3]; 1835[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1835[label="",style="solid", color="blue", weight=9]; 1835 -> 1266[label="",style="solid", color="blue", weight=3]; 1836[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1836[label="",style="solid", color="blue", weight=9]; 1836 -> 1267[label="",style="solid", color="blue", weight=3]; 1837[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1837[label="",style="solid", color="blue", weight=9]; 1837 -> 1268[label="",style="solid", color="blue", weight=3]; 1838[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1838[label="",style="solid", color="blue", weight=9]; 1838 -> 1269[label="",style="solid", color="blue", weight=3]; 1839[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1839[label="",style="solid", color="blue", weight=9]; 1839 -> 1270[label="",style="solid", color="blue", weight=3]; 1840[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1840[label="",style="solid", color="blue", weight=9]; 1840 -> 1271[label="",style="solid", color="blue", weight=3]; 1841[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1841[label="",style="solid", color="blue", weight=9]; 1841 -> 1272[label="",style="solid", color="blue", weight=3]; 1842[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1842[label="",style="solid", color="blue", weight=9]; 1842 -> 1273[label="",style="solid", color="blue", weight=3]; 1843[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1843[label="",style="solid", color="blue", weight=9]; 1843 -> 1274[label="",style="solid", color="blue", weight=3]; 1844[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 1844[label="",style="solid", color="blue", weight=9]; 1844 -> 1275[label="",style="solid", color="blue", weight=3]; 1076[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (Pos yv40 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv40 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1076 -> 1276[label="",style="solid", color="black", weight=3]; 1077 -> 16[label="",style="dashed", color="red", weight=0]; 1077[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) []))",fontsize=16,color="magenta"];1077 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1078[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (Pos yv42 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv42 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1078 -> 1278[label="",style="solid", color="black", weight=3]; 1079 -> 16[label="",style="dashed", color="red", weight=0]; 1079[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) []))",fontsize=16,color="magenta"];1079 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1080[label="yv300",fontsize=16,color="green",shape="box"];1081[label="yv4000",fontsize=16,color="green",shape="box"];1082[label="yv300",fontsize=16,color="green",shape="box"];1083[label="yv4000",fontsize=16,color="green",shape="box"];1084[label="yv300",fontsize=16,color="green",shape="box"];1085[label="yv4000",fontsize=16,color="green",shape="box"];1086[label="yv300",fontsize=16,color="green",shape="box"];1087[label="yv4000",fontsize=16,color="green",shape="box"];1088[label="yv300",fontsize=16,color="green",shape="box"];1089[label="yv4000",fontsize=16,color="green",shape="box"];1090[label="yv300",fontsize=16,color="green",shape="box"];1091[label="yv4000",fontsize=16,color="green",shape="box"];1092[label="yv300",fontsize=16,color="green",shape="box"];1093[label="yv4000",fontsize=16,color="green",shape="box"];1094[label="yv300",fontsize=16,color="green",shape="box"];1095[label="yv4000",fontsize=16,color="green",shape="box"];1096[label="yv300",fontsize=16,color="green",shape="box"];1097[label="yv4000",fontsize=16,color="green",shape="box"];1098[label="yv300",fontsize=16,color="green",shape="box"];1099[label="yv4000",fontsize=16,color="green",shape="box"];1100[label="yv300",fontsize=16,color="green",shape="box"];1101[label="yv4000",fontsize=16,color="green",shape="box"];1102[label="yv300",fontsize=16,color="green",shape="box"];1103[label="yv4000",fontsize=16,color="green",shape="box"];1104[label="yv300",fontsize=16,color="green",shape="box"];1105[label="yv4000",fontsize=16,color="green",shape="box"];1106[label="yv300",fontsize=16,color="green",shape="box"];1107[label="yv4000",fontsize=16,color="green",shape="box"];1108[label="yv300",fontsize=16,color="green",shape="box"];1109[label="yv4000",fontsize=16,color="green",shape="box"];1110[label="yv300",fontsize=16,color="green",shape="box"];1111[label="yv4000",fontsize=16,color="green",shape="box"];1112[label="yv300",fontsize=16,color="green",shape="box"];1113[label="yv4000",fontsize=16,color="green",shape="box"];1114[label="yv300",fontsize=16,color="green",shape="box"];1115[label="yv4000",fontsize=16,color="green",shape="box"];1116[label="yv300",fontsize=16,color="green",shape="box"];1117[label="yv4000",fontsize=16,color="green",shape="box"];1118[label="yv300",fontsize=16,color="green",shape="box"];1119[label="yv4000",fontsize=16,color="green",shape="box"];1120[label="yv300",fontsize=16,color="green",shape="box"];1121[label="yv4000",fontsize=16,color="green",shape="box"];1122[label="yv300",fontsize=16,color="green",shape="box"];1123[label="yv4000",fontsize=16,color="green",shape="box"];1124[label="yv300",fontsize=16,color="green",shape="box"];1125[label="yv4000",fontsize=16,color="green",shape="box"];1126[label="yv300",fontsize=16,color="green",shape="box"];1127[label="yv4000",fontsize=16,color="green",shape="box"];1128[label="yv300",fontsize=16,color="green",shape="box"];1129[label="yv4000",fontsize=16,color="green",shape="box"];1130[label="yv300",fontsize=16,color="green",shape="box"];1131[label="yv4000",fontsize=16,color="green",shape="box"];1132[label="yv300",fontsize=16,color="green",shape="box"];1133[label="yv4000",fontsize=16,color="green",shape="box"];1134[label="yv300",fontsize=16,color="green",shape="box"];1135[label="yv4000",fontsize=16,color="green",shape="box"];1136[label="yv300",fontsize=16,color="green",shape="box"];1137[label="yv4000",fontsize=16,color="green",shape="box"];1138[label="yv300",fontsize=16,color="green",shape="box"];1139[label="yv4000",fontsize=16,color="green",shape="box"];1140[label="yv300",fontsize=16,color="green",shape="box"];1141[label="yv4000",fontsize=16,color="green",shape="box"];1142[label="yv300",fontsize=16,color="green",shape="box"];1143[label="yv4000",fontsize=16,color="green",shape="box"];1144[label="yv300",fontsize=16,color="green",shape="box"];1145[label="yv4000",fontsize=16,color="green",shape="box"];1146[label="yv300",fontsize=16,color="green",shape="box"];1147[label="yv4000",fontsize=16,color="green",shape="box"];1148[label="yv300",fontsize=16,color="green",shape="box"];1149[label="yv4000",fontsize=16,color="green",shape="box"];1150[label="yv300",fontsize=16,color="green",shape="box"];1151[label="yv4000",fontsize=16,color="green",shape="box"];1152[label="yv300",fontsize=16,color="green",shape="box"];1153[label="yv4000",fontsize=16,color="green",shape="box"];1154[label="yv300",fontsize=16,color="green",shape="box"];1155[label="yv4000",fontsize=16,color="green",shape="box"];1156[label="yv300",fontsize=16,color="green",shape="box"];1157[label="yv4000",fontsize=16,color="green",shape="box"];1158[label="yv300",fontsize=16,color="green",shape="box"];1159[label="yv4000",fontsize=16,color="green",shape="box"];1160[label="yv300",fontsize=16,color="green",shape="box"];1161[label="yv4000",fontsize=16,color="green",shape="box"];1162[label="yv300",fontsize=16,color="green",shape="box"];1163[label="yv4000",fontsize=16,color="green",shape="box"];1164[label="primEqInt (Pos (Succ yv3000)) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1164 -> 1280[label="",style="solid", color="black", weight=3]; 1165[label="primEqInt (Pos (Succ yv3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1165 -> 1281[label="",style="solid", color="black", weight=3]; 1166[label="False",fontsize=16,color="green",shape="box"];1167[label="primEqInt (Pos Zero) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1167 -> 1282[label="",style="solid", color="black", weight=3]; 1168[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1168 -> 1283[label="",style="solid", color="black", weight=3]; 1169[label="primEqInt (Pos Zero) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1169 -> 1284[label="",style="solid", color="black", weight=3]; 1170[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1170 -> 1285[label="",style="solid", color="black", weight=3]; 1171[label="False",fontsize=16,color="green",shape="box"];1172[label="primEqInt (Neg (Succ yv3000)) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1172 -> 1286[label="",style="solid", color="black", weight=3]; 1173[label="primEqInt (Neg (Succ yv3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1173 -> 1287[label="",style="solid", color="black", weight=3]; 1174[label="primEqInt (Neg Zero) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1174 -> 1288[label="",style="solid", color="black", weight=3]; 1175[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1175 -> 1289[label="",style="solid", color="black", weight=3]; 1176[label="primEqInt (Neg Zero) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1176 -> 1290[label="",style="solid", color="black", weight=3]; 1177[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1177 -> 1291[label="",style="solid", color="black", weight=3]; 1204 -> 823[label="",style="dashed", color="red", weight=0]; 1204[label="yv300 == yv4000",fontsize=16,color="magenta"];1204 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1205 -> 824[label="",style="dashed", color="red", weight=0]; 1205[label="yv300 == yv4000",fontsize=16,color="magenta"];1205 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1206 -> 825[label="",style="dashed", color="red", weight=0]; 1206[label="yv300 == yv4000",fontsize=16,color="magenta"];1206 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1207 -> 826[label="",style="dashed", color="red", weight=0]; 1207[label="yv300 == yv4000",fontsize=16,color="magenta"];1207 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1208 -> 827[label="",style="dashed", color="red", weight=0]; 1208[label="yv300 == yv4000",fontsize=16,color="magenta"];1208 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1209 -> 828[label="",style="dashed", color="red", weight=0]; 1209[label="yv300 == yv4000",fontsize=16,color="magenta"];1209 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1210 -> 829[label="",style="dashed", color="red", weight=0]; 1210[label="yv300 == yv4000",fontsize=16,color="magenta"];1210 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1211 -> 830[label="",style="dashed", color="red", weight=0]; 1211[label="yv300 == yv4000",fontsize=16,color="magenta"];1211 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1212 -> 831[label="",style="dashed", color="red", weight=0]; 1212[label="yv300 == yv4000",fontsize=16,color="magenta"];1212 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1213 -> 832[label="",style="dashed", color="red", weight=0]; 1213[label="yv300 == yv4000",fontsize=16,color="magenta"];1213 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1214 -> 833[label="",style="dashed", color="red", weight=0]; 1214[label="yv300 == yv4000",fontsize=16,color="magenta"];1214 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1215 -> 834[label="",style="dashed", color="red", weight=0]; 1215[label="yv300 == yv4000",fontsize=16,color="magenta"];1215 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1216 -> 835[label="",style="dashed", color="red", weight=0]; 1216[label="yv300 == yv4000",fontsize=16,color="magenta"];1216 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1217 -> 836[label="",style="dashed", color="red", weight=0]; 1217[label="yv300 == yv4000",fontsize=16,color="magenta"];1217 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1218[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];1845[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1845[label="",style="solid", color="blue", weight=9]; 1845 -> 1320[label="",style="solid", color="blue", weight=3]; 1846[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1846[label="",style="solid", color="blue", weight=9]; 1846 -> 1321[label="",style="solid", color="blue", weight=3]; 1847[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1847[label="",style="solid", color="blue", weight=9]; 1847 -> 1322[label="",style="solid", color="blue", weight=3]; 1848[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1848[label="",style="solid", color="blue", weight=9]; 1848 -> 1323[label="",style="solid", color="blue", weight=3]; 1849[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1849[label="",style="solid", color="blue", weight=9]; 1849 -> 1324[label="",style="solid", color="blue", weight=3]; 1850[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1850[label="",style="solid", color="blue", weight=9]; 1850 -> 1325[label="",style="solid", color="blue", weight=3]; 1851[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1851[label="",style="solid", color="blue", weight=9]; 1851 -> 1326[label="",style="solid", color="blue", weight=3]; 1852[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1852[label="",style="solid", color="blue", weight=9]; 1852 -> 1327[label="",style="solid", color="blue", weight=3]; 1853[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1853[label="",style="solid", color="blue", weight=9]; 1853 -> 1328[label="",style="solid", color="blue", weight=3]; 1854[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1854[label="",style="solid", color="blue", weight=9]; 1854 -> 1329[label="",style="solid", color="blue", weight=3]; 1855[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1855[label="",style="solid", color="blue", weight=9]; 1855 -> 1330[label="",style="solid", color="blue", weight=3]; 1856[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1856[label="",style="solid", color="blue", weight=9]; 1856 -> 1331[label="",style="solid", color="blue", weight=3]; 1857[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1857[label="",style="solid", color="blue", weight=9]; 1857 -> 1332[label="",style="solid", color="blue", weight=3]; 1858[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 1858[label="",style="solid", color="blue", weight=9]; 1858 -> 1333[label="",style="solid", color="blue", weight=3]; 1219[label="yv302 == yv4002",fontsize=16,color="blue",shape="box"];1859[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1859[label="",style="solid", color="blue", weight=9]; 1859 -> 1334[label="",style="solid", color="blue", weight=3]; 1860[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1860[label="",style="solid", color="blue", weight=9]; 1860 -> 1335[label="",style="solid", color="blue", weight=3]; 1861[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1861[label="",style="solid", color="blue", weight=9]; 1861 -> 1336[label="",style="solid", color="blue", weight=3]; 1862[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1862[label="",style="solid", color="blue", weight=9]; 1862 -> 1337[label="",style="solid", color="blue", weight=3]; 1863[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1863[label="",style="solid", color="blue", weight=9]; 1863 -> 1338[label="",style="solid", color="blue", weight=3]; 1864[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1864[label="",style="solid", color="blue", weight=9]; 1864 -> 1339[label="",style="solid", color="blue", weight=3]; 1865[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1865[label="",style="solid", color="blue", weight=9]; 1865 -> 1340[label="",style="solid", color="blue", weight=3]; 1866[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1866[label="",style="solid", color="blue", weight=9]; 1866 -> 1341[label="",style="solid", color="blue", weight=3]; 1867[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1867[label="",style="solid", color="blue", weight=9]; 1867 -> 1342[label="",style="solid", color="blue", weight=3]; 1868[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1868[label="",style="solid", color="blue", weight=9]; 1868 -> 1343[label="",style="solid", color="blue", weight=3]; 1869[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1869[label="",style="solid", color="blue", weight=9]; 1869 -> 1344[label="",style="solid", color="blue", weight=3]; 1870[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1870[label="",style="solid", color="blue", weight=9]; 1870 -> 1345[label="",style="solid", color="blue", weight=3]; 1871[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1871[label="",style="solid", color="blue", weight=9]; 1871 -> 1346[label="",style="solid", color="blue", weight=3]; 1872[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 1872[label="",style="solid", color="blue", weight=9]; 1872 -> 1347[label="",style="solid", color="blue", weight=3]; 1220[label="False && yv63",fontsize=16,color="black",shape="box"];1220 -> 1348[label="",style="solid", color="black", weight=3]; 1221[label="True && yv63",fontsize=16,color="black",shape="box"];1221 -> 1349[label="",style="solid", color="black", weight=3]; 1222[label="yv300 * yv4001",fontsize=16,color="black",shape="triangle"];1222 -> 1350[label="",style="solid", color="black", weight=3]; 1223 -> 1222[label="",style="dashed", color="red", weight=0]; 1223[label="yv301 * yv4000",fontsize=16,color="magenta"];1223 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1222[label="",style="dashed", color="red", weight=0]; 1224[label="yv300 * yv4001",fontsize=16,color="magenta"];1224 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1222[label="",style="dashed", color="red", weight=0]; 1225[label="yv301 * yv4000",fontsize=16,color="magenta"];1225 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1226 -> 826[label="",style="dashed", color="red", weight=0]; 1226[label="yv300 == yv4000",fontsize=16,color="magenta"];1226 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1227 -> 835[label="",style="dashed", color="red", weight=0]; 1227[label="yv300 == yv4000",fontsize=16,color="magenta"];1227 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1228 -> 826[label="",style="dashed", color="red", weight=0]; 1228[label="yv301 == yv4001",fontsize=16,color="magenta"];1228 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1229 -> 835[label="",style="dashed", color="red", weight=0]; 1229[label="yv301 == yv4001",fontsize=16,color="magenta"];1229 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1230 -> 823[label="",style="dashed", color="red", weight=0]; 1230[label="yv300 == yv4000",fontsize=16,color="magenta"];1230 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1231 -> 824[label="",style="dashed", color="red", weight=0]; 1231[label="yv300 == yv4000",fontsize=16,color="magenta"];1231 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1232 -> 825[label="",style="dashed", color="red", weight=0]; 1232[label="yv300 == yv4000",fontsize=16,color="magenta"];1232 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1233 -> 826[label="",style="dashed", color="red", weight=0]; 1233[label="yv300 == yv4000",fontsize=16,color="magenta"];1233 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1234 -> 827[label="",style="dashed", color="red", weight=0]; 1234[label="yv300 == yv4000",fontsize=16,color="magenta"];1234 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1235 -> 828[label="",style="dashed", color="red", weight=0]; 1235[label="yv300 == yv4000",fontsize=16,color="magenta"];1235 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1236 -> 829[label="",style="dashed", color="red", weight=0]; 1236[label="yv300 == yv4000",fontsize=16,color="magenta"];1236 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1237 -> 830[label="",style="dashed", color="red", weight=0]; 1237[label="yv300 == yv4000",fontsize=16,color="magenta"];1237 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1238 -> 831[label="",style="dashed", color="red", weight=0]; 1238[label="yv300 == yv4000",fontsize=16,color="magenta"];1238 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1239 -> 832[label="",style="dashed", color="red", weight=0]; 1239[label="yv300 == yv4000",fontsize=16,color="magenta"];1239 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1240 -> 833[label="",style="dashed", color="red", weight=0]; 1240[label="yv300 == yv4000",fontsize=16,color="magenta"];1240 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1241 -> 834[label="",style="dashed", color="red", weight=0]; 1241[label="yv300 == yv4000",fontsize=16,color="magenta"];1241 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1242 -> 835[label="",style="dashed", color="red", weight=0]; 1242[label="yv300 == yv4000",fontsize=16,color="magenta"];1242 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1243 -> 836[label="",style="dashed", color="red", weight=0]; 1243[label="yv300 == yv4000",fontsize=16,color="magenta"];1243 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1244[label="yv301",fontsize=16,color="green",shape="box"];1245[label="yv4001",fontsize=16,color="green",shape="box"];1246[label="primEqNat (Succ yv3000) yv4000",fontsize=16,color="burlywood",shape="box"];1873[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1246 -> 1873[label="",style="solid", color="burlywood", weight=9]; 1873 -> 1393[label="",style="solid", color="burlywood", weight=3]; 1874[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1246 -> 1874[label="",style="solid", color="burlywood", weight=9]; 1874 -> 1394[label="",style="solid", color="burlywood", weight=3]; 1247[label="primEqNat Zero yv4000",fontsize=16,color="burlywood",shape="box"];1875[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1247 -> 1875[label="",style="solid", color="burlywood", weight=9]; 1875 -> 1395[label="",style="solid", color="burlywood", weight=3]; 1876[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1247 -> 1876[label="",style="solid", color="burlywood", weight=9]; 1876 -> 1396[label="",style="solid", color="burlywood", weight=3]; 1248 -> 823[label="",style="dashed", color="red", weight=0]; 1248[label="yv300 == yv4000",fontsize=16,color="magenta"];1248 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1249 -> 824[label="",style="dashed", color="red", weight=0]; 1249[label="yv300 == yv4000",fontsize=16,color="magenta"];1249 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1250 -> 825[label="",style="dashed", color="red", weight=0]; 1250[label="yv300 == yv4000",fontsize=16,color="magenta"];1250 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1251 -> 826[label="",style="dashed", color="red", weight=0]; 1251[label="yv300 == yv4000",fontsize=16,color="magenta"];1251 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1252 -> 827[label="",style="dashed", color="red", weight=0]; 1252[label="yv300 == yv4000",fontsize=16,color="magenta"];1252 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1253 -> 828[label="",style="dashed", color="red", weight=0]; 1253[label="yv300 == yv4000",fontsize=16,color="magenta"];1253 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1254 -> 829[label="",style="dashed", color="red", weight=0]; 1254[label="yv300 == yv4000",fontsize=16,color="magenta"];1254 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1254 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1255 -> 830[label="",style="dashed", color="red", weight=0]; 1255[label="yv300 == yv4000",fontsize=16,color="magenta"];1255 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1256 -> 831[label="",style="dashed", color="red", weight=0]; 1256[label="yv300 == yv4000",fontsize=16,color="magenta"];1256 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1256 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1257 -> 832[label="",style="dashed", color="red", weight=0]; 1257[label="yv300 == yv4000",fontsize=16,color="magenta"];1257 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1258 -> 833[label="",style="dashed", color="red", weight=0]; 1258[label="yv300 == yv4000",fontsize=16,color="magenta"];1258 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1259 -> 834[label="",style="dashed", color="red", weight=0]; 1259[label="yv300 == yv4000",fontsize=16,color="magenta"];1259 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1260 -> 835[label="",style="dashed", color="red", weight=0]; 1260[label="yv300 == yv4000",fontsize=16,color="magenta"];1260 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1261 -> 836[label="",style="dashed", color="red", weight=0]; 1261[label="yv300 == yv4000",fontsize=16,color="magenta"];1261 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1262 -> 823[label="",style="dashed", color="red", weight=0]; 1262[label="yv301 == yv4001",fontsize=16,color="magenta"];1262 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1263 -> 824[label="",style="dashed", color="red", weight=0]; 1263[label="yv301 == yv4001",fontsize=16,color="magenta"];1263 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1264 -> 825[label="",style="dashed", color="red", weight=0]; 1264[label="yv301 == yv4001",fontsize=16,color="magenta"];1264 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1265 -> 826[label="",style="dashed", color="red", weight=0]; 1265[label="yv301 == yv4001",fontsize=16,color="magenta"];1265 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1266 -> 827[label="",style="dashed", color="red", weight=0]; 1266[label="yv301 == yv4001",fontsize=16,color="magenta"];1266 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1267 -> 828[label="",style="dashed", color="red", weight=0]; 1267[label="yv301 == yv4001",fontsize=16,color="magenta"];1267 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1268 -> 829[label="",style="dashed", color="red", weight=0]; 1268[label="yv301 == yv4001",fontsize=16,color="magenta"];1268 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1269 -> 830[label="",style="dashed", color="red", weight=0]; 1269[label="yv301 == yv4001",fontsize=16,color="magenta"];1269 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1270 -> 831[label="",style="dashed", color="red", weight=0]; 1270[label="yv301 == yv4001",fontsize=16,color="magenta"];1270 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1271 -> 832[label="",style="dashed", color="red", weight=0]; 1271[label="yv301 == yv4001",fontsize=16,color="magenta"];1271 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1272 -> 833[label="",style="dashed", color="red", weight=0]; 1272[label="yv301 == yv4001",fontsize=16,color="magenta"];1272 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1273 -> 834[label="",style="dashed", color="red", weight=0]; 1273[label="yv301 == yv4001",fontsize=16,color="magenta"];1273 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1274 -> 835[label="",style="dashed", color="red", weight=0]; 1274[label="yv301 == yv4001",fontsize=16,color="magenta"];1274 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1275 -> 836[label="",style="dashed", color="red", weight=0]; 1275[label="yv301 == yv4001",fontsize=16,color="magenta"];1275 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1276[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (Pos yv40 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv40 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1276 -> 1453[label="",style="solid", color="black", weight=3]; 1277[label="Left yv10",fontsize=16,color="green",shape="box"];1278[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (Pos yv42 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv42 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1278 -> 1454[label="",style="solid", color="black", weight=3]; 1279[label="Right yv17",fontsize=16,color="green",shape="box"];1280 -> 1073[label="",style="dashed", color="red", weight=0]; 1280[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1280 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1281[label="False",fontsize=16,color="green",shape="box"];1282[label="False",fontsize=16,color="green",shape="box"];1283[label="True",fontsize=16,color="green",shape="box"];1284[label="False",fontsize=16,color="green",shape="box"];1285[label="True",fontsize=16,color="green",shape="box"];1286 -> 1073[label="",style="dashed", color="red", weight=0]; 1286[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1286 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1287[label="False",fontsize=16,color="green",shape="box"];1288[label="False",fontsize=16,color="green",shape="box"];1289[label="True",fontsize=16,color="green",shape="box"];1290[label="False",fontsize=16,color="green",shape="box"];1291[label="True",fontsize=16,color="green",shape="box"];1292[label="yv300",fontsize=16,color="green",shape="box"];1293[label="yv4000",fontsize=16,color="green",shape="box"];1294[label="yv300",fontsize=16,color="green",shape="box"];1295[label="yv4000",fontsize=16,color="green",shape="box"];1296[label="yv300",fontsize=16,color="green",shape="box"];1297[label="yv4000",fontsize=16,color="green",shape="box"];1298[label="yv300",fontsize=16,color="green",shape="box"];1299[label="yv4000",fontsize=16,color="green",shape="box"];1300[label="yv300",fontsize=16,color="green",shape="box"];1301[label="yv4000",fontsize=16,color="green",shape="box"];1302[label="yv300",fontsize=16,color="green",shape="box"];1303[label="yv4000",fontsize=16,color="green",shape="box"];1304[label="yv300",fontsize=16,color="green",shape="box"];1305[label="yv4000",fontsize=16,color="green",shape="box"];1306[label="yv300",fontsize=16,color="green",shape="box"];1307[label="yv4000",fontsize=16,color="green",shape="box"];1308[label="yv300",fontsize=16,color="green",shape="box"];1309[label="yv4000",fontsize=16,color="green",shape="box"];1310[label="yv300",fontsize=16,color="green",shape="box"];1311[label="yv4000",fontsize=16,color="green",shape="box"];1312[label="yv300",fontsize=16,color="green",shape="box"];1313[label="yv4000",fontsize=16,color="green",shape="box"];1314[label="yv300",fontsize=16,color="green",shape="box"];1315[label="yv4000",fontsize=16,color="green",shape="box"];1316[label="yv300",fontsize=16,color="green",shape="box"];1317[label="yv4000",fontsize=16,color="green",shape="box"];1318[label="yv300",fontsize=16,color="green",shape="box"];1319[label="yv4000",fontsize=16,color="green",shape="box"];1320 -> 823[label="",style="dashed", color="red", weight=0]; 1320[label="yv301 == yv4001",fontsize=16,color="magenta"];1320 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1321 -> 824[label="",style="dashed", color="red", weight=0]; 1321[label="yv301 == yv4001",fontsize=16,color="magenta"];1321 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1322 -> 825[label="",style="dashed", color="red", weight=0]; 1322[label="yv301 == yv4001",fontsize=16,color="magenta"];1322 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1323 -> 826[label="",style="dashed", color="red", weight=0]; 1323[label="yv301 == yv4001",fontsize=16,color="magenta"];1323 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1324 -> 827[label="",style="dashed", color="red", weight=0]; 1324[label="yv301 == yv4001",fontsize=16,color="magenta"];1324 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1325 -> 828[label="",style="dashed", color="red", weight=0]; 1325[label="yv301 == yv4001",fontsize=16,color="magenta"];1325 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1326 -> 829[label="",style="dashed", color="red", weight=0]; 1326[label="yv301 == yv4001",fontsize=16,color="magenta"];1326 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1327 -> 830[label="",style="dashed", color="red", weight=0]; 1327[label="yv301 == yv4001",fontsize=16,color="magenta"];1327 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1328 -> 831[label="",style="dashed", color="red", weight=0]; 1328[label="yv301 == yv4001",fontsize=16,color="magenta"];1328 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1329 -> 832[label="",style="dashed", color="red", weight=0]; 1329[label="yv301 == yv4001",fontsize=16,color="magenta"];1329 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1330 -> 833[label="",style="dashed", color="red", weight=0]; 1330[label="yv301 == yv4001",fontsize=16,color="magenta"];1330 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1331 -> 834[label="",style="dashed", color="red", weight=0]; 1331[label="yv301 == yv4001",fontsize=16,color="magenta"];1331 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1332 -> 835[label="",style="dashed", color="red", weight=0]; 1332[label="yv301 == yv4001",fontsize=16,color="magenta"];1332 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1333 -> 836[label="",style="dashed", color="red", weight=0]; 1333[label="yv301 == yv4001",fontsize=16,color="magenta"];1333 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1334 -> 823[label="",style="dashed", color="red", weight=0]; 1334[label="yv302 == yv4002",fontsize=16,color="magenta"];1334 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1335 -> 824[label="",style="dashed", color="red", weight=0]; 1335[label="yv302 == yv4002",fontsize=16,color="magenta"];1335 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1336 -> 825[label="",style="dashed", color="red", weight=0]; 1336[label="yv302 == yv4002",fontsize=16,color="magenta"];1336 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1337 -> 826[label="",style="dashed", color="red", weight=0]; 1337[label="yv302 == yv4002",fontsize=16,color="magenta"];1337 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1338 -> 827[label="",style="dashed", color="red", weight=0]; 1338[label="yv302 == yv4002",fontsize=16,color="magenta"];1338 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1339 -> 828[label="",style="dashed", color="red", weight=0]; 1339[label="yv302 == yv4002",fontsize=16,color="magenta"];1339 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1340 -> 829[label="",style="dashed", color="red", weight=0]; 1340[label="yv302 == yv4002",fontsize=16,color="magenta"];1340 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1341 -> 830[label="",style="dashed", color="red", weight=0]; 1341[label="yv302 == yv4002",fontsize=16,color="magenta"];1341 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1342 -> 831[label="",style="dashed", color="red", weight=0]; 1342[label="yv302 == yv4002",fontsize=16,color="magenta"];1342 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1343 -> 832[label="",style="dashed", color="red", weight=0]; 1343[label="yv302 == yv4002",fontsize=16,color="magenta"];1343 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1344 -> 833[label="",style="dashed", color="red", weight=0]; 1344[label="yv302 == yv4002",fontsize=16,color="magenta"];1344 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1345 -> 834[label="",style="dashed", color="red", weight=0]; 1345[label="yv302 == yv4002",fontsize=16,color="magenta"];1345 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1346 -> 835[label="",style="dashed", color="red", weight=0]; 1346[label="yv302 == yv4002",fontsize=16,color="magenta"];1346 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1347 -> 836[label="",style="dashed", color="red", weight=0]; 1347[label="yv302 == yv4002",fontsize=16,color="magenta"];1347 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1348[label="False",fontsize=16,color="green",shape="box"];1349[label="yv63",fontsize=16,color="green",shape="box"];1350[label="primMulInt yv300 yv4001",fontsize=16,color="burlywood",shape="box"];1877[label="yv300/Pos yv3000",fontsize=10,color="white",style="solid",shape="box"];1350 -> 1877[label="",style="solid", color="burlywood", weight=9]; 1877 -> 1515[label="",style="solid", color="burlywood", weight=3]; 1878[label="yv300/Neg yv3000",fontsize=10,color="white",style="solid",shape="box"];1350 -> 1878[label="",style="solid", color="burlywood", weight=9]; 1878 -> 1516[label="",style="solid", color="burlywood", weight=3]; 1351[label="yv301",fontsize=16,color="green",shape="box"];1352[label="yv4000",fontsize=16,color="green",shape="box"];1353[label="yv300",fontsize=16,color="green",shape="box"];1354[label="yv4001",fontsize=16,color="green",shape="box"];1355[label="yv301",fontsize=16,color="green",shape="box"];1356[label="yv4000",fontsize=16,color="green",shape="box"];1357[label="yv300",fontsize=16,color="green",shape="box"];1358[label="yv4000",fontsize=16,color="green",shape="box"];1359[label="yv300",fontsize=16,color="green",shape="box"];1360[label="yv4000",fontsize=16,color="green",shape="box"];1361[label="yv301",fontsize=16,color="green",shape="box"];1362[label="yv4001",fontsize=16,color="green",shape="box"];1363[label="yv301",fontsize=16,color="green",shape="box"];1364[label="yv4001",fontsize=16,color="green",shape="box"];1365[label="yv300",fontsize=16,color="green",shape="box"];1366[label="yv4000",fontsize=16,color="green",shape="box"];1367[label="yv300",fontsize=16,color="green",shape="box"];1368[label="yv4000",fontsize=16,color="green",shape="box"];1369[label="yv300",fontsize=16,color="green",shape="box"];1370[label="yv4000",fontsize=16,color="green",shape="box"];1371[label="yv300",fontsize=16,color="green",shape="box"];1372[label="yv4000",fontsize=16,color="green",shape="box"];1373[label="yv300",fontsize=16,color="green",shape="box"];1374[label="yv4000",fontsize=16,color="green",shape="box"];1375[label="yv300",fontsize=16,color="green",shape="box"];1376[label="yv4000",fontsize=16,color="green",shape="box"];1377[label="yv300",fontsize=16,color="green",shape="box"];1378[label="yv4000",fontsize=16,color="green",shape="box"];1379[label="yv300",fontsize=16,color="green",shape="box"];1380[label="yv4000",fontsize=16,color="green",shape="box"];1381[label="yv300",fontsize=16,color="green",shape="box"];1382[label="yv4000",fontsize=16,color="green",shape="box"];1383[label="yv300",fontsize=16,color="green",shape="box"];1384[label="yv4000",fontsize=16,color="green",shape="box"];1385[label="yv300",fontsize=16,color="green",shape="box"];1386[label="yv4000",fontsize=16,color="green",shape="box"];1387[label="yv300",fontsize=16,color="green",shape="box"];1388[label="yv4000",fontsize=16,color="green",shape="box"];1389[label="yv300",fontsize=16,color="green",shape="box"];1390[label="yv4000",fontsize=16,color="green",shape="box"];1391[label="yv300",fontsize=16,color="green",shape="box"];1392[label="yv4000",fontsize=16,color="green",shape="box"];1393[label="primEqNat (Succ yv3000) (Succ yv40000)",fontsize=16,color="black",shape="box"];1393 -> 1517[label="",style="solid", color="black", weight=3]; 1394[label="primEqNat (Succ yv3000) Zero",fontsize=16,color="black",shape="box"];1394 -> 1518[label="",style="solid", color="black", weight=3]; 1395[label="primEqNat Zero (Succ yv40000)",fontsize=16,color="black",shape="box"];1395 -> 1519[label="",style="solid", color="black", weight=3]; 1396[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1396 -> 1520[label="",style="solid", color="black", weight=3]; 1397[label="yv300",fontsize=16,color="green",shape="box"];1398[label="yv4000",fontsize=16,color="green",shape="box"];1399[label="yv300",fontsize=16,color="green",shape="box"];1400[label="yv4000",fontsize=16,color="green",shape="box"];1401[label="yv300",fontsize=16,color="green",shape="box"];1402[label="yv4000",fontsize=16,color="green",shape="box"];1403[label="yv300",fontsize=16,color="green",shape="box"];1404[label="yv4000",fontsize=16,color="green",shape="box"];1405[label="yv300",fontsize=16,color="green",shape="box"];1406[label="yv4000",fontsize=16,color="green",shape="box"];1407[label="yv300",fontsize=16,color="green",shape="box"];1408[label="yv4000",fontsize=16,color="green",shape="box"];1409[label="yv300",fontsize=16,color="green",shape="box"];1410[label="yv4000",fontsize=16,color="green",shape="box"];1411[label="yv300",fontsize=16,color="green",shape="box"];1412[label="yv4000",fontsize=16,color="green",shape="box"];1413[label="yv300",fontsize=16,color="green",shape="box"];1414[label="yv4000",fontsize=16,color="green",shape="box"];1415[label="yv300",fontsize=16,color="green",shape="box"];1416[label="yv4000",fontsize=16,color="green",shape="box"];1417[label="yv300",fontsize=16,color="green",shape="box"];1418[label="yv4000",fontsize=16,color="green",shape="box"];1419[label="yv300",fontsize=16,color="green",shape="box"];1420[label="yv4000",fontsize=16,color="green",shape="box"];1421[label="yv300",fontsize=16,color="green",shape="box"];1422[label="yv4000",fontsize=16,color="green",shape="box"];1423[label="yv300",fontsize=16,color="green",shape="box"];1424[label="yv4000",fontsize=16,color="green",shape="box"];1425[label="yv301",fontsize=16,color="green",shape="box"];1426[label="yv4001",fontsize=16,color="green",shape="box"];1427[label="yv301",fontsize=16,color="green",shape="box"];1428[label="yv4001",fontsize=16,color="green",shape="box"];1429[label="yv301",fontsize=16,color="green",shape="box"];1430[label="yv4001",fontsize=16,color="green",shape="box"];1431[label="yv301",fontsize=16,color="green",shape="box"];1432[label="yv4001",fontsize=16,color="green",shape="box"];1433[label="yv301",fontsize=16,color="green",shape="box"];1434[label="yv4001",fontsize=16,color="green",shape="box"];1435[label="yv301",fontsize=16,color="green",shape="box"];1436[label="yv4001",fontsize=16,color="green",shape="box"];1437[label="yv301",fontsize=16,color="green",shape="box"];1438[label="yv4001",fontsize=16,color="green",shape="box"];1439[label="yv301",fontsize=16,color="green",shape="box"];1440[label="yv4001",fontsize=16,color="green",shape="box"];1441[label="yv301",fontsize=16,color="green",shape="box"];1442[label="yv4001",fontsize=16,color="green",shape="box"];1443[label="yv301",fontsize=16,color="green",shape="box"];1444[label="yv4001",fontsize=16,color="green",shape="box"];1445[label="yv301",fontsize=16,color="green",shape="box"];1446[label="yv4001",fontsize=16,color="green",shape="box"];1447[label="yv301",fontsize=16,color="green",shape="box"];1448[label="yv4001",fontsize=16,color="green",shape="box"];1449[label="yv301",fontsize=16,color="green",shape="box"];1450[label="yv4001",fontsize=16,color="green",shape="box"];1451[label="yv301",fontsize=16,color="green",shape="box"];1452[label="yv4001",fontsize=16,color="green",shape="box"];1453[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (primPlusInt (Pos yv40) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv40) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1453 -> 1521[label="",style="solid", color="black", weight=3]; 1454[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (primPlusInt (Pos yv42) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv42) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1454 -> 1522[label="",style="solid", color="black", weight=3]; 1455[label="yv40000",fontsize=16,color="green",shape="box"];1456[label="yv3000",fontsize=16,color="green",shape="box"];1457[label="yv40000",fontsize=16,color="green",shape="box"];1458[label="yv3000",fontsize=16,color="green",shape="box"];1459[label="yv301",fontsize=16,color="green",shape="box"];1460[label="yv4001",fontsize=16,color="green",shape="box"];1461[label="yv301",fontsize=16,color="green",shape="box"];1462[label="yv4001",fontsize=16,color="green",shape="box"];1463[label="yv301",fontsize=16,color="green",shape="box"];1464[label="yv4001",fontsize=16,color="green",shape="box"];1465[label="yv301",fontsize=16,color="green",shape="box"];1466[label="yv4001",fontsize=16,color="green",shape="box"];1467[label="yv301",fontsize=16,color="green",shape="box"];1468[label="yv4001",fontsize=16,color="green",shape="box"];1469[label="yv301",fontsize=16,color="green",shape="box"];1470[label="yv4001",fontsize=16,color="green",shape="box"];1471[label="yv301",fontsize=16,color="green",shape="box"];1472[label="yv4001",fontsize=16,color="green",shape="box"];1473[label="yv301",fontsize=16,color="green",shape="box"];1474[label="yv4001",fontsize=16,color="green",shape="box"];1475[label="yv301",fontsize=16,color="green",shape="box"];1476[label="yv4001",fontsize=16,color="green",shape="box"];1477[label="yv301",fontsize=16,color="green",shape="box"];1478[label="yv4001",fontsize=16,color="green",shape="box"];1479[label="yv301",fontsize=16,color="green",shape="box"];1480[label="yv4001",fontsize=16,color="green",shape="box"];1481[label="yv301",fontsize=16,color="green",shape="box"];1482[label="yv4001",fontsize=16,color="green",shape="box"];1483[label="yv301",fontsize=16,color="green",shape="box"];1484[label="yv4001",fontsize=16,color="green",shape="box"];1485[label="yv301",fontsize=16,color="green",shape="box"];1486[label="yv4001",fontsize=16,color="green",shape="box"];1487[label="yv302",fontsize=16,color="green",shape="box"];1488[label="yv4002",fontsize=16,color="green",shape="box"];1489[label="yv302",fontsize=16,color="green",shape="box"];1490[label="yv4002",fontsize=16,color="green",shape="box"];1491[label="yv302",fontsize=16,color="green",shape="box"];1492[label="yv4002",fontsize=16,color="green",shape="box"];1493[label="yv302",fontsize=16,color="green",shape="box"];1494[label="yv4002",fontsize=16,color="green",shape="box"];1495[label="yv302",fontsize=16,color="green",shape="box"];1496[label="yv4002",fontsize=16,color="green",shape="box"];1497[label="yv302",fontsize=16,color="green",shape="box"];1498[label="yv4002",fontsize=16,color="green",shape="box"];1499[label="yv302",fontsize=16,color="green",shape="box"];1500[label="yv4002",fontsize=16,color="green",shape="box"];1501[label="yv302",fontsize=16,color="green",shape="box"];1502[label="yv4002",fontsize=16,color="green",shape="box"];1503[label="yv302",fontsize=16,color="green",shape="box"];1504[label="yv4002",fontsize=16,color="green",shape="box"];1505[label="yv302",fontsize=16,color="green",shape="box"];1506[label="yv4002",fontsize=16,color="green",shape="box"];1507[label="yv302",fontsize=16,color="green",shape="box"];1508[label="yv4002",fontsize=16,color="green",shape="box"];1509[label="yv302",fontsize=16,color="green",shape="box"];1510[label="yv4002",fontsize=16,color="green",shape="box"];1511[label="yv302",fontsize=16,color="green",shape="box"];1512[label="yv4002",fontsize=16,color="green",shape="box"];1513[label="yv302",fontsize=16,color="green",shape="box"];1514[label="yv4002",fontsize=16,color="green",shape="box"];1515[label="primMulInt (Pos yv3000) yv4001",fontsize=16,color="burlywood",shape="box"];1879[label="yv4001/Pos yv40010",fontsize=10,color="white",style="solid",shape="box"];1515 -> 1879[label="",style="solid", color="burlywood", weight=9]; 1879 -> 1523[label="",style="solid", color="burlywood", weight=3]; 1880[label="yv4001/Neg yv40010",fontsize=10,color="white",style="solid",shape="box"];1515 -> 1880[label="",style="solid", color="burlywood", weight=9]; 1880 -> 1524[label="",style="solid", color="burlywood", weight=3]; 1516[label="primMulInt (Neg yv3000) yv4001",fontsize=16,color="burlywood",shape="box"];1881[label="yv4001/Pos yv40010",fontsize=10,color="white",style="solid",shape="box"];1516 -> 1881[label="",style="solid", color="burlywood", weight=9]; 1881 -> 1525[label="",style="solid", color="burlywood", weight=3]; 1882[label="yv4001/Neg yv40010",fontsize=10,color="white",style="solid",shape="box"];1516 -> 1882[label="",style="solid", color="burlywood", weight=9]; 1882 -> 1526[label="",style="solid", color="burlywood", weight=3]; 1517 -> 1073[label="",style="dashed", color="red", weight=0]; 1517[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1517 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1518[label="False",fontsize=16,color="green",shape="box"];1519[label="False",fontsize=16,color="green",shape="box"];1520[label="True",fontsize=16,color="green",shape="box"];1521[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (primPlusInt (Pos yv40) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv40) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1521 -> 1529[label="",style="solid", color="black", weight=3]; 1522[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (primPlusInt (Pos yv42) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv42) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1522 -> 1530[label="",style="solid", color="black", weight=3]; 1523[label="primMulInt (Pos yv3000) (Pos yv40010)",fontsize=16,color="black",shape="box"];1523 -> 1531[label="",style="solid", color="black", weight=3]; 1524[label="primMulInt (Pos yv3000) (Neg yv40010)",fontsize=16,color="black",shape="box"];1524 -> 1532[label="",style="solid", color="black", weight=3]; 1525[label="primMulInt (Neg yv3000) (Pos yv40010)",fontsize=16,color="black",shape="box"];1525 -> 1533[label="",style="solid", color="black", weight=3]; 1526[label="primMulInt (Neg yv3000) (Neg yv40010)",fontsize=16,color="black",shape="box"];1526 -> 1534[label="",style="solid", color="black", weight=3]; 1527[label="yv40000",fontsize=16,color="green",shape="box"];1528[label="yv3000",fontsize=16,color="green",shape="box"];1529[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (Pos (primPlusNat yv40 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv40 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1529 -> 1535[label="",style="solid", color="black", weight=3]; 1530[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (Pos (primPlusNat yv42 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv42 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1530 -> 1536[label="",style="solid", color="black", weight=3]; 1531[label="Pos (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1531 -> 1537[label="",style="dashed", color="green", weight=3]; 1532[label="Neg (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1532 -> 1538[label="",style="dashed", color="green", weight=3]; 1533[label="Neg (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1533 -> 1539[label="",style="dashed", color="green", weight=3]; 1534[label="Pos (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1534 -> 1540[label="",style="dashed", color="green", weight=3]; 1535[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (numericEnumFrom (Pos (primPlusNat yv40 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1535 -> 1541[label="",style="solid", color="black", weight=3]; 1536[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (numericEnumFrom (Pos (primPlusNat yv42 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1536 -> 1542[label="",style="solid", color="black", weight=3]; 1537[label="primMulNat yv3000 yv40010",fontsize=16,color="burlywood",shape="triangle"];1883[label="yv3000/Succ yv30000",fontsize=10,color="white",style="solid",shape="box"];1537 -> 1883[label="",style="solid", color="burlywood", weight=9]; 1883 -> 1543[label="",style="solid", color="burlywood", weight=3]; 1884[label="yv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1537 -> 1884[label="",style="solid", color="burlywood", weight=9]; 1884 -> 1544[label="",style="solid", color="burlywood", weight=3]; 1538 -> 1537[label="",style="dashed", color="red", weight=0]; 1538[label="primMulNat yv3000 yv40010",fontsize=16,color="magenta"];1538 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1537[label="",style="dashed", color="red", weight=0]; 1539[label="primMulNat yv3000 yv40010",fontsize=16,color="magenta"];1539 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1537[label="",style="dashed", color="red", weight=0]; 1540[label="primMulNat yv3000 yv40010",fontsize=16,color="magenta"];1540 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1541[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (Pos (primPlusNat yv40 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv40 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1541 -> 1549[label="",style="solid", color="black", weight=3]; 1542[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (Pos (primPlusNat yv42 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv42 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1542 -> 1550[label="",style="solid", color="black", weight=3]; 1543[label="primMulNat (Succ yv30000) yv40010",fontsize=16,color="burlywood",shape="box"];1885[label="yv40010/Succ yv400100",fontsize=10,color="white",style="solid",shape="box"];1543 -> 1885[label="",style="solid", color="burlywood", weight=9]; 1885 -> 1551[label="",style="solid", color="burlywood", weight=3]; 1886[label="yv40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1543 -> 1886[label="",style="solid", color="burlywood", weight=9]; 1886 -> 1552[label="",style="solid", color="burlywood", weight=3]; 1544[label="primMulNat Zero yv40010",fontsize=16,color="burlywood",shape="box"];1887[label="yv40010/Succ yv400100",fontsize=10,color="white",style="solid",shape="box"];1544 -> 1887[label="",style="solid", color="burlywood", weight=9]; 1887 -> 1553[label="",style="solid", color="burlywood", weight=3]; 1888[label="yv40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1544 -> 1888[label="",style="solid", color="burlywood", weight=9]; 1888 -> 1554[label="",style="solid", color="burlywood", weight=3]; 1545[label="yv40010",fontsize=16,color="green",shape="box"];1546[label="yv3000",fontsize=16,color="green",shape="box"];1547[label="yv40010",fontsize=16,color="green",shape="box"];1548[label="yv3000",fontsize=16,color="green",shape="box"];1549[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zip0 yv1110 (Pos (primPlusNat yv40 (Succ Zero))) : zipWith zip0 yv1111 (numericEnumFrom $! Pos (primPlusNat yv40 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1549 -> 1555[label="",style="solid", color="black", weight=3]; 1550[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zip0 yv1810 (Pos (primPlusNat yv42 (Succ Zero))) : zipWith zip0 yv1811 (numericEnumFrom $! Pos (primPlusNat yv42 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1550 -> 1556[label="",style="solid", color="black", weight=3]; 1551[label="primMulNat (Succ yv30000) (Succ yv400100)",fontsize=16,color="black",shape="box"];1551 -> 1557[label="",style="solid", color="black", weight=3]; 1552[label="primMulNat (Succ yv30000) Zero",fontsize=16,color="black",shape="box"];1552 -> 1558[label="",style="solid", color="black", weight=3]; 1553[label="primMulNat Zero (Succ yv400100)",fontsize=16,color="black",shape="box"];1553 -> 1559[label="",style="solid", color="black", weight=3]; 1554[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1554 -> 1560[label="",style="solid", color="black", weight=3]; 1555[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (Left yv10 ==) (zip0 yv1110 (Pos (primPlusNat yv40 (Succ Zero)))) : map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos (primPlusNat yv40 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1555 -> 1561[label="",style="solid", color="black", weight=3]; 1556[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (Right yv17 ==) (zip0 yv1810 (Pos (primPlusNat yv42 (Succ Zero)))) : map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos (primPlusNat yv42 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1556 -> 1562[label="",style="solid", color="black", weight=3]; 1557 -> 1563[label="",style="dashed", color="red", weight=0]; 1557[label="primPlusNat (primMulNat yv30000 (Succ yv400100)) (Succ yv400100)",fontsize=16,color="magenta"];1557 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1558[label="Zero",fontsize=16,color="green",shape="box"];1559[label="Zero",fontsize=16,color="green",shape="box"];1560[label="Zero",fontsize=16,color="green",shape="box"];1561 -> 1565[label="",style="dashed", color="red", weight=0]; 1561[label="Maybe.listToMaybe ((++) List.findIndices0 (Left yv10 ==) (zip0 yv1110 (Pos (primPlusNat yv40 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos (primPlusNat yv40 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1561 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1568[label="",style="dashed", color="red", weight=0]; 1562[label="Maybe.listToMaybe ((++) List.findIndices0 (Right yv17 ==) (zip0 yv1810 (Pos (primPlusNat yv42 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos (primPlusNat yv42 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1562 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1537[label="",style="dashed", color="red", weight=0]; 1564[label="primMulNat yv30000 (Succ yv400100)",fontsize=16,color="magenta"];1564 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1563[label="primPlusNat yv64 (Succ yv400100)",fontsize=16,color="burlywood",shape="triangle"];1889[label="yv64/Succ yv640",fontsize=10,color="white",style="solid",shape="box"];1563 -> 1889[label="",style="solid", color="burlywood", weight=9]; 1889 -> 1573[label="",style="solid", color="burlywood", weight=3]; 1890[label="yv64/Zero",fontsize=10,color="white",style="solid",shape="box"];1563 -> 1890[label="",style="solid", color="burlywood", weight=9]; 1890 -> 1574[label="",style="solid", color="burlywood", weight=3]; 1566 -> 1563[label="",style="dashed", color="red", weight=0]; 1566[label="primPlusNat yv40 (Succ Zero)",fontsize=16,color="magenta"];1566 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1563[label="",style="dashed", color="red", weight=0]; 1567[label="primPlusNat yv40 (Succ Zero)",fontsize=16,color="magenta"];1567 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1565[label="Maybe.listToMaybe ((++) List.findIndices0 (Left yv10 ==) (zip0 yv1110 (Pos yv65)) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv66 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="triangle"];1565 -> 1579[label="",style="solid", color="black", weight=3]; 1569 -> 1563[label="",style="dashed", color="red", weight=0]; 1569[label="primPlusNat yv42 (Succ Zero)",fontsize=16,color="magenta"];1569 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1563[label="",style="dashed", color="red", weight=0]; 1570[label="primPlusNat yv42 (Succ Zero)",fontsize=16,color="magenta"];1570 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1568[label="Maybe.listToMaybe ((++) List.findIndices0 (Right yv17 ==) (zip0 yv1810 (Pos yv67)) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv68 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="triangle"];1568 -> 1584[label="",style="solid", color="black", weight=3]; 1571[label="Succ yv400100",fontsize=16,color="green",shape="box"];1572[label="yv30000",fontsize=16,color="green",shape="box"];1573[label="primPlusNat (Succ yv640) (Succ yv400100)",fontsize=16,color="black",shape="box"];1573 -> 1585[label="",style="solid", color="black", weight=3]; 1574[label="primPlusNat Zero (Succ yv400100)",fontsize=16,color="black",shape="box"];1574 -> 1586[label="",style="solid", color="black", weight=3]; 1575[label="Zero",fontsize=16,color="green",shape="box"];1576[label="yv40",fontsize=16,color="green",shape="box"];1577[label="Zero",fontsize=16,color="green",shape="box"];1578[label="yv40",fontsize=16,color="green",shape="box"];1579[label="Maybe.listToMaybe ((++) List.findIndices00 (Left yv10 ==) (zip0 yv1110 (Pos yv65)) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv66 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1579 -> 1587[label="",style="solid", color="black", weight=3]; 1580[label="Zero",fontsize=16,color="green",shape="box"];1581[label="yv42",fontsize=16,color="green",shape="box"];1582[label="Zero",fontsize=16,color="green",shape="box"];1583[label="yv42",fontsize=16,color="green",shape="box"];1584[label="Maybe.listToMaybe ((++) List.findIndices00 (Right yv17 ==) (zip0 yv1810 (Pos yv67)) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv68 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1584 -> 1588[label="",style="solid", color="black", weight=3]; 1585[label="Succ (Succ (primPlusNat yv640 yv400100))",fontsize=16,color="green",shape="box"];1585 -> 1589[label="",style="dashed", color="green", weight=3]; 1586[label="Succ yv400100",fontsize=16,color="green",shape="box"];1587[label="Maybe.listToMaybe ((++) List.findIndices00 (Left yv10 ==) (yv1110,Pos yv65) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv66 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1587 -> 1590[label="",style="solid", color="black", weight=3]; 1588[label="Maybe.listToMaybe ((++) List.findIndices00 (Right yv17 ==) (yv1810,Pos yv67) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv68 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1588 -> 1591[label="",style="solid", color="black", weight=3]; 1589[label="primPlusNat yv640 yv400100",fontsize=16,color="burlywood",shape="triangle"];1891[label="yv640/Succ yv6400",fontsize=10,color="white",style="solid",shape="box"];1589 -> 1891[label="",style="solid", color="burlywood", weight=9]; 1891 -> 1592[label="",style="solid", color="burlywood", weight=3]; 1892[label="yv640/Zero",fontsize=10,color="white",style="solid",shape="box"];1589 -> 1892[label="",style="solid", color="burlywood", weight=9]; 1892 -> 1593[label="",style="solid", color="burlywood", weight=3]; 1590 -> 807[label="",style="dashed", color="red", weight=0]; 1590[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv65) (Left yv10 == yv1110) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv66 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1590 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1591 -> 839[label="",style="dashed", color="red", weight=0]; 1591[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv67) (Right yv17 == yv1810) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv68 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1591 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1592[label="primPlusNat (Succ yv6400) yv400100",fontsize=16,color="burlywood",shape="box"];1893[label="yv400100/Succ yv4001000",fontsize=10,color="white",style="solid",shape="box"];1592 -> 1893[label="",style="solid", color="burlywood", weight=9]; 1893 -> 1602[label="",style="solid", color="burlywood", weight=3]; 1894[label="yv400100/Zero",fontsize=10,color="white",style="solid",shape="box"];1592 -> 1894[label="",style="solid", color="burlywood", weight=9]; 1894 -> 1603[label="",style="solid", color="burlywood", weight=3]; 1593[label="primPlusNat Zero yv400100",fontsize=16,color="burlywood",shape="box"];1895[label="yv400100/Succ yv4001000",fontsize=10,color="white",style="solid",shape="box"];1593 -> 1895[label="",style="solid", color="burlywood", weight=9]; 1895 -> 1604[label="",style="solid", color="burlywood", weight=3]; 1896[label="yv400100/Zero",fontsize=10,color="white",style="solid",shape="box"];1593 -> 1896[label="",style="solid", color="burlywood", weight=9]; 1896 -> 1605[label="",style="solid", color="burlywood", weight=3]; 1594[label="yv66",fontsize=16,color="green",shape="box"];1595[label="yv1111",fontsize=16,color="green",shape="box"];1596[label="yv65",fontsize=16,color="green",shape="box"];1597 -> 825[label="",style="dashed", color="red", weight=0]; 1597[label="Left yv10 == yv1110",fontsize=16,color="magenta"];1597 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1598[label="yv1811",fontsize=16,color="green",shape="box"];1599[label="yv67",fontsize=16,color="green",shape="box"];1600[label="yv68",fontsize=16,color="green",shape="box"];1601 -> 825[label="",style="dashed", color="red", weight=0]; 1601[label="Right yv17 == yv1810",fontsize=16,color="magenta"];1601 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1602[label="primPlusNat (Succ yv6400) (Succ yv4001000)",fontsize=16,color="black",shape="box"];1602 -> 1610[label="",style="solid", color="black", weight=3]; 1603[label="primPlusNat (Succ yv6400) Zero",fontsize=16,color="black",shape="box"];1603 -> 1611[label="",style="solid", color="black", weight=3]; 1604[label="primPlusNat Zero (Succ yv4001000)",fontsize=16,color="black",shape="box"];1604 -> 1612[label="",style="solid", color="black", weight=3]; 1605[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1605 -> 1613[label="",style="solid", color="black", weight=3]; 1606[label="Left yv10",fontsize=16,color="green",shape="box"];1607[label="yv1110",fontsize=16,color="green",shape="box"];1608[label="Right yv17",fontsize=16,color="green",shape="box"];1609[label="yv1810",fontsize=16,color="green",shape="box"];1610[label="Succ (Succ (primPlusNat yv6400 yv4001000))",fontsize=16,color="green",shape="box"];1610 -> 1614[label="",style="dashed", color="green", weight=3]; 1611[label="Succ yv6400",fontsize=16,color="green",shape="box"];1612[label="Succ yv4001000",fontsize=16,color="green",shape="box"];1613[label="Zero",fontsize=16,color="green",shape="box"];1614 -> 1589[label="",style="dashed", color="red", weight=0]; 1614[label="primPlusNat yv6400 yv4001000",fontsize=16,color="magenta"];1614 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1615[label="yv6400",fontsize=16,color="green",shape="box"];1616[label="yv4001000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(yv300), Just(yv4000), app(ty_[], bg)) -> new_esEs2(yv300, yv4000, bg) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(app(ty_Either, hf), hg)) -> new_esEs0(yv302, yv4002, hf, hg) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(yv300, yv4000, bcb, bcc) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(app(ty_Either, ge), gf), fa) -> new_esEs0(yv301, yv4001, ge, gf) new_esEs2(:(yv300, yv301), :(yv4000, yv4001), bbg) -> new_esEs2(yv301, yv4001, bbg) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(app(ty_Either, bdd), bde)) -> new_esEs0(yv301, yv4001, bdd, bde) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_Either, fb), fc), eh, fa) -> new_esEs0(yv300, yv4000, fb, fc) new_esEs0(Left(yv300), Left(yv4000), app(ty_Maybe, cb), cc) -> new_esEs(yv300, yv4000, cb) new_esEs(Just(yv300), Just(yv4000), app(app(ty_@2, bh), ca)) -> new_esEs3(yv300, yv4000, bh, ca) new_esEs0(Right(yv300), Right(yv4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(yv300, yv4000, dg, dh) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_esEs1(yv300, yv4000, fd, ff, fg) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(yv301, yv4001, bdf, bdg, bdh) new_esEs(Just(yv300), Just(yv4000), app(ty_Maybe, ba)) -> new_esEs(yv300, yv4000, ba) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(ty_[], bac)) -> new_esEs2(yv302, yv4002, bac) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(yv300, yv4000, bcd, bce, bcf) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(ty_[], hb), fa) -> new_esEs2(yv301, yv4001, hb) new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_@2, bbe), bbf)) -> new_esEs3(yv300, yv4000, bbe, bbf) new_esEs(Just(yv300), Just(yv4000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(yv300, yv4000, bd, be, bf) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(app(ty_@2, beb), bec)) -> new_esEs3(yv301, yv4001, beb, bec) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_[], fh), eh, fa) -> new_esEs2(yv300, yv4000, fh) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(ty_Maybe, he)) -> new_esEs(yv302, yv4002, he) new_esEs0(Left(yv300), Left(yv4000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(yv300, yv4000, dc, dd) new_esEs0(Left(yv300), Left(yv4000), app(ty_[], db), cc) -> new_esEs2(yv300, yv4000, db) new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs1(yv300, yv4000, bba, bbb, bbc) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(ty_Maybe, gd), fa) -> new_esEs(yv301, yv4001, gd) new_esEs0(Right(yv300), Right(yv4000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(yv300, yv4000, ee, ef) new_esEs0(Left(yv300), Left(yv4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(yv300, yv4000, cd, ce) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_Maybe, eg), eh, fa) -> new_esEs(yv300, yv4000, eg) new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_Either, bag), bah)) -> new_esEs0(yv300, yv4000, bag, bah) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_[], bcg), bca) -> new_esEs2(yv300, yv4000, bcg) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs1(yv302, yv4002, hh, baa, bab) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_@2, bch), bda), bca) -> new_esEs3(yv300, yv4000, bch, bda) new_esEs(Just(yv300), Just(yv4000), app(app(ty_Either, bb), bc)) -> new_esEs0(yv300, yv4000, bb, bc) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(app(ty_@2, bad), bae)) -> new_esEs3(yv302, yv4002, bad, bae) new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(ty_Maybe, baf)) -> new_esEs(yv300, yv4000, baf) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(ty_[], bea)) -> new_esEs2(yv301, yv4001, bea) new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(ty_[], bbd)) -> new_esEs2(yv300, yv4000, bbd) new_esEs0(Right(yv300), Right(yv4000), de, app(ty_[], ed)) -> new_esEs2(yv300, yv4000, ed) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(app(ty_@2, hc), hd), fa) -> new_esEs3(yv301, yv4001, hc, hd) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(ty_Maybe, bdc)) -> new_esEs(yv301, yv4001, bdc) new_esEs0(Left(yv300), Left(yv4000), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(yv300, yv4000, cf, cg, da) new_esEs0(Right(yv300), Right(yv4000), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(yv300, yv4000, ea, eb, ec) new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_Maybe, bbh), bca) -> new_esEs(yv300, yv4000, bbh) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_@2, ga), gb), eh, fa) -> new_esEs3(yv300, yv4000, ga, gb) new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_esEs1(yv301, yv4001, gg, gh, ha) new_esEs0(Right(yv300), Right(yv4000), de, app(ty_Maybe, df)) -> new_esEs(yv300, yv4000, df) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) 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_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(ty_Maybe, baf)) -> new_esEs(yv300, yv4000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs1(yv300, yv4000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_@2, bbe), bbf)) -> new_esEs3(yv300, yv4000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_Either, bag), bah)) -> new_esEs0(yv300, yv4000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(yv300), Just(yv4000), app(ty_Maybe, ba)) -> new_esEs(yv300, yv4000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(yv300), Just(yv4000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(yv300, yv4000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Just(yv300), Just(yv4000), app(app(ty_@2, bh), ca)) -> new_esEs3(yv300, yv4000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(yv300), Just(yv4000), app(ty_[], bg)) -> new_esEs2(yv300, yv4000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(yv300), Just(yv4000), app(app(ty_Either, bb), bc)) -> new_esEs0(yv300, yv4000, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(yv300, yv301), :(yv4000, yv4001), bbg) -> new_esEs2(yv301, yv4001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(yv300, yv301), :(yv4000, yv4001), app(ty_[], bbd)) -> new_esEs2(yv300, yv4000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(yv300), Left(yv4000), app(ty_Maybe, cb), cc) -> new_esEs(yv300, yv4000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(yv300), Right(yv4000), de, app(ty_Maybe, df)) -> new_esEs(yv300, yv4000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(ty_Maybe, bdc)) -> new_esEs(yv301, yv4001, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_Maybe, bbh), bca) -> new_esEs(yv300, yv4000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(ty_Maybe, he)) -> new_esEs(yv302, yv4002, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(ty_Maybe, gd), fa) -> new_esEs(yv301, yv4001, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_Maybe, eg), eh, fa) -> new_esEs(yv300, yv4000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(yv300), Left(yv4000), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(yv300, yv4000, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(yv300), Right(yv4000), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(yv300, yv4000, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Left(yv300), Left(yv4000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(yv300, yv4000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(yv300), Right(yv4000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(yv300, yv4000, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(yv300), Left(yv4000), app(ty_[], db), cc) -> new_esEs2(yv300, yv4000, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(yv300), Right(yv4000), de, app(ty_[], ed)) -> new_esEs2(yv300, yv4000, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Right(yv300), Right(yv4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(yv300, yv4000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(yv300), Left(yv4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(yv300, yv4000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(yv301, yv4001, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(yv300, yv4000, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(app(ty_@3, fd), ff), fg), eh, fa) -> new_esEs1(yv300, yv4000, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs1(yv302, yv4002, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(app(app(ty_@3, gg), gh), ha), fa) -> new_esEs1(yv301, yv4001, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(app(ty_@2, beb), bec)) -> new_esEs3(yv301, yv4001, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_@2, bch), bda), bca) -> new_esEs3(yv300, yv4000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(app(ty_@2, bad), bae)) -> new_esEs3(yv302, yv4002, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(app(ty_@2, hc), hd), fa) -> new_esEs3(yv301, yv4001, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_@2, ga), gb), eh, fa) -> new_esEs3(yv300, yv4000, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_[], bcg), bca) -> new_esEs2(yv300, yv4000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(ty_[], bea)) -> new_esEs2(yv301, yv4001, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(ty_[], bac)) -> new_esEs2(yv302, yv4002, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(ty_[], hb), fa) -> new_esEs2(yv301, yv4001, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_[], fh), eh, fa) -> new_esEs2(yv300, yv4000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(yv300, yv4000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(yv300, yv301), @2(yv4000, yv4001), bdb, app(app(ty_Either, bdd), bde)) -> new_esEs0(yv301, yv4001, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, eh, app(app(ty_Either, hf), hg)) -> new_esEs0(yv302, yv4002, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), gc, app(app(ty_Either, ge), gf), fa) -> new_esEs0(yv301, yv4001, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_Either, fb), fc), eh, fa) -> new_esEs0(yv300, yv4000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_listToMaybe1(yv10, yv1110, yv65, yv1111, yv66, ba, bb) -> new_listToMaybe2(yv65, new_esEs4(Left(yv10), yv1110, ba, bb), yv10, yv1111, yv66, ba, bb) new_listToMaybe2(yv39, False, yv10, :(yv1110, yv1111), yv40, ba, bb) -> new_listToMaybe1(yv10, yv1110, new_primPlusNat0(yv40, Zero), yv1111, new_primPlusNat0(yv40, Zero), ba, bb) The TRS R consists of the following rules: new_esEs18(yv300, yv4000, app(app(app(ty_@3, de), df), dg)) -> new_esEs8(yv300, yv4000, de, df, dg) new_esEs25(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs22(yv301, yv4001, ty_Char) -> new_esEs15(yv301, yv4001) new_esEs20(yv302, yv4002, ty_Ordering) -> new_esEs12(yv302, yv4002) new_esEs4(Left(yv300), Right(yv4000), bad, hb) -> False new_esEs4(Right(yv300), Left(yv4000), bad, hb) -> False new_esEs25(yv300, yv4000, app(ty_[], bff)) -> new_esEs13(yv300, yv4000, bff) new_esEs6(False, True) -> False new_esEs6(True, False) -> False new_esEs5(Just(yv300), Just(yv4000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs8(yv300, yv4000, bg, bh, ca) new_esEs22(yv301, yv4001, ty_Double) -> new_esEs10(yv301, yv4001) new_esEs5(Just(yv300), Just(yv4000), ty_Char) -> new_esEs15(yv300, yv4000) new_esEs18(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs20(yv302, yv4002, ty_Bool) -> new_esEs6(yv302, yv4002) new_esEs5(Just(yv300), Just(yv4000), ty_Double) -> new_esEs10(yv300, yv4000) new_esEs4(Right(yv300), Right(yv4000), bad, app(ty_Ratio, bbc)) -> new_esEs11(yv300, yv4000, bbc) new_esEs22(yv301, yv4001, app(app(ty_Either, bdd), bde)) -> new_esEs4(yv301, yv4001, bdd, bde) new_esEs23(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs19(yv301, yv4001, app(ty_Maybe, ed)) -> new_esEs5(yv301, yv4001, ed) new_esEs18(yv300, yv4000, ty_Char) -> new_esEs15(yv300, yv4000) new_esEs12(GT, GT) -> True new_asAs(True, yv63) -> yv63 new_esEs4(Left(yv300), Left(yv4000), app(ty_Ratio, hh), hb) -> new_esEs11(yv300, yv4000, hh) new_esEs21(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_esEs19(yv301, yv4001, app(app(ty_@2, fd), ff)) -> new_esEs17(yv301, yv4001, fd, ff) new_esEs21(yv300, yv4000, app(ty_[], bch)) -> new_esEs13(yv300, yv4000, bch) new_esEs18(yv300, yv4000, ty_@0) -> new_esEs14(yv300, yv4000) new_primEqInt(Pos(Succ(yv3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yv40000))) -> False new_esEs5(Just(yv300), Just(yv4000), ty_Float) -> new_esEs9(yv300, yv4000) new_esEs20(yv302, yv4002, app(ty_Maybe, fg)) -> new_esEs5(yv302, yv4002, fg) new_esEs4(Left(yv300), Left(yv4000), app(app(ty_Either, hc), hd), hb) -> new_esEs4(yv300, yv4000, hc, hd) new_primEqNat0(Succ(yv3000), Succ(yv40000)) -> new_primEqNat0(yv3000, yv40000) new_esEs25(yv300, yv4000, app(app(ty_@2, bfg), bfh)) -> new_esEs17(yv300, yv4000, bfg, bfh) new_esEs18(yv300, yv4000, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs22(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) new_esEs5(Just(yv300), Just(yv4000), ty_@0) -> new_esEs14(yv300, yv4000) new_esEs19(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) new_esEs12(EQ, EQ) -> True new_esEs20(yv302, yv4002, app(app(ty_Either, fh), ga)) -> new_esEs4(yv302, yv4002, fh, ga) new_esEs19(yv301, yv4001, app(app(ty_Either, ee), ef)) -> new_esEs4(yv301, yv4001, ee, ef) new_esEs23(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs21(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs4(Right(yv300), Right(yv4000), bad, app(app(ty_@2, bbe), bbf)) -> new_esEs17(yv300, yv4000, bbe, bbf) new_esEs25(yv300, yv4000, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs21(yv300, yv4000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs8(yv300, yv4000, bcd, bce, bcf) new_esEs18(yv300, yv4000, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs9(Float(yv300, yv301), Float(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) new_esEs4(Left(yv300), Left(yv4000), ty_Int, hb) -> new_esEs7(yv300, yv4000) new_esEs20(yv302, yv4002, ty_Integer) -> new_esEs16(yv302, yv4002) new_esEs12(LT, LT) -> True new_esEs20(yv302, yv4002, ty_Float) -> new_esEs9(yv302, yv4002) new_esEs21(yv300, yv4000, ty_@0) -> new_esEs14(yv300, yv4000) new_esEs25(yv300, yv4000, app(app(ty_Either, beh), bfa)) -> new_esEs4(yv300, yv4000, beh, bfa) new_primEqNat0(Succ(yv3000), Zero) -> False new_primEqNat0(Zero, Succ(yv40000)) -> False new_esEs14(@0, @0) -> True new_esEs13([], [], bef) -> True new_esEs10(Double(yv300, yv301), Double(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) new_esEs11(:%(yv300, yv301), :%(yv4000, yv4001), bee) -> new_asAs(new_esEs23(yv300, yv4000, bee), new_esEs24(yv301, yv4001, bee)) new_esEs19(yv301, yv4001, ty_Bool) -> new_esEs6(yv301, yv4001) new_esEs21(yv300, yv4000, app(ty_Ratio, bcg)) -> new_esEs11(yv300, yv4000, bcg) new_esEs25(yv300, yv4000, app(ty_Maybe, beg)) -> new_esEs5(yv300, yv4000, beg) new_esEs4(Right(yv300), Right(yv4000), bad, app(app(ty_Either, baf), bag)) -> new_esEs4(yv300, yv4000, baf, bag) new_esEs22(yv301, yv4001, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs8(yv301, yv4001, bdf, bdg, bdh) new_esEs18(yv300, yv4000, app(ty_Maybe, db)) -> new_esEs5(yv300, yv4000, db) new_esEs20(yv302, yv4002, ty_Char) -> new_esEs15(yv302, yv4002) new_primEqInt(Neg(Succ(yv3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yv40000))) -> False new_esEs22(yv301, yv4001, ty_Ordering) -> new_esEs12(yv301, yv4001) new_primEqInt(Pos(Succ(yv3000)), Pos(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) new_esEs20(yv302, yv4002, ty_@0) -> new_esEs14(yv302, yv4002) new_esEs4(Right(yv300), Right(yv4000), bad, app(ty_[], bbd)) -> new_esEs13(yv300, yv4000, bbd) new_esEs4(Right(yv300), Right(yv4000), bad, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs8(yv300, yv4000, bah, bba, bbb) new_esEs4(Left(yv300), Left(yv4000), ty_Double, hb) -> new_esEs10(yv300, yv4000) new_esEs7(yv30, yv400) -> new_primEqInt(yv30, yv400) new_esEs5(Just(yv300), Just(yv4000), ty_Int) -> new_esEs7(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(ty_Ratio, cb)) -> new_esEs11(yv300, yv4000, cb) new_sr(Pos(yv3000), Neg(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) new_sr(Neg(yv3000), Pos(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) new_esEs22(yv301, yv4001, app(ty_Ratio, bea)) -> new_esEs11(yv301, yv4001, bea) new_primPlusNat1(Succ(yv6400), Succ(yv4001000)) -> Succ(Succ(new_primPlusNat1(yv6400, yv4001000))) new_esEs5(Just(yv300), Just(yv4000), ty_Ordering) -> new_esEs12(yv300, yv4000) new_primEqInt(Pos(Succ(yv3000)), Neg(yv4000)) -> False new_primEqInt(Neg(Succ(yv3000)), Pos(yv4000)) -> False new_esEs4(Left(yv300), Left(yv4000), app(ty_[], baa), hb) -> new_esEs13(yv300, yv4000, baa) new_esEs22(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs19(yv301, yv4001, ty_Char) -> new_esEs15(yv301, yv4001) new_esEs21(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs18(yv300, yv4000, app(app(ty_Either, dc), dd)) -> new_esEs4(yv300, yv4000, dc, dd) new_esEs25(yv300, yv4000, ty_Char) -> new_esEs15(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(ty_[], cc)) -> new_esEs13(yv300, yv4000, cc) new_esEs19(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) new_esEs21(yv300, yv4000, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs25(yv300, yv4000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs8(yv300, yv4000, bfb, bfc, bfd) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(app(ty_@2, cd), ce)) -> new_esEs17(yv300, yv4000, cd, ce) new_sr(Neg(yv3000), Neg(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) new_esEs19(yv301, yv4001, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs8(yv301, yv4001, eg, eh, fa) new_esEs18(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs21(yv300, yv4000, app(app(ty_Either, bcb), bcc)) -> new_esEs4(yv300, yv4000, bcb, bcc) new_esEs8(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), cf, cg, da) -> new_asAs(new_esEs18(yv300, yv4000, cf), new_asAs(new_esEs19(yv301, yv4001, cg), new_esEs20(yv302, yv4002, da))) new_esEs19(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) new_esEs19(yv301, yv4001, app(ty_Ratio, fb)) -> new_esEs11(yv301, yv4001, fb) new_esEs4(Right(yv300), Right(yv4000), bad, app(ty_Maybe, bae)) -> new_esEs5(yv300, yv4000, bae) new_esEs5(Just(yv300), Just(yv4000), ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs4(Left(yv300), Left(yv4000), app(app(app(ty_@3, he), hf), hg), hb) -> new_esEs8(yv300, yv4000, he, hf, hg) new_esEs25(yv300, yv4000, ty_@0) -> new_esEs14(yv300, yv4000) new_primEqInt(Pos(Zero), Neg(Succ(yv40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yv40000))) -> False new_esEs18(yv300, yv4000, app(app(ty_@2, eb), ec)) -> new_esEs17(yv300, yv4000, eb, ec) new_esEs19(yv301, yv4001, ty_@0) -> new_esEs14(yv301, yv4001) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yv300, yv4000, ty_Ordering) -> new_esEs12(yv300, yv4000) new_esEs16(Integer(yv300), Integer(yv4000)) -> new_primEqInt(yv300, yv4000) new_esEs4(Left(yv300), Left(yv4000), ty_Char, hb) -> new_esEs15(yv300, yv4000) new_esEs22(yv301, yv4001, app(ty_[], beb)) -> new_esEs13(yv301, yv4001, beb) new_esEs6(True, True) -> True new_esEs21(yv300, yv4000, app(ty_Maybe, bca)) -> new_esEs5(yv300, yv4000, bca) new_esEs21(yv300, yv4000, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs5(Nothing, Nothing, bc) -> True new_esEs20(yv302, yv4002, ty_Int) -> new_esEs7(yv302, yv4002) new_esEs4(Left(yv300), Left(yv4000), ty_Ordering, hb) -> new_esEs12(yv300, yv4000) new_primEqInt(Neg(Succ(yv3000)), Neg(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) new_esEs5(Nothing, Just(yv4000), bc) -> False new_esEs5(Just(yv300), Nothing, bc) -> False new_esEs20(yv302, yv4002, app(ty_Ratio, ge)) -> new_esEs11(yv302, yv4002, ge) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yv640), yv400100) -> Succ(Succ(new_primPlusNat1(yv640, yv400100))) new_esEs6(False, False) -> True new_esEs22(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) new_esEs4(Left(yv300), Left(yv4000), app(app(ty_@2, bab), bac), hb) -> new_esEs17(yv300, yv4000, bab, bac) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs13(:(yv300, yv301), [], bef) -> False new_esEs13([], :(yv4000, yv4001), bef) -> False new_esEs4(Left(yv300), Left(yv4000), app(ty_Maybe, ha), hb) -> new_esEs5(yv300, yv4000, ha) new_esEs22(yv301, yv4001, app(app(ty_@2, bec), bed)) -> new_esEs17(yv301, yv4001, bec, bed) new_esEs4(Left(yv300), Left(yv4000), ty_Bool, hb) -> new_esEs6(yv300, yv4000) new_esEs18(yv300, yv4000, app(ty_[], ea)) -> new_esEs13(yv300, yv4000, ea) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Int) -> new_esEs7(yv300, yv4000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs4(Right(yv300), Right(yv4000), bad, ty_Char) -> new_esEs15(yv300, yv4000) new_primMulNat0(Succ(yv30000), Zero) -> Zero new_primMulNat0(Zero, Succ(yv400100)) -> Zero new_sr(Pos(yv3000), Pos(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) new_primPlusNat0(Zero, yv400100) -> Succ(yv400100) new_esEs25(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs13(:(yv300, yv301), :(yv4000, yv4001), bef) -> new_asAs(new_esEs25(yv300, yv4000, bef), new_esEs13(yv301, yv4001, bef)) new_esEs21(yv300, yv4000, ty_Char) -> new_esEs15(yv300, yv4000) new_esEs20(yv302, yv4002, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs8(yv302, yv4002, gb, gc, gd) new_esEs22(yv301, yv4001, ty_@0) -> new_esEs14(yv301, yv4001) new_esEs25(yv300, yv4000, ty_Ordering) -> new_esEs12(yv300, yv4000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs4(Left(yv300), Left(yv4000), ty_@0, hb) -> new_esEs14(yv300, yv4000) new_primMulNat0(Succ(yv30000), Succ(yv400100)) -> new_primPlusNat0(new_primMulNat0(yv30000, Succ(yv400100)), yv400100) new_esEs18(yv300, yv4000, ty_Ordering) -> new_esEs12(yv300, yv4000) new_esEs19(yv301, yv4001, ty_Ordering) -> new_esEs12(yv301, yv4001) new_esEs24(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Ordering) -> new_esEs12(yv300, yv4000) new_primPlusNat1(Succ(yv6400), Zero) -> Succ(yv6400) new_primPlusNat1(Zero, Succ(yv4001000)) -> Succ(yv4001000) new_esEs20(yv302, yv4002, app(app(ty_@2, gg), gh)) -> new_esEs17(yv302, yv4002, gg, gh) new_esEs4(Left(yv300), Left(yv4000), ty_Float, hb) -> new_esEs9(yv300, yv4000) new_esEs4(Left(yv300), Left(yv4000), ty_Integer, hb) -> new_esEs16(yv300, yv4000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs17(@2(yv300, yv301), @2(yv4000, yv4001), bbg, bbh) -> new_asAs(new_esEs21(yv300, yv4000, bbg), new_esEs22(yv301, yv4001, bbh)) new_esEs18(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs21(yv300, yv4000, app(app(ty_@2, bda), bdb)) -> new_esEs17(yv300, yv4000, bda, bdb) new_esEs25(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_esEs18(yv300, yv4000, app(ty_Ratio, dh)) -> new_esEs11(yv300, yv4000, dh) new_primEqNat0(Zero, Zero) -> True new_esEs25(yv300, yv4000, app(ty_Ratio, bfe)) -> new_esEs11(yv300, yv4000, bfe) new_esEs15(Char(yv300), Char(yv4000)) -> new_primEqNat0(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(app(ty_Either, be), bf)) -> new_esEs4(yv300, yv4000, be, bf) new_esEs25(yv300, yv4000, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs19(yv301, yv4001, ty_Double) -> new_esEs10(yv301, yv4001) new_esEs4(Right(yv300), Right(yv4000), bad, ty_@0) -> new_esEs14(yv300, yv4000) new_esEs19(yv301, yv4001, app(ty_[], fc)) -> new_esEs13(yv301, yv4001, fc) new_asAs(False, yv63) -> False new_esEs22(yv301, yv4001, app(ty_Maybe, bdc)) -> new_esEs5(yv301, yv4001, bdc) new_esEs22(yv301, yv4001, ty_Bool) -> new_esEs6(yv301, yv4001) new_esEs24(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(ty_Maybe, bd)) -> new_esEs5(yv300, yv4000, bd) new_esEs20(yv302, yv4002, app(ty_[], gf)) -> new_esEs13(yv302, yv4002, gf) new_esEs20(yv302, yv4002, ty_Double) -> new_esEs10(yv302, yv4002) new_esEs5(Just(yv300), Just(yv4000), ty_Bool) -> new_esEs6(yv300, yv4000) The set Q consists of the following terms: new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Bool) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs12(EQ, EQ) new_esEs10(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, ty_Char) new_esEs22(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs20(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs19(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs18(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs18(x0, x1, ty_Ordering) new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs22(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs9(Float(x0, x1), Float(x2, x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Nothing, x1) new_esEs19(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs18(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_esEs6(False, True) new_esEs6(True, False) new_asAs(False, x0) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_sr(Pos(x0), Pos(x1)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs6(False, False) new_primEqNat0(Succ(x0), Zero) new_esEs24(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Integer) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, LT) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Nothing, x0) new_primEqNat0(Zero, Succ(x0)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs14(@0, @0) new_esEs18(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs22(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs21(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_@0) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primMulNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primEqNat0(Zero, Zero) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(True, True) new_sr(Neg(x0), Neg(x1)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Float) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs21(x0, x1, ty_Integer) new_esEs15(Char(x0), Char(x1)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs13([], [], x0) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(Just(x0), Just(x1), ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs13([], :(x0, x1), x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(Pos(x0), Neg(x1)) new_sr(Neg(x0), Pos(x1)) new_esEs21(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Bool) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs13(:(x0, x1), [], x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs25(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Char) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(Integer(x0), Integer(x1)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) 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_listToMaybe2(yv39, False, yv10, :(yv1110, yv1111), yv40, ba, bb) -> new_listToMaybe1(yv10, yv1110, new_primPlusNat0(yv40, Zero), yv1111, new_primPlusNat0(yv40, Zero), ba, bb) The graph contains the following edges 3 >= 1, 4 > 2, 4 > 4, 6 >= 6, 7 >= 7 *new_listToMaybe1(yv10, yv1110, yv65, yv1111, yv66, ba, bb) -> new_listToMaybe2(yv65, new_esEs4(Left(yv10), yv1110, ba, bb), yv10, yv1111, yv66, ba, bb) The graph contains the following edges 3 >= 1, 1 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_listToMaybe0(yv17, yv1810, yv67, yv1811, yv68, ba, bb) -> new_listToMaybe(yv67, new_esEs4(Right(yv17), yv1810, ba, bb), yv17, yv1811, yv68, ba, bb) new_listToMaybe(yv41, False, yv17, :(yv1810, yv1811), yv42, ba, bb) -> new_listToMaybe0(yv17, yv1810, new_primPlusNat0(yv42, Zero), yv1811, new_primPlusNat0(yv42, Zero), ba, bb) The TRS R consists of the following rules: new_esEs18(yv300, yv4000, app(app(app(ty_@3, de), df), dg)) -> new_esEs8(yv300, yv4000, de, df, dg) new_esEs25(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs22(yv301, yv4001, ty_Char) -> new_esEs15(yv301, yv4001) new_esEs20(yv302, yv4002, ty_Ordering) -> new_esEs12(yv302, yv4002) new_esEs4(Left(yv300), Right(yv4000), bad, hb) -> False new_esEs4(Right(yv300), Left(yv4000), bad, hb) -> False new_esEs25(yv300, yv4000, app(ty_[], bff)) -> new_esEs13(yv300, yv4000, bff) new_esEs6(False, True) -> False new_esEs6(True, False) -> False new_esEs5(Just(yv300), Just(yv4000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs8(yv300, yv4000, bg, bh, ca) new_esEs22(yv301, yv4001, ty_Double) -> new_esEs10(yv301, yv4001) new_esEs5(Just(yv300), Just(yv4000), ty_Char) -> new_esEs15(yv300, yv4000) new_esEs18(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs20(yv302, yv4002, ty_Bool) -> new_esEs6(yv302, yv4002) new_esEs5(Just(yv300), Just(yv4000), ty_Double) -> new_esEs10(yv300, yv4000) new_esEs4(Right(yv300), Right(yv4000), bad, app(ty_Ratio, bbc)) -> new_esEs11(yv300, yv4000, bbc) new_esEs22(yv301, yv4001, app(app(ty_Either, bdd), bde)) -> new_esEs4(yv301, yv4001, bdd, bde) new_esEs23(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs19(yv301, yv4001, app(ty_Maybe, ed)) -> new_esEs5(yv301, yv4001, ed) new_esEs18(yv300, yv4000, ty_Char) -> new_esEs15(yv300, yv4000) new_esEs12(GT, GT) -> True new_asAs(True, yv63) -> yv63 new_esEs4(Left(yv300), Left(yv4000), app(ty_Ratio, hh), hb) -> new_esEs11(yv300, yv4000, hh) new_esEs21(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_esEs19(yv301, yv4001, app(app(ty_@2, fd), ff)) -> new_esEs17(yv301, yv4001, fd, ff) new_esEs21(yv300, yv4000, app(ty_[], bch)) -> new_esEs13(yv300, yv4000, bch) new_esEs18(yv300, yv4000, ty_@0) -> new_esEs14(yv300, yv4000) new_primEqInt(Pos(Succ(yv3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yv40000))) -> False new_esEs5(Just(yv300), Just(yv4000), ty_Float) -> new_esEs9(yv300, yv4000) new_esEs20(yv302, yv4002, app(ty_Maybe, fg)) -> new_esEs5(yv302, yv4002, fg) new_esEs4(Left(yv300), Left(yv4000), app(app(ty_Either, hc), hd), hb) -> new_esEs4(yv300, yv4000, hc, hd) new_primEqNat0(Succ(yv3000), Succ(yv40000)) -> new_primEqNat0(yv3000, yv40000) new_esEs25(yv300, yv4000, app(app(ty_@2, bfg), bfh)) -> new_esEs17(yv300, yv4000, bfg, bfh) new_esEs18(yv300, yv4000, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs22(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) new_esEs5(Just(yv300), Just(yv4000), ty_@0) -> new_esEs14(yv300, yv4000) new_esEs19(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) new_esEs12(EQ, EQ) -> True new_esEs20(yv302, yv4002, app(app(ty_Either, fh), ga)) -> new_esEs4(yv302, yv4002, fh, ga) new_esEs19(yv301, yv4001, app(app(ty_Either, ee), ef)) -> new_esEs4(yv301, yv4001, ee, ef) new_esEs23(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs21(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs4(Right(yv300), Right(yv4000), bad, app(app(ty_@2, bbe), bbf)) -> new_esEs17(yv300, yv4000, bbe, bbf) new_esEs25(yv300, yv4000, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs21(yv300, yv4000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs8(yv300, yv4000, bcd, bce, bcf) new_esEs18(yv300, yv4000, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs9(Float(yv300, yv301), Float(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) new_esEs4(Left(yv300), Left(yv4000), ty_Int, hb) -> new_esEs7(yv300, yv4000) new_esEs20(yv302, yv4002, ty_Integer) -> new_esEs16(yv302, yv4002) new_esEs12(LT, LT) -> True new_esEs20(yv302, yv4002, ty_Float) -> new_esEs9(yv302, yv4002) new_esEs21(yv300, yv4000, ty_@0) -> new_esEs14(yv300, yv4000) new_esEs25(yv300, yv4000, app(app(ty_Either, beh), bfa)) -> new_esEs4(yv300, yv4000, beh, bfa) new_primEqNat0(Succ(yv3000), Zero) -> False new_primEqNat0(Zero, Succ(yv40000)) -> False new_esEs14(@0, @0) -> True new_esEs13([], [], bef) -> True new_esEs10(Double(yv300, yv301), Double(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) new_esEs11(:%(yv300, yv301), :%(yv4000, yv4001), bee) -> new_asAs(new_esEs23(yv300, yv4000, bee), new_esEs24(yv301, yv4001, bee)) new_esEs19(yv301, yv4001, ty_Bool) -> new_esEs6(yv301, yv4001) new_esEs21(yv300, yv4000, app(ty_Ratio, bcg)) -> new_esEs11(yv300, yv4000, bcg) new_esEs25(yv300, yv4000, app(ty_Maybe, beg)) -> new_esEs5(yv300, yv4000, beg) new_esEs4(Right(yv300), Right(yv4000), bad, app(app(ty_Either, baf), bag)) -> new_esEs4(yv300, yv4000, baf, bag) new_esEs22(yv301, yv4001, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs8(yv301, yv4001, bdf, bdg, bdh) new_esEs18(yv300, yv4000, app(ty_Maybe, db)) -> new_esEs5(yv300, yv4000, db) new_esEs20(yv302, yv4002, ty_Char) -> new_esEs15(yv302, yv4002) new_primEqInt(Neg(Succ(yv3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yv40000))) -> False new_esEs22(yv301, yv4001, ty_Ordering) -> new_esEs12(yv301, yv4001) new_primEqInt(Pos(Succ(yv3000)), Pos(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) new_esEs20(yv302, yv4002, ty_@0) -> new_esEs14(yv302, yv4002) new_esEs4(Right(yv300), Right(yv4000), bad, app(ty_[], bbd)) -> new_esEs13(yv300, yv4000, bbd) new_esEs4(Right(yv300), Right(yv4000), bad, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs8(yv300, yv4000, bah, bba, bbb) new_esEs4(Left(yv300), Left(yv4000), ty_Double, hb) -> new_esEs10(yv300, yv4000) new_esEs7(yv30, yv400) -> new_primEqInt(yv30, yv400) new_esEs5(Just(yv300), Just(yv4000), ty_Int) -> new_esEs7(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(ty_Ratio, cb)) -> new_esEs11(yv300, yv4000, cb) new_sr(Pos(yv3000), Neg(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) new_sr(Neg(yv3000), Pos(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) new_esEs22(yv301, yv4001, app(ty_Ratio, bea)) -> new_esEs11(yv301, yv4001, bea) new_primPlusNat1(Succ(yv6400), Succ(yv4001000)) -> Succ(Succ(new_primPlusNat1(yv6400, yv4001000))) new_esEs5(Just(yv300), Just(yv4000), ty_Ordering) -> new_esEs12(yv300, yv4000) new_primEqInt(Pos(Succ(yv3000)), Neg(yv4000)) -> False new_primEqInt(Neg(Succ(yv3000)), Pos(yv4000)) -> False new_esEs4(Left(yv300), Left(yv4000), app(ty_[], baa), hb) -> new_esEs13(yv300, yv4000, baa) new_esEs22(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs19(yv301, yv4001, ty_Char) -> new_esEs15(yv301, yv4001) new_esEs21(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs18(yv300, yv4000, app(app(ty_Either, dc), dd)) -> new_esEs4(yv300, yv4000, dc, dd) new_esEs25(yv300, yv4000, ty_Char) -> new_esEs15(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(ty_[], cc)) -> new_esEs13(yv300, yv4000, cc) new_esEs19(yv301, yv4001, ty_Float) -> new_esEs9(yv301, yv4001) new_esEs21(yv300, yv4000, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs25(yv300, yv4000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs8(yv300, yv4000, bfb, bfc, bfd) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(app(ty_@2, cd), ce)) -> new_esEs17(yv300, yv4000, cd, ce) new_sr(Neg(yv3000), Neg(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) new_esEs19(yv301, yv4001, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs8(yv301, yv4001, eg, eh, fa) new_esEs18(yv300, yv4000, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs21(yv300, yv4000, app(app(ty_Either, bcb), bcc)) -> new_esEs4(yv300, yv4000, bcb, bcc) new_esEs8(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), cf, cg, da) -> new_asAs(new_esEs18(yv300, yv4000, cf), new_asAs(new_esEs19(yv301, yv4001, cg), new_esEs20(yv302, yv4002, da))) new_esEs19(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) new_esEs19(yv301, yv4001, app(ty_Ratio, fb)) -> new_esEs11(yv301, yv4001, fb) new_esEs4(Right(yv300), Right(yv4000), bad, app(ty_Maybe, bae)) -> new_esEs5(yv300, yv4000, bae) new_esEs5(Just(yv300), Just(yv4000), ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs4(Left(yv300), Left(yv4000), app(app(app(ty_@3, he), hf), hg), hb) -> new_esEs8(yv300, yv4000, he, hf, hg) new_esEs25(yv300, yv4000, ty_@0) -> new_esEs14(yv300, yv4000) new_primEqInt(Pos(Zero), Neg(Succ(yv40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yv40000))) -> False new_esEs18(yv300, yv4000, app(app(ty_@2, eb), ec)) -> new_esEs17(yv300, yv4000, eb, ec) new_esEs19(yv301, yv4001, ty_@0) -> new_esEs14(yv301, yv4001) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs21(yv300, yv4000, ty_Ordering) -> new_esEs12(yv300, yv4000) new_esEs16(Integer(yv300), Integer(yv4000)) -> new_primEqInt(yv300, yv4000) new_esEs4(Left(yv300), Left(yv4000), ty_Char, hb) -> new_esEs15(yv300, yv4000) new_esEs22(yv301, yv4001, app(ty_[], beb)) -> new_esEs13(yv301, yv4001, beb) new_esEs6(True, True) -> True new_esEs21(yv300, yv4000, app(ty_Maybe, bca)) -> new_esEs5(yv300, yv4000, bca) new_esEs21(yv300, yv4000, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs5(Nothing, Nothing, bc) -> True new_esEs20(yv302, yv4002, ty_Int) -> new_esEs7(yv302, yv4002) new_esEs4(Left(yv300), Left(yv4000), ty_Ordering, hb) -> new_esEs12(yv300, yv4000) new_primEqInt(Neg(Succ(yv3000)), Neg(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) new_esEs5(Nothing, Just(yv4000), bc) -> False new_esEs5(Just(yv300), Nothing, bc) -> False new_esEs20(yv302, yv4002, app(ty_Ratio, ge)) -> new_esEs11(yv302, yv4002, ge) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(yv640), yv400100) -> Succ(Succ(new_primPlusNat1(yv640, yv400100))) new_esEs6(False, False) -> True new_esEs22(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) new_esEs4(Left(yv300), Left(yv4000), app(app(ty_@2, bab), bac), hb) -> new_esEs17(yv300, yv4000, bab, bac) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Bool) -> new_esEs6(yv300, yv4000) new_esEs13(:(yv300, yv301), [], bef) -> False new_esEs13([], :(yv4000, yv4001), bef) -> False new_esEs4(Left(yv300), Left(yv4000), app(ty_Maybe, ha), hb) -> new_esEs5(yv300, yv4000, ha) new_esEs22(yv301, yv4001, app(app(ty_@2, bec), bed)) -> new_esEs17(yv301, yv4001, bec, bed) new_esEs4(Left(yv300), Left(yv4000), ty_Bool, hb) -> new_esEs6(yv300, yv4000) new_esEs18(yv300, yv4000, app(ty_[], ea)) -> new_esEs13(yv300, yv4000, ea) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Int) -> new_esEs7(yv300, yv4000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs4(Right(yv300), Right(yv4000), bad, ty_Char) -> new_esEs15(yv300, yv4000) new_primMulNat0(Succ(yv30000), Zero) -> Zero new_primMulNat0(Zero, Succ(yv400100)) -> Zero new_sr(Pos(yv3000), Pos(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) new_primPlusNat0(Zero, yv400100) -> Succ(yv400100) new_esEs25(yv300, yv4000, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs13(:(yv300, yv301), :(yv4000, yv4001), bef) -> new_asAs(new_esEs25(yv300, yv4000, bef), new_esEs13(yv301, yv4001, bef)) new_esEs21(yv300, yv4000, ty_Char) -> new_esEs15(yv300, yv4000) new_esEs20(yv302, yv4002, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs8(yv302, yv4002, gb, gc, gd) new_esEs22(yv301, yv4001, ty_@0) -> new_esEs14(yv301, yv4001) new_esEs25(yv300, yv4000, ty_Ordering) -> new_esEs12(yv300, yv4000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs4(Left(yv300), Left(yv4000), ty_@0, hb) -> new_esEs14(yv300, yv4000) new_primMulNat0(Succ(yv30000), Succ(yv400100)) -> new_primPlusNat0(new_primMulNat0(yv30000, Succ(yv400100)), yv400100) new_esEs18(yv300, yv4000, ty_Ordering) -> new_esEs12(yv300, yv4000) new_esEs19(yv301, yv4001, ty_Ordering) -> new_esEs12(yv301, yv4001) new_esEs24(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Ordering) -> new_esEs12(yv300, yv4000) new_primPlusNat1(Succ(yv6400), Zero) -> Succ(yv6400) new_primPlusNat1(Zero, Succ(yv4001000)) -> Succ(yv4001000) new_esEs20(yv302, yv4002, app(app(ty_@2, gg), gh)) -> new_esEs17(yv302, yv4002, gg, gh) new_esEs4(Left(yv300), Left(yv4000), ty_Float, hb) -> new_esEs9(yv300, yv4000) new_esEs4(Left(yv300), Left(yv4000), ty_Integer, hb) -> new_esEs16(yv300, yv4000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs17(@2(yv300, yv301), @2(yv4000, yv4001), bbg, bbh) -> new_asAs(new_esEs21(yv300, yv4000, bbg), new_esEs22(yv301, yv4001, bbh)) new_esEs18(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Float) -> new_esEs9(yv300, yv4000) new_esEs21(yv300, yv4000, app(app(ty_@2, bda), bdb)) -> new_esEs17(yv300, yv4000, bda, bdb) new_esEs25(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) new_esEs18(yv300, yv4000, app(ty_Ratio, dh)) -> new_esEs11(yv300, yv4000, dh) new_primEqNat0(Zero, Zero) -> True new_esEs25(yv300, yv4000, app(ty_Ratio, bfe)) -> new_esEs11(yv300, yv4000, bfe) new_esEs15(Char(yv300), Char(yv4000)) -> new_primEqNat0(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(app(ty_Either, be), bf)) -> new_esEs4(yv300, yv4000, be, bf) new_esEs25(yv300, yv4000, ty_Double) -> new_esEs10(yv300, yv4000) new_esEs19(yv301, yv4001, ty_Double) -> new_esEs10(yv301, yv4001) new_esEs4(Right(yv300), Right(yv4000), bad, ty_@0) -> new_esEs14(yv300, yv4000) new_esEs19(yv301, yv4001, app(ty_[], fc)) -> new_esEs13(yv301, yv4001, fc) new_asAs(False, yv63) -> False new_esEs22(yv301, yv4001, app(ty_Maybe, bdc)) -> new_esEs5(yv301, yv4001, bdc) new_esEs22(yv301, yv4001, ty_Bool) -> new_esEs6(yv301, yv4001) new_esEs24(yv301, yv4001, ty_Integer) -> new_esEs16(yv301, yv4001) new_esEs4(Right(yv300), Right(yv4000), bad, ty_Integer) -> new_esEs16(yv300, yv4000) new_esEs5(Just(yv300), Just(yv4000), app(ty_Maybe, bd)) -> new_esEs5(yv300, yv4000, bd) new_esEs20(yv302, yv4002, app(ty_[], gf)) -> new_esEs13(yv302, yv4002, gf) new_esEs20(yv302, yv4002, ty_Double) -> new_esEs10(yv302, yv4002) new_esEs5(Just(yv300), Just(yv4000), ty_Bool) -> new_esEs6(yv300, yv4000) The set Q consists of the following terms: new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Bool) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs12(EQ, EQ) new_esEs10(Double(x0, x1), Double(x2, x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, ty_Char) new_esEs22(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs20(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs19(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs18(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, ty_Double) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primPlusNat0(Zero, x0) new_esEs19(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs18(x0, x1, ty_Ordering) new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs22(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs9(Float(x0, x1), Float(x2, x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Nothing, x1) new_esEs19(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs18(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_esEs6(False, True) new_esEs6(True, False) new_asAs(False, x0) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_sr(Pos(x0), Pos(x1)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs6(False, False) new_primEqNat0(Succ(x0), Zero) new_esEs24(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Integer) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, LT) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Nothing, Nothing, x0) new_primEqNat0(Zero, Succ(x0)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_esEs14(@0, @0) new_esEs18(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs22(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs21(x0, x1, ty_Float) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_@0) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs19(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primMulNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primEqNat0(Zero, Zero) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(True, True) new_sr(Neg(x0), Neg(x1)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Float) new_asAs(True, x0) new_esEs18(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs21(x0, x1, ty_Integer) new_esEs15(Char(x0), Char(x1)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs13([], [], x0) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(Just(x0), Just(x1), ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs13([], :(x0, x1), x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(Pos(x0), Neg(x1)) new_sr(Neg(x0), Pos(x1)) new_esEs21(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(:(x0, x1), :(x2, x3), x4) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Bool) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs13(:(x0, x1), [], x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs25(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Ordering) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Char) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(Integer(x0), Integer(x1)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) 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_listToMaybe(yv41, False, yv17, :(yv1810, yv1811), yv42, ba, bb) -> new_listToMaybe0(yv17, yv1810, new_primPlusNat0(yv42, Zero), yv1811, new_primPlusNat0(yv42, Zero), ba, bb) The graph contains the following edges 3 >= 1, 4 > 2, 4 > 4, 6 >= 6, 7 >= 7 *new_listToMaybe0(yv17, yv1810, yv67, yv1811, yv68, ba, bb) -> new_listToMaybe(yv67, new_esEs4(Right(yv17), yv1810, ba, bb), yv17, yv1811, yv68, ba, bb) The graph contains the following edges 3 >= 1, 1 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(yv30000), Succ(yv400100)) -> new_primMulNat(yv30000, Succ(yv400100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) 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(yv30000), Succ(yv400100)) -> new_primMulNat(yv30000, Succ(yv400100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yv6400), Succ(yv4001000)) -> new_primPlusNat(yv6400, yv4001000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) 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(yv6400), Succ(yv4001000)) -> new_primPlusNat(yv6400, yv4001000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(yv3000), Succ(yv40000)) -> new_primEqNat(yv3000, yv40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) 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(yv3000), Succ(yv40000)) -> new_primEqNat(yv3000, yv40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES