[Haskell-cafe] Possibly an endless loop in my benchmark code?

Michail Pevnev mpevnev at gmail.com
Sat Aug 18 22:42:01 UTC 2018


Hello everyone!

At the moment I'm working on a function that computes the rank of a
matrix. The testing I've performed doesn't seem to reveal anything
obviously wrong with what I have so far, so I've decided to see if it
can be improved performance-wise. I've sketched up a minimalist
criterion benchmark, and run it with profiling options on. But something
in the code causes the benchmark executable to loop endlessly. I've
stuck a few 'trace's into the code, and it seems that it just keeps on
producing and processing more and more matrices. I can kill the process
via 'Ctrl-C', and if I do, a profiling report appears. I have attached
one here, if you want to see it in full, but the gist is that 70% of
time the program does nothing, 10% it does something labeled 'SYSTEM',
and another 9% are garbage collection, with the rest of the functions
taking less than 2% each. This can go on for more than an hour. 

At first I've attributed this to the function in question being grossly
inefficient, but in the test executable 100 runs of this function on
100x100 matrices take only 18-20 seconds (well, it's actually a test to
see if the transpose of a matrix has the same rank as the original, so
there's some extra overhead here).

What could cause this behaviour? One weak point I can identify myself is
'NFData' (from deepseq package) instance for my matrices - I'm not 100%
certain it's correct and does what it should. I don't really think it's
the case, though - 'rnf' method of 'NFData' class would then feature
prominently in the profiling report, which it doesn't.

'NFData' instance, benchmarking code and the function in question are
below ('rank' lacks a type signature since it's actually a method on
'Matrix' class'):

```
---- the code that works ----

-- | A generic matrix. May or may not be square.
data GenericM e = GenericM Int Int (U.Vector e)
               deriving (Show, Eq)

instance NFData (GenericM e) where
    rnf (GenericM nrows ncols dat) = rnf (nrows, ncols, dat) 

rank tolerance m@(GenericM nr nc _) = D.trace "new matrix" $ go 0 0 $ V.map rawData $ rows m
    where go total col allRows
              | null allRows = total
              | col >= nc = total
              | col >= nr = total
              | abs (maxRow U.! col) < tolerance = go total (col + 1) allRows
              | otherwise = go (total + 1) (col + 1) nonZeroed
            where maxIndex = V.maxIndexBy (comparing (abs . (U.! col))) allRows
                  maxRow = allRows V.! maxIndex
                  allRows' = V.imap multiplyAndAdd allRows
                  nonZeroed = V.ifilter notZero allRows'
                  notZero i v = i /= maxIndex && not (isZeroV tolerance v)
                  multiplyAndAdd i v
                      | i == maxIndex = v
                      | otherwise = U.imap (multAddOne i) v
                  multAddOne i j y
                      | j < col = y
                      | otherwise = y - (maxRow U.! j) * coef i
                  coef i = (allRows V.! i U.! col) / maxRow U.! col

---- the code that benchmarks ----

genericDenseMatrixRank :: Benchmark
genericDenseMatrixRank = bgroup "linear/matrix/dense/generic/rank" [
    env (genRandomGenericMatrix 100) (b "small")
  --, env (genRandomGenericMatrix 1000) (b "medium")
  --, env (genRandomGenericMatrix 5000) (b "big")
  ]
  where b name m = bench name $ whnf (rank 1e-6) m

genRandomGenericMatrix :: Int -> IO (GenericM Double)
genRandomGenericMatrix size = do
    rng <- getStdGen
    let v = randoms rng :: [Double]
    return $ mkGenericMFromList size size v
```

Thanks in advance.

-- 
Michail.
-------------- next part --------------
	Sun Aug 19 01:36 2018 Time and Allocation Profiling Report  (Final)

	   numerics-bench +RTS -N -pa -RTS

	total time  =     4365.44 secs   (16174112 ticks @ 1000 us, 8 processors)
	total alloc = 2,149,889,374,608 bytes  (excludes profiling overheads)

COST CENTRE                                            MODULE                                         SRC                                                                                                               %time %alloc  ticks     bytes

IDLE                                                   IDLE                                           <built-in>                                                                                                         80.5    0.0  13021773         0
GC                                                     GC                                             <built-in>                                                                                                          5.1    0.0  817124      1112
SYSTEM                                                 SYSTEM                                         <built-in>                                                                                                          3.2    0.0  522282     73680
>>=                                                    Data.Vector.Fusion.Util                        Data/Vector/Fusion/Util.hs:36:3-18                                                                                  2.7   31.1  436180 669197990528
rank.go.multiplyAndAdd                                 Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:(108,23)-(110,63)                                                               2.2   17.0  356679 366194047032
rank.go.multAddOne                                     Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:(111,23)-(113,67)                                                               1.7   10.4  279726 223897359584
basicUnsafeIndexM                                      Data.Vector.Primitive                          Data/Vector/Primitive.hs:222:3-75                                                                                   1.3    4.6  203642 98221699792
basicUnsafeWrite                                       Data.Vector.Primitive.Mutable                  Data/Vector/Primitive/Mutable.hs:115:3-69                                                                           0.7    3.4  120136 72285052000
fmap                                                   Data.Vector.Fusion.Stream.Monadic              Data/Vector/Fusion/Stream/Monadic.hs:(133,3)-(135,20)                                                               0.6    5.5  100835 118039288704
isZeroV                                                Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:132:1-47                                                                        0.4    2.1  65849 46114592376
OVERHEAD_of                                            PROFILING                                      <built-in>                                                                                                          0.4   21.1  58622 453002766696
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:178:3-16                                                                                 0.3    0.7  53964 15672441040
basicUnsafeSlice                                       Data.Vector.Primitive.Mutable                  Data/Vector/Primitive/Mutable.hs:(85,3)-(86,25)                                                                     0.3    2.7  43950 58406318848
basicUnsafeIndexM                                      Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:279:504-562                                                                             0.1    0.0  19534         0
basicUnsafeSlice                                       Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:278:474-548                                                                             0.1    0.0   9112         0
rank.go.nonZeroed                                      Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:106:23-60                                                                       0.1    0.1   8880 3150054808
basicUnsafeWrite                                       Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:278:872-933                                                                             0.1    0.0   8108         0
rank.go.coef                                           Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:114:23-71                                                                       0.0    0.1   5787 2613812240
basicUnsafeFreeze                                      Data.Vector.Primitive                          Data/Vector/Primitive.hs:(208,3)-(209,51)                                                                           0.0    0.2   4744 4047940736
basicUnsafeNew                                         Data.Vector.Primitive.Mutable                  Data/Vector/Primitive/Mutable.hs:(96,3)-(102,37)                                                                    0.0    0.2   4540 3903371456
rank.go                                                Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:(97,15)-(114,71)                                                                0.0    0.0   4037 163424296
rank.go.notZero                                        Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:107:23-78                                                                       0.0    0.0   3729         0
rank                                                   Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:(96,5)-(114,71)                                                                 0.0    0.0   3648  58737304
rank.go.allRows'                                       Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:105:23-62                                                                       0.0    0.2   3299 4391099256
basicUnsafeFreeze                                      Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:279:232-305                                                                             0.0    0.1   3263 2313108992
basicUnsafeNew                                         Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:278:624-679                                                                             0.0    0.1   2996 2313108992
basicUnsafeIndexM                                      Data.Vector                                    Data/Vector.hs:277:3-62                                                                                             0.0    0.0   2346 890780160
basicUnsafeWrite                                       Data.Vector.Mutable                            Data/Vector/Mutable.hs:118:3-65                                                                                     0.0    0.1   2163 1489503440
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:193:136-205                                                                                 0.0    0.0   1974         0
rank.go.maxIndex                                       Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:103:23-83                                                                       0.0    0.0   1424 613322304
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:193:26-136                                                                                  0.0    0.0    958         0
basicUnsafeSlice                                       Data.Vector.Mutable                            Data/Vector/Mutable.hs:89:3-62                                                                                      0.0    0.1    925 1191602752
basicLength                                            Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:279:382-424                                                                             0.0    0.0    803         0
basicLength                                            Data.Vector.Primitive                          Data/Vector/Primitive.hs:216:3-32                                                                                   0.0    0.1    749 1468940592
basicUnsafeFreeze                                      Data.Vector                                    Data/Vector.hs:(263,3)-(264,47)                                                                                     0.0    0.0     89  82588688
getRow                                                 Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:123:1-87                                                                        0.0    0.0     59   5841600
basicUnsafeNew                                         Data.Vector.Mutable                            Data/Vector/Mutable.hs:(99,3)-(102,32)                                                                              0.0    0.0     57  53092800
rows                                                   Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:86:5-61                                                                         0.0    0.0     49  70537336
rank.go.maxRow                                         Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:104:23-51                                                                       0.0    0.0     45   5840784
stdNext                                                System.Random                                  System/Random.hs:(518,1)-(528,64)                                                                                   0.0    0.0      8   5279976
basicUnsafeSlice                                       Data.Vector.Primitive                          Data/Vector/Primitive.hs:219:3-60                                                                                   0.0    0.0      7  11683200
randomIvalInteger.f                                    System.Random                                  System/Random.hs:(486,8)-(489,76)                                                                                   0.0    0.0      3   1520000
randomIvalInteger.f.v'                                 System.Random                                  System/Random.hs:489:25-76                                                                                          0.0    0.0      3   2560064
randomIvalInteger                                      System.Random                                  System/Random.hs:(468,1)-(489,76)                                                                                   0.0    0.0      2   2443216
basicUnsafeSlice                                       Data.Vector.Unboxed.Base                       Data/Vector/Unboxed/Base.hs:279:428-500                                                                             0.0    0.0      2         0
mkGenericMFromList                                     Numerics.Linear.Matrix.Dense                   src/Numerics/Linear/Matrix/Dense.hs:54:1-75                                                                         0.0    0.0      2   1520288
random                                                 System.Random                                  System/Random.hs:(410,3)-(418,24)                                                                                   0.0    0.0      1        16
randomIvalIntegral                                     System.Random                                  System/Random.hs:462:1-71                                                                                           0.0    0.0      1    240000
randomIvalInteger.magtgt                               System.Random                                  System/Random.hs:483:8-21                                                                                           0.0    0.0      1    640016
stdNext.s2''                                           System.Random                                  System/Random.hs:528:17-64                                                                                          0.0    0.0      1    480000
option.(...)                                           Options.Applicative.Builder                    Options/Applicative/Builder.hs:367:5-41                                                                             0.0    0.0      1      2432
PINNED                                                 SYSTEM                                         <built-in>                                                                                                          0.0    0.0      0         0
DONT_CARE                                              MAIN                                           <built-in>                                                                                                          0.0    0.0      0         0
MAIN                                                   MAIN                                           <built-in>                                                                                                          0.0    0.0      0    128608
CAF                                                    GHC.Types                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Tuple                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Classes                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.CString                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Integer.Type                               <entire-module>                                                                                                     0.0    0.0      0        40
CAF                                                    GHC.Integer.Logarithms.Internals               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Integer.Logarithms                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Array                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Arr                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Poll                                 <entire-module>                                                                                                     0.0    0.0      0        48
CAF                                                    GHC.Event.PSQ                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Manager                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.IntTable                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.EPoll                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Control                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Arrow                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Applicative                            <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.CPUTime.Posix.ClockGetTime              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Unique                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.TimerManager                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Event.Thread                               <entire-module>                                                                                                     0.0    0.0      0      1288
CAF                                                    GHC.Event.Internal                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Typeable.Internal                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Semigroup.Internal                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.OldList                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Functor.Utils                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.ST.Lazy.Imp                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Unsafe.Coerce                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Text.Read.Lex                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Text.Read                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Text.Printf                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Text.ParserCombinators.ReadPrec                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Text.ParserCombinators.ReadP                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Types                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Internals                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Mem.StableName                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.IO.Error                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.IO                                      <entire-module>                                                                                                     0.0    0.0      0        48
CAF                                                    System.Exit                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Environment                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.CPUTime                                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Numeric                                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Word                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Weak                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Unicode                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.TypeNats                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.TypeLits                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.TopHandler                                 <entire-module>                                                                                                     0.0    0.0      0        48
CAF                                                    GHC.Storable                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Stats                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Stack.Types                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Stack.CCS                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Stable                                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Show                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.STRef                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.ST                                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Real                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Read                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Ptr                                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Pack                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Num                                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Natural                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.MVar                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.List                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Int                                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IORef                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IOArray                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Unsafe                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.IOMode                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Handle.Types                            <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Handle.Text                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Handle.Internals                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Handle.FD                               <entire-module>                                                                                                     0.0    0.0      0     34672
CAF                                                    GHC.IO.Handle                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.FD                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Exception                               <entire-module>                                                                                                     0.0    0.0      0      1584
CAF                                                    GHC.IO.Encoding.UTF8                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Encoding.UTF32                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Encoding.UTF16                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Encoding.Types                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Encoding.Latin1                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Encoding.Iconv                          <entire-module>                                                                                                     0.0    0.0      0       200
CAF                                                    GHC.IO.Encoding.Failure                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Encoding                                <entire-module>                                                                                                     0.0    0.0      0      3808
CAF                                                    GHC.IO.Device                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.BufferedIO                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO.Buffer                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.IO                                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Generics                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.ForeignPtr                                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Foreign                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Float.RealFracMethods                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Float.ConversionUtils                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Float                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Fingerprint.Type                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Fingerprint                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Exts                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Exception                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Err                                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Enum                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Conc.Sync                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Conc.Signal                                <entire-module>                                                                                                     0.0    0.0      0       640
CAF                                                    GHC.Conc.IO                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Char                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Base                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    GHC.Arr                                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.Storable                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.Ptr                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.Marshal.Utils                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.Marshal.Array                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.Marshal.Alloc                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.C.Types                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.C.String                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Foreign.C.Error                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Debug.Trace                                    <entire-module>                                                                                                     0.0    0.0      0       232
CAF                                                    Data.Void                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Version                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Unique                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Type.Equality                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Type.Coercion                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Tuple                                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Traversable                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Semigroup                                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Proxy                                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Ord                                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Monoid                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Maybe                                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.List.NonEmpty                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Functor.Sum                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Functor.Product                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Functor.Identity                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Functor.Const                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Functor.Classes                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Foldable                                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Fixed                                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Either                                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Dynamic                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Data                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Complex                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Char                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Bits                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Bitraversable                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Bifunctor                                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Bifoldable                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Zip                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.IO.Class                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Fix                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Fail                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Exception.Base                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Concurrent.Chan                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Category                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Array.Base                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.DeepSeq                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder.Prim.Internal.Base16   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder.Prim.ASCII             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder.ASCII                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder.Prim.Internal          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder.Internal               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder.Prim                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Builder                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Short.Internal                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Lazy.Internal                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Lazy                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Internal                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString.Unsafe                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.ByteString                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Utils.Containers.Internal.StrictPair           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Utils.Containers.Internal.BitQueue             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Tree                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Sequence.Internal                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Set.Internal                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Map.Internal                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.IntSet.Internal                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.IntMap.Internal                           <entire-module>                                                                                                     0.0    0.0      0         0
CAF:$s^1                                               Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$s^2                                               Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_r761                                           Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r762                                          Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_r764                                          Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP2_r76a                                         Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:intLog1                                            Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:wordLog1                                           Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:integerLog3                                        Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:naturalLog2_b                                      Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:naturalLog3                                        Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl9_r76Q                                          Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:b_r76S                                             Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:u_r76T                                             Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:183:7                                                                           0.0    0.0      0         0
CAF:v_r76U                                             Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:184:7                                                                           0.0    0.0      0         0
CAF:lvl11_r76V                                         Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:naturalLog10_b                                     Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:naturalLog1                                        Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:u1_r76X                                            Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:167:7                                                                           0.0    0.0      0         0
CAF:v1_r76Y                                            Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:168:7                                                                           0.0    0.0      0         0
CAF:lvl13_r76Z                                         Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:integerLog1                                        Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:logArr_r1Ea                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:265:1-6                                                                         0.0    0.0      0         0
CAF:b1_r78J                                            Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:b2_r78L                                            Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:b3_r78M                                            Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl122_r78O                                        Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl124_r78Q                                        Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:integerLogBase2                                    Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:integerLogBase1                                    Math.NumberTheory.Logarithms                   <no location info>                                                                                                  0.0    0.0      0         0
integerLogBase                                         Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(68,1)-(73,37)                                                                  0.0    0.0      0         0
integerLog2                                            Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(78,1)-(80,37)                                                                  0.0    0.0      0         0
naturalLogBase                                         Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(94,1)-(99,37)                                                                  0.0    0.0      0         0
naturalLog2                                            Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(104,1)-(106,37)                                                                0.0    0.0      0         0
intLog2                                                Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(111,1)-(113,55)                                                                0.0    0.0      0         0
wordLog2                                               Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(118,1)-(120,51)                                                                0.0    0.0      0         0
integerLogBase'                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(191,1)-(222,25)                                                                0.0    0.0      0         0
integerLogBase'.ex                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:218:23-71                                                                       0.0    0.0      0         0
integerLogBase'.w                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:217:23-52                                                                       0.0    0.0      0         0
integerLogBase'.v                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:216:23-66                                                                       0.0    0.0      0         0
integerLogBase'.u                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:215:23-62                                                                       0.0    0.0      0         0
integerLogBase'.ix                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:209:23-33                                                                       0.0    0.0      0         0
integerLogBase'.bi                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:206:23-58                                                                       0.0    0.0      0         0
integerLogBase'.ex                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:201:23-97                                                                       0.0    0.0      0         0
integerLogBase'.v                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:198:23-51                                                                       0.0    0.0      0         0
integerLogBase'.u                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:197:23-47                                                                       0.0    0.0      0         0
integerLogBase'.ix                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:195:23-33                                                                       0.0    0.0      0         0
integerLogBase'.bi                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:194:23-40                                                                       0.0    0.0      0         0
integerLogBase'.lb                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:221:7-25                                                                        0.0    0.0      0         0
integerLogBase'.ln                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:222:7-25                                                                        0.0    0.0      0         0
integerLog2'                                           Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:125:1-36                                                                        0.0    0.0      0         0
naturalLogBase'                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(227,1)-(258,25)                                                                0.0    0.0      0         0
naturalLogBase'.ex                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:254:23-71                                                                       0.0    0.0      0         0
naturalLogBase'.w                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:253:23-52                                                                       0.0    0.0      0         0
naturalLogBase'.v                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:252:23-66                                                                       0.0    0.0      0         0
naturalLogBase'.u                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:251:23-62                                                                       0.0    0.0      0         0
naturalLogBase'.ix                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:245:23-33                                                                       0.0    0.0      0         0
naturalLogBase'.bi                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:242:23-58                                                                       0.0    0.0      0         0
naturalLogBase'.ex                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:237:23-97                                                                       0.0    0.0      0         0
naturalLogBase'.v                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:234:23-51                                                                       0.0    0.0      0         0
naturalLogBase'.u                                      Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:233:23-47                                                                       0.0    0.0      0         0
naturalLogBase'.ix                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:231:23-33                                                                       0.0    0.0      0         0
naturalLogBase'.bi                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:230:23-41                                                                       0.0    0.0      0         0
naturalLogBase'.lb                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:257:7-25                                                                        0.0    0.0      0         0
naturalLogBase'.ln                                     Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:258:7-25                                                                        0.0    0.0      0         0
naturalLog2'                                           Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:130:1-36                                                                        0.0    0.0      0         0
intLog2'                                               Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:135:1-48                                                                        0.0    0.0      0         0
wordLog2'                                              Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:140:1-37                                                                        0.0    0.0      0         0
integerLog10                                           Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(145,1)-(147,31)                                                                0.0    0.0      0         0
naturalLog10                                           Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(152,1)-(154,31)                                                                0.0    0.0      0         0
integerLog10'                                          Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(160,1)-(170,55)                                                                0.0    0.0      0         0
integerLog10'.ex                                       Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:170:7-55                                                                        0.0    0.0      0         0
integerLog10'.ln                                       Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:165:7-30                                                                        0.0    0.0      0         0
integerLog10'.u                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:167:7-18                                                                        0.0    0.0      0         0
integerLog10'.v                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:168:7-18                                                                        0.0    0.0      0         0
naturalLog10'                                          Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(176,1)-(186,55)                                                                0.0    0.0      0         0
naturalLog10'.ex                                       Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:186:7-55                                                                        0.0    0.0      0         0
naturalLog10'.ln                                       Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:181:7-30                                                                        0.0    0.0      0         0
naturalLog10'.u                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:183:7-18                                                                        0.0    0.0      0         0
naturalLog10'.v                                        Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:184:7-18                                                                        0.0    0.0      0         0
logArr                                                 Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(265,1)-(297,11)                                                                0.0    0.0      0         0
fromNatural                                            Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:313:1-26                                                                        0.0    0.0      0         0
naturalLog2#                                           Math.NumberTheory.Logarithms                   src/Math/NumberTheory/Logarithms.hs:(317,1)-(318,45)                                                                0.0    0.0      0         0
CAF                                                    Data.Binary.Class                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Binary.Get.Internal                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Binary.Get                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Binary.Put                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Builder.Int.Digits          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Lazy.Builder.Int                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Lazy.Search                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Lazy.Fusion                 <entire-module>                                                                                                     0.0    0.0      0         0
unstreamChunks/inner                                   Data.Text.Internal.Lazy.Fusion                 libraries/text/Data/Text/Internal/Lazy/Fusion.hs:(79,17)-(83,59)                                                    0.0    0.0      0         0
unstreamChunks/resize                                  Data.Text.Internal.Lazy.Fusion                 libraries/text/Data/Text/Internal/Lazy/Fusion.hs:(72,72)-(76,38)                                                    0.0    0.0      0         0
unstreamChunks/outer                                   Data.Text.Internal.Lazy.Fusion                 libraries/text/Data/Text/Internal/Lazy/Fusion.hs:(62,15)-(68,43)                                                    0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Lazy.Encoding.Fusion        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Builder.RealFloat.Functions <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Builder.Functions           <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Show                                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Unsafe                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Lazy.IO                              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Lazy.Encoding                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Lazy.Builder.RealFloat               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Lazy                                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Lazy                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.IO                          <entire-module>                                                                                                     0.0    0.0      0         0
otherwise                                              Data.Text.Internal.IO                          libraries/text/Data/Text/Internal/IO.hs:151:43-52                                                                   0.0    0.0      0         0
readTextDevice                                         Data.Text.Internal.IO                          libraries/text/Data/Text/Internal/IO.hs:133:39-64                                                                   0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Fusion.Types                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Fusion.Size                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Fusion.Common               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Fusion.CaseMapping          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Fusion                      <entire-module>                                                                                                     0.0    0.0      0         0
reverse/resize                                         Data.Text.Internal.Fusion                      libraries/text/Data/Text/Internal/Fusion.hs:(154,66)-(158,52)                                                       0.0    0.0      0         0
mapAccumL/resize                                       Data.Text.Internal.Fusion                      libraries/text/Data/Text/Internal/Fusion.hs:(234,63)-(238,52)                                                       0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Encoding.Fusion             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal.Builder                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Internal                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.IO                                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Encoding.Error                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Encoding                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text.Array                                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Text                                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF:$fHashable1Fixed_$chash                            Data.Hashable.Class                            Data/Hashable/Class.hs:311:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashable()_$chash                                Data.Hashable.Class                            Data/Hashable/Class.hs:364:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableBool_$chash                              Data.Hashable.Class                            Data/Hashable/Class.hs:368:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableOrdering_$chash                          Data.Hashable.Class                            Data/Hashable/Class.hs:372:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableChar_$chash                              Data.Hashable.Class                            Data/Hashable/Class.hs:376:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableStableName_$chash                        Data.Hashable.Class                            Data/Hashable/Class.hs:597:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableVoid1                                    Data.Hashable.Class                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fHashableUnique_$chash                            Data.Hashable.Class                            Data/Hashable/Class.hs:764:5-8                                                                                      0.0    0.0      0         0
CAF:$fShow1Hashed1                                     Data.Hashable.Class                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fHashableComplex_$chash                           Data.Hashable.Class                            Data/Hashable/Class.hs:350:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableWord16_$chash                            Data.Hashable.Class                            Data/Hashable/Class.hs:346:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableWord8_$chash                             Data.Hashable.Class                            Data/Hashable/Class.hs:342:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableNatural_$chash1                          Data.Hashable.Class                            Data/Hashable/Class.hs:338:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableInt32_$chash                             Data.Hashable.Class                            Data/Hashable/Class.hs:323:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableInt16_$chash                             Data.Hashable.Class                            Data/Hashable/Class.hs:319:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableInt8_$chash                              Data.Hashable.Class                            Data/Hashable/Class.hs:315:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableVoid_$chash                              Data.Hashable.Class                            Data/Hashable/Class.hs:703:10-22                                                                                    0.0    0.0      0         0
CAF:$fHashableShortByteString_$chash                   Data.Hashable.Class                            Data/Hashable/Class.hs:622:10-37                                                                                    0.0    0.0      0         0
CAF:$fHashableByteString0_$chash                       Data.Hashable.Class                            Data/Hashable/Class.hs:613:10-30                                                                                    0.0    0.0      0         0
CAF:$fHashableByteString_$chashWithSalt                Data.Hashable.Class                            Data/Hashable/Class.hs:619:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableByteString_$chash                        Data.Hashable.Class                            Data/Hashable/Class.hs:618:10-31                                                                                    0.0    0.0      0         0
CAF:$fHashableHashed_$chashWithSalt                    Data.Hashable.Class                            Data/Hashable/Class.hs:881:3-14                                                                                     0.0    0.0      0         0
CAF:$fHashableUnique_$chashWithSalt                    Data.Hashable.Class                            Data/Hashable/Class.hs:765:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableTypeRep_$chashWithSalt                   Data.Hashable.Class                            Data/Hashable/Class.hs:698:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableTypeRep1_reQl                            Data.Hashable.Class                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fHashableSomeTypeRep_$chashWithSalt               Data.Hashable.Class                            Data/Hashable/Class.hs:693:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableWordPtr_$chashWithSalt                   Data.Hashable.Class                            Data/Hashable/Class.hs:662:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableFunPtr_$chashWithSalt                    Data.Hashable.Class                            Data/Hashable/Class.hs:658:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashablePtr_$chash                               Data.Hashable.Class                            Data/Hashable/Class.hs:650:10-25                                                                                    0.0    0.0      0         0
CAF:$fHashableFunPtr_$chash                            Data.Hashable.Class                            Data/Hashable/Class.hs:653:10-28                                                                                    0.0    0.0      0         0
CAF:$fHashableStableName_$chashWithSalt                Data.Hashable.Class                            Data/Hashable/Class.hs:598:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableChar_$chashWithSalt                      Data.Hashable.Class                            Data/Hashable/Class.hs:377:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableOrdering_$chashWithSalt                  Data.Hashable.Class                            Data/Hashable/Class.hs:373:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableBool_$chashWithSalt                      Data.Hashable.Class                            Data/Hashable/Class.hs:369:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashable()_$chashWithSalt                        Data.Hashable.Class                            Data/Hashable/Class.hs:365:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableWord64_$chashWithSalt                    Data.Hashable.Class                            Data/Hashable/Class.hs:361:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableWord32_$chashWithSalt                    Data.Hashable.Class                            Data/Hashable/Class.hs:351:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableWord16_$chashWithSalt                    Data.Hashable.Class                            Data/Hashable/Class.hs:347:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableWord8_$chashWithSalt                     Data.Hashable.Class                            Data/Hashable/Class.hs:343:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableNatural_$chashWithSalt1                  Data.Hashable.Class                            Data/Hashable/Class.hs:339:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableInt64_$chashWithSalt                     Data.Hashable.Class                            Data/Hashable/Class.hs:335:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableInt32_$chashWithSalt                     Data.Hashable.Class                            Data/Hashable/Class.hs:324:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableInt16_$chashWithSalt                     Data.Hashable.Class                            Data/Hashable/Class.hs:320:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableInt8_$chashWithSalt                      Data.Hashable.Class                            Data/Hashable/Class.hs:316:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashable1Fixed_$chashWithSalt1                   Data.Hashable.Class                            Data/Hashable/Class.hs:312:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableThreadId_$chash                          Data.Hashable.Class                            Data/Hashable/Class.hs:647:5-8                                                                                      0.0    0.0      0         0
CAF:$fHashableThreadId_$chashWithSalt                  Data.Hashable.Class                            Data/Hashable/Class.hs:648:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableBigNat_$chash                            Data.Hashable.Class                            Data/Hashable/Class.hs:380:10-24                                                                                    0.0    0.0      0         0
CAF:$fHashableFixed_$chash                             Data.Hashable.Class                            Data/Hashable/Class.hs:773:10-27                                                                                    0.0    0.0      0         0
CAF:$fHashable[]_$s$chashWithSalt                      Data.Hashable.Class                            Data/Hashable/Class.hs:605:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashable[]_$s$chash                              Data.Hashable.Class                            Data/Hashable/Class.hs:603:10-35                                                                                    0.0    0.0      0         0
CAF:$fHashableVersion2                                 Data.Hashable.Class                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:w_reQm                                             Data.Hashable.Class                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:w1_reQo                                            Data.Hashable.Class                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fHashableVersion_$chash                           Data.Hashable.Class                            Data/Hashable/Class.hs:767:10-25                                                                                    0.0    0.0      0         0
CAF:$fHashableComplex_$chashWithSalt1                  Data.Hashable.Class                            Data/Hashable/Class.hs:477:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableComplex_$s$chashWithSalt1                Data.Hashable.Class                            Data/Hashable/Class.hs:447:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableComplex_$chashWithSalt                   Data.Hashable.Class                            Data/Hashable/Class.hs:468:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableComplex_$s$chashWithSalt                 Data.Hashable.Class                            Data/Hashable/Class.hs:447:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableText0_$chash                             Data.Hashable.Class                            Data/Hashable/Class.hs:631:10-24                                                                                    0.0    0.0      0         0
CAF:$fHashableText_$chashWithSalt                      Data.Hashable.Class                            Data/Hashable/Class.hs:637:5-16                                                                                     0.0    0.0      0         0
CAF:$fHashableText_$chash                              Data.Hashable.Class                            Data/Hashable/Class.hs:636:10-25                                                                                    0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:311:5-13                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:312:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:315:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:316:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:319:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:320:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:323:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:324:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(327,5)-(334,74)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:335:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:338:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:339:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:342:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:343:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:346:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:347:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:350:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:351:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(354,5)-(360,60)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:361:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:364:5-19                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:365:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:368:5-19                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:369:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:372:5-19                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:373:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:376:5-19                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:377:5-38                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(381,5)-(385,43)                                                                             0.0    0.0      0         0
hashWithSalt.size                                      Data.Hashable.Class                            Data/Hashable/Class.hs:384:9-36                                                                                     0.0    0.0      0         0
hashWithSalt.numBytes                                  Data.Hashable.Class                            Data/Hashable/Class.hs:385:9-43                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(391,5)-(392,30)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(394,5)-(395,56)                                                                             0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(406,5)-(408,36)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(410,5)-(412,62)                                                                             0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:446:5-43                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:447:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:458:5-60                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:459:5-80                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(462,5)-(467,35)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:468:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(471,5)-(476,35)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:477:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(487,5)-(488,50)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:489:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(496,5)-(497,51)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:498:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:508:5-45                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:509:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:518:5-67                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:519:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(530,5)-(531,63)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:532:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(543,5)-(545,43)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:546:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(561,5)-(563,61)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:564:5-32                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:(580,5)-(582,79)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(583,5)-(585,79)                                                                             0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:597:5-25                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:598:5-38                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:605:5-32                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(614,5)-(616,68)                                                                             0.0    0.0      0         0
hashWithSalt.\                                         Data.Hashable.Class                            Data/Hashable/Class.hs:616:28-68                                                                                    0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:619:5-46                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(624,5)-(628,56)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(632,5)-(634,12)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:637:5-46                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:647:5-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:648:5-38                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:651:5-59                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:654:5-63                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:657:5-27                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:658:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:661:5-27                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:662:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:692:5-56                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:693:5-38                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:697:5-22                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:698:5-38                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:704:5-27                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:764:5-21                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:765:5-38                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:(768,5)-(769,54)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:774:5-55                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:781:5-32                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:788:5-53                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:798:5-14                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:799:5-24                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:808:5-70                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:811:5-45                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:814:5-45                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:817:5-64                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:820:5-47                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:823:5-46                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:826:5-52                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:829:5-48                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:449:5-49                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:(492,5)-(493,67)                                                                             0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:501:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:512:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:522:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:535:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:550:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:568:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:588:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:776:5-61                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:783:5-51                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:791:5-46                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:802:5-30                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:838:5-32                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:841:5-79                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:844:5-86                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:847:5-32                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:(850,5)-(851,86)                                                                             0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:854:5-32                                                                                     0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:(504,5)-(505,71)                                                                             0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:515:5-58                                                                                     0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:(525,5)-(526,43)                                                                             0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:(538,5)-(539,61)                                                                             0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:(554,5)-(556,43)                                                                             0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:(572,5)-(574,43)                                                                             0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:(592,5)-(594,61)                                                                             0.0    0.0      0         0
liftHashWithSalt2                                      Data.Hashable.Class                            Data/Hashable/Class.hs:794:5-51                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:(608,5)-(611,46)                                                                             0.0    0.0      0         0
liftHashWithSalt.finalise                              Data.Hashable.Class                            Data/Hashable/Class.hs:610:9-44                                                                                     0.0    0.0      0         0
liftHashWithSalt.step                                  Data.Hashable.Class                            Data/Hashable/Class.hs:611:9-46                                                                                     0.0    0.0      0         0
==                                                     Data.Hashable.Class                            Data/Hashable/Class.hs:871:3-49                                                                                     0.0    0.0      0         0
compare                                                Data.Hashable.Class                            Data/Hashable/Class.hs:874:3-49                                                                                     0.0    0.0      0         0
showsPrec                                              Data.Hashable.Class                            Data/Hashable/Class.hs:(877,3)-(878,55)                                                                             0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:882:3-23                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:881:3-36                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:888:3-61                                                                                     0.0    0.0      0         0
fromString                                             Data.Hashable.Class                            Data/Hashable/Class.hs:891:3-58                                                                                     0.0    0.0      0         0
fromString.r                                           Data.Hashable.Class                            Data/Hashable/Class.hs:891:22-37                                                                                    0.0    0.0      0         0
foldr                                                  Data.Hashable.Class                            Data/Hashable/Class.hs:894:3-36                                                                                     0.0    0.0      0         0
rnf                                                    Data.Hashable.Class                            Data/Hashable/Class.hs:897:3-22                                                                                     0.0    0.0      0         0
liftEq                                                 Data.Hashable.Class                            Data/Hashable/Class.hs:911:3-58                                                                                     0.0    0.0      0         0
liftCompare                                            Data.Hashable.Class                            Data/Hashable/Class.hs:914:3-49                                                                                     0.0    0.0      0         0
liftShowsPrec                                          Data.Hashable.Class                            Data/Hashable/Class.hs:917:3-68                                                                                     0.0    0.0      0         0
liftHashWithSalt                                       Data.Hashable.Class                            Data/Hashable/Class.hs:258:5-70                                                                                     0.0    0.0      0         0
hash                                                   Data.Hashable.Class                            Data/Hashable/Class.hs:234:5-35                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Hashable.Class                            Data/Hashable/Class.hs:238:5-59                                                                                     0.0    0.0      0         0
hashPtr                                                Data.Hashable.Class                            Data/Hashable/Class.hs:711:1-49                                                                                     0.0    0.0      0         0
hashWithSalt1                                          Data.Hashable.Class                            Data/Hashable/Class.hs:269:1-45                                                                                     0.0    0.0      0         0
hashWithSalt2                                          Data.Hashable.Class                            Data/Hashable/Class.hs:275:1-59                                                                                     0.0    0.0      0         0
defaultLiftHashWithSalt                                Data.Hashable.Class                            Data/Hashable/Class.hs:281:1-60                                                                                     0.0    0.0      0         0
defaultHashWithSalt                                    Data.Hashable.Class                            Data/Hashable/Class.hs:288:1-50                                                                                     0.0    0.0      0         0
hashThreadId                                           Data.Hashable.Class                            Data/Hashable/Class.hs:641:1-70                                                                                     0.0    0.0      0         0
hashTypeRep                                            Data.Hashable.Class                            Data/Hashable/Class.hs:(688,1)-(689,65)                                                                             0.0    0.0      0         0
hashTypeRep.x                                          Data.Hashable.Class                            Data/Hashable/Class.hs:689:9-47                                                                                     0.0    0.0      0         0
hashTypeRep.(...)                                      Data.Hashable.Class                            Data/Hashable/Class.hs:689:9-47                                                                                     0.0    0.0      0         0
hashPtrWithSalt                                        Data.Hashable.Class                            Data/Hashable/Class.hs:(723,1)-(725,23)                                                                             0.0    0.0      0         0
hashByteArrayWithSalt                                  Data.Hashable.Class                            Data/Hashable/Class.hs:(751,1)-(753,20)                                                                             0.0    0.0      0         0
combine                                                Data.Hashable.Class                            Data/Hashable/Class.hs:761:1-40                                                                                     0.0    0.0      0         0
traverseHashed                                         Data.Hashable.Class                            Data/Hashable/Class.hs:905:1-49                                                                                     0.0    0.0      0         0
mapHashed                                              Data.Hashable.Class                            Data/Hashable/Class.hs:901:1-39                                                                                     0.0    0.0      0         0
hashed                                                 Data.Hashable.Class                            Data/Hashable/Class.hs:863:1-28                                                                                     0.0    0.0      0         0
unhashed                                               Data.Hashable.Class                            Data/Hashable/Class.hs:867:1-25                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Writer.Strict              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Writer.Lazy                <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.State.Strict               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.State.Lazy                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Select                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.RWS.Strict                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.RWS.Lazy                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Reader                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Maybe                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.List                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Identity                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Error                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Except                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Cont                       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Control.Monad.Trans.Accum                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF:nullAddr                                           Data.Primitive.Addr                            Data/Primitive/Addr.hs:40:1-8                                                                                       0.0    0.0      0         0
nullAddr                                               Data.Primitive.Addr                            Data/Primitive/Addr.hs:40:1-25                                                                                      0.0    0.0      0         0
plusAddr                                               Data.Primitive.Addr                            Data/Primitive/Addr.hs:47:1-51                                                                                      0.0    0.0      0         0
minusAddr                                              Data.Primitive.Addr                            Data/Primitive/Addr.hs:52:1-53                                                                                      0.0    0.0      0         0
remAddr                                                Data.Primitive.Addr                            Data/Primitive/Addr.hs:56:1-47                                                                                      0.0    0.0      0         0
CAF:$fDataByteArray3                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_rL8c                                           Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_rL8d                                          Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_rL8f                                          Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_rL8k                                         Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataByteArray5                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataByteArray6                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableByteArray2                            Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableByteArray5                            Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableByteArray7                            Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListByteArray1                                 Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowByteArray7                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowByteArray4                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowByteArray1                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListByteArray2                                 Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataByteArray7                                   Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableByteArray9                            Data.Primitive.ByteArray                       <no location info>                                                                                                  0.0    0.0      0         0
dataTypeOf                                             Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:286:3-65                                                                                0.0    0.0      0         0
toConstr                                               Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:284:3-31                                                                                0.0    0.0      0         0
gunfold                                                Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:285:3-31                                                                                0.0    0.0      0         0
showsPrec                                              Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(294,3)-(302,45)                                                                        0.0    0.0      0         0
showsPrec.go                                           Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(297,7)-(302,45)                                                                        0.0    0.0      0         0
showsPrec.go.comma                                     Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(301,11)-(302,45)                                                                       0.0    0.0      0         0
==                                                     Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(318,3)-(324,20)                                                                        0.0    0.0      0         0
compare                                                Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(327,3)-(337,30)                                                                        0.0    0.0      0         0
compare.n1                                             Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:336:7-30                                                                                0.0    0.0      0         0
compare.n2                                             Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:337:7-30                                                                                0.0    0.0      0         0
toList                                                 Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:343:3-32                                                                                0.0    0.0      0         0
fromListN                                              Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:345:3-23                                                                                0.0    0.0      0         0
fromList                                               Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:344:3-40                                                                                0.0    0.0      0         0
dataTypeOf                                             Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:291:3-72                                                                                0.0    0.0      0         0
toConstr                                               Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:289:3-31                                                                                0.0    0.0      0         0
gunfold                                                Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:290:3-31                                                                                0.0    0.0      0         0
fromListN                                              Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(174,1)-(177,30)                                                                        0.0    0.0      0         0
foldrByteArray                                         Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(166,1)-(171,28)                                                                        0.0    0.0      0         0
foldrByteArray.go                                      Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(168,5)-(170,40)                                                                        0.0    0.0      0         0
foldrByteArray.sz                                      Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:171:5-28                                                                                0.0    0.0      0         0
unI#                                                   Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:181:1-17                                                                                0.0    0.0      0         0
sameByteArray                                          Data.Primitive.ByteArray                       Data/Primitive/ByteArray.hs:(308,1)-(311,20)                                                                        0.0    0.0      0         0
CAF:$fDataMutableArray2                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_riml                                           Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_rimm                                          Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_rimo                                          Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_rimt                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableArray5                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableArray7                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_rimK                                          Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_rimM                                          Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl8_rimN                                          Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:emptyArray                                         Data.Primitive.Array                           Data/Primitive/Array.hs:314:1-10                                                                                    0.0    0.0      0         0
CAF:$fAlternativeArray_$cempty                         Data.Primitive.Array                           Data/Primitive/Array.hs:475:3-7                                                                                     0.0    0.0      0         0
CAF:lvl11_rimQ                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadZipArray3                                   Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl13_rimS                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadZipArray2                                   Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl15_rimU                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidArray1                                     Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl17_rimW                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadZipArray1                                   Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl19_rimY                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl20_rimZ                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_rin1                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeArray4                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl24_rin3                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl26_rin5                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeArray3                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl28_rin7                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeArray6                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl30_rin9                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeArray3                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl32_rinb                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeArray2                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl34_rind                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeArray4                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadArray_$c>>                                  Data.Primitive.Array                           Data/Primitive/Array.hs:486:3-6                                                                                     0.0    0.0      0         0
CAF:$fMonadArray_$creturn                              Data.Primitive.Array                           Data/Primitive/Array.hs:485:3-8                                                                                     0.0    0.0      0         0
CAF:lvl36_rinf                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeArray2                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeArray1                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidArray_$cmempty                             Data.Primitive.Array                           Data/Primitive/Array.hs:542:3-8                                                                                     0.0    0.0      0         0
CAF:$fMonoidArray_$c<>                                 Data.Primitive.Array                           Data/Primitive/Array.hs:537:3-6                                                                                     0.0    0.0      0         0
CAF:$fSemigroupArray_$csconcat                         Data.Primitive.Array                           Data/Primitive/Array.hs:538:3-9                                                                                     0.0    0.0      0         0
CAF:$fMonadPlusArray_$cmzero                           Data.Primitive.Array                           Data/Primitive/Array.hs:501:3-7                                                                                     0.0    0.0      0         0
CAF:$fMonadPlusArray_$cmplus                           Data.Primitive.Array                           Data/Primitive/Array.hs:502:3-7                                                                                     0.0    0.0      0         0
CAF:$fMonadArray1                                      Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl38_rinh                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl40_rinj                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataArray2                                       Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl42_rinl                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl44_rinn                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl45_rino                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl47_rinq                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl48_rinr                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl50_rint                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl51_rinu                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl53_rinw                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl54_rinx                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableArray2_rinA                              Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowArray3                                       Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowArray1                                       Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListArray1                                     Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataArray8                                       Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:ds_rinG                                            Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataArray6                                       Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl58_rinI                                         Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:arrayDataType                                      Data.Primitive.Array                           Data/Primitive/Array.hs:568:1-13                                                                                    0.0    0.0      0         0
CAF:fromListConstr                                     Data.Primitive.Array                           Data/Primitive/Array.hs:571:1-14                                                                                    0.0    0.0      0         0
CAF:fromListConstr2_rinK                               Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataArray10                                      Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataMutableArray9                                Data.Primitive.Array                           <no location info>                                                                                                  0.0    0.0      0         0
==                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:(333,3)-(335,78)                                                                            0.0    0.0      0         0
==.loop                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(334,10)-(335,78)                                                                           0.0    0.0      0         0
compare                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(341,3)-(346,60)                                                                            0.0    0.0      0         0
compare.loop                                           Data.Primitive.Array                           Data/Primitive/Array.hs:(344,4)-(346,60)                                                                            0.0    0.0      0         0
compare.mn                                             Data.Primitive.Array                           Data/Primitive/Array.hs:343:4-43                                                                                    0.0    0.0      0         0
product                                                Data.Primitive.Array                           Data/Primitive/Array.hs:406:3-24                                                                                    0.0    0.0      0         0
sum                                                    Data.Primitive.Array                           Data/Primitive/Array.hs:404:3-20                                                                                    0.0    0.0      0         0
minimum                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(398,3)-(402,32)                                                                            0.0    0.0      0         0
minimum.go                                             Data.Primitive.Array                           Data/Primitive/Array.hs:(401,10)-(402,32)                                                                           0.0    0.0      0         0
minimum.sz                                             Data.Primitive.Array                           Data/Primitive/Array.hs:400:10-27                                                                                   0.0    0.0      0         0
maximum                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(392,3)-(396,32)                                                                            0.0    0.0      0         0
maximum.go                                             Data.Primitive.Array                           Data/Primitive/Array.hs:(395,10)-(396,32)                                                                           0.0    0.0      0         0
maximum.sz                                             Data.Primitive.Array                           Data/Primitive/Array.hs:394:10-27                                                                                   0.0    0.0      0         0
length                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:390:3-22                                                                                    0.0    0.0      0         0
null                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:388:3-29                                                                                    0.0    0.0      0         0
toList                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(382,3)-(386,11)                                                                            0.0    0.0      0         0
toList.\                                               Data.Primitive.Array                           Data/Primitive/Array.hs:(382,35)-(386,11)                                                                           0.0    0.0      0         0
toList.\.go                                            Data.Primitive.Array                           Data/Primitive/Array.hs:(384,7)-(385,26)                                                                            0.0    0.0      0         0
toList.\.sz                                            Data.Primitive.Array                           Data/Primitive/Array.hs:383:7-24                                                                                    0.0    0.0      0         0
foldl1                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(364,3)-(369,29)                                                                            0.0    0.0      0         0
foldl1.sz                                              Data.Primitive.Array                           Data/Primitive/Array.hs:366:10-27                                                                                   0.0    0.0      0         0
foldl1.go                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(368,10)-(369,29)                                                                           0.0    0.0      0         0
foldl1.z                                               Data.Primitive.Array                           Data/Primitive/Array.hs:367:10-27                                                                                   0.0    0.0      0         0
foldr1                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(357,3)-(362,29)                                                                            0.0    0.0      0         0
foldr1.go                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(361,10)-(362,29)                                                                           0.0    0.0      0         0
foldr1.z                                               Data.Primitive.Array                           Data/Primitive/Array.hs:360:10-28                                                                                   0.0    0.0      0         0
foldr1.sz                                              Data.Primitive.Array                           Data/Primitive/Array.hs:359:10-31                                                                                   0.0    0.0      0         0
foldl'                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(376,3)-(378,44)                                                                            0.0    0.0      0         0
foldl'.go                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(377,10)-(378,44)                                                                           0.0    0.0      0         0
foldl                                                  Data.Primitive.Array                           Data/Primitive/Array.hs:(353,3)-(355,57)                                                                            0.0    0.0      0         0
foldl.go                                               Data.Primitive.Array                           Data/Primitive/Array.hs:(354,10)-(355,57)                                                                           0.0    0.0      0         0
foldr'                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(372,3)-(374,66)                                                                            0.0    0.0      0         0
foldr'.go                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(373,10)-(374,66)                                                                           0.0    0.0      0         0
foldr                                                  Data.Primitive.Array                           Data/Primitive/Array.hs:(349,3)-(351,37)                                                                            0.0    0.0      0         0
foldr.go                                               Data.Primitive.Array                           Data/Primitive/Array.hs:(350,10)-(351,37)                                                                           0.0    0.0      0         0
traverse                                               Data.Primitive.Array                           Data/Primitive/Array.hs:(411,3)-(413,62)                                                                            0.0    0.0      0         0
toList                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:424:3-17                                                                                    0.0    0.0      0         0
fromListN                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(418,3)-(422,16)                                                                            0.0    0.0      0         0
fromListN.\                                            Data.Primitive.Array                           Data/Primitive/Array.hs:(420,7)-(422,16)                                                                            0.0    0.0      0         0
fromListN.\.go                                         Data.Primitive.Array                           Data/Primitive/Array.hs:(420,11)-(421,33)                                                                           0.0    0.0      0         0
fromList                                               Data.Primitive.Array                           Data/Primitive/Array.hs:423:3-42                                                                                    0.0    0.0      0         0
<$                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:445:3-67                                                                                    0.0    0.0      0         0
fmap                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:(438,3)-(443,14)                                                                            0.0    0.0      0         0
fmap.\                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(440,7)-(443,14)                                                                            0.0    0.0      0         0
fmap.\.go                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(440,11)-(442,45)                                                                           0.0    0.0      0         0
<*                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:(466,3)-(472,50)                                                                            0.0    0.0      0         0
<*.\                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:(467,5)-(471,12)                                                                            0.0    0.0      0         0
<*.\.go                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(469,9)-(470,36)                                                                            0.0    0.0      0         0
<*.\.fill                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(467,9)-(468,44)                                                                            0.0    0.0      0         0
<*.sza                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:472:10-28                                                                                   0.0    0.0      0         0
<*.szb                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:472:32-50                                                                                   0.0    0.0      0         0
*>                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:(461,3)-(465,50)                                                                            0.0    0.0      0         0
*>.\                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:(462,5)-(464,12)                                                                            0.0    0.0      0         0
*>.\.go                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(462,9)-(463,36)                                                                            0.0    0.0      0         0
*>.sza                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:465:10-28                                                                                   0.0    0.0      0         0
*>.szb                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:465:32-50                                                                                   0.0    0.0      0         0
<*>                                                    Data.Primitive.Array                           Data/Primitive/Array.hs:(450,3)-(460,52)                                                                            0.0    0.0      0         0
<*>.go1                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(452,9)-(454,33)                                                                            0.0    0.0      0         0
<*>.go2                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(455,9)-(457,33)                                                                            0.0    0.0      0         0
<*>.szab                                               Data.Primitive.Array                           Data/Primitive/Array.hs:460:10-30                                                                                   0.0    0.0      0         0
<*>.sza                                                Data.Primitive.Array                           Data/Primitive/Array.hs:460:34-52                                                                                   0.0    0.0      0         0
pure                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:449:3-53                                                                                    0.0    0.0      0         0
many                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:(481,3)-(482,72)                                                                            0.0    0.0      0         0
some                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:(479,3)-(480,72)                                                                            0.0    0.0      0         0
<|>                                                    Data.Primitive.Array                           Data/Primitive/Array.hs:(476,3)-(478,54)                                                                            0.0    0.0      0         0
<|>.\                                                  Data.Primitive.Array                           Data/Primitive/Array.hs:477:5-59                                                                                    0.0    0.0      0         0
<|>.sza1                                               Data.Primitive.Array                           Data/Primitive/Array.hs:478:10-30                                                                                   0.0    0.0      0         0
<|>.sza2                                               Data.Primitive.Array                           Data/Primitive/Array.hs:478:34-54                                                                                   0.0    0.0      0         0
empty                                                  Data.Primitive.Array                           Data/Primitive/Array.hs:475:3-20                                                                                    0.0    0.0      0         0
fail                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:498:3-16                                                                                    0.0    0.0      0         0
return                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:485:3-15                                                                                    0.0    0.0      0         0
>>                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:486:3-13                                                                                    0.0    0.0      0         0
>>=                                                    Data.Primitive.Array                           Data/Primitive/Array.hs:(487,3)-(497,17)                                                                            0.0    0.0      0         0
>>=.push                                               Data.Primitive.Array                           Data/Primitive/Array.hs:(489,4)-(492,61)                                                                            0.0    0.0      0         0
>>=.push.b                                             Data.Primitive.Array                           Data/Primitive/Array.hs:491:24-45                                                                                   0.0    0.0      0         0
>>=.build                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(494,4)-(497,17)                                                                            0.0    0.0      0         0
>>=.build.\                                            Data.Primitive.Array                           Data/Primitive/Array.hs:(495,6)-(497,17)                                                                            0.0    0.0      0         0
>>=.build.\.go                                         Data.Primitive.Array                           Data/Primitive/Array.hs:(495,10)-(496,34)                                                                           0.0    0.0      0         0
mplus                                                  Data.Primitive.Array                           Data/Primitive/Array.hs:502:3-15                                                                                    0.0    0.0      0         0
mzero                                                  Data.Primitive.Array                           Data/Primitive/Array.hs:501:3-15                                                                                    0.0    0.0      0         0
munzip                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:(518,3)-(529,57)                                                                            0.0    0.0      0         0
munzip.go                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(522,9)-(527,24)                                                                            0.0    0.0      0         0
munzip.go.b                                            Data.Primitive.Array                           Data/Primitive/Array.hs:523:15-39                                                                                   0.0    0.0      0         0
munzip.go.a                                            Data.Primitive.Array                           Data/Primitive/Array.hs:523:15-39                                                                                   0.0    0.0      0         0
munzip.go.(...)                                        Data.Primitive.Array                           Data/Primitive/Array.hs:523:15-39                                                                                   0.0    0.0      0         0
munzip.sz                                              Data.Primitive.Array                           Data/Primitive/Array.hs:519:9-28                                                                                    0.0    0.0      0         0
mzipWith                                               Data.Primitive.Array                           Data/Primitive/Array.hs:517:3-44                                                                                    0.0    0.0      0         0
mzip                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:516:3-36                                                                                    0.0    0.0      0         0
mfix                                                   Data.Primitive.Array                           Data/Primitive/Array.hs:533:3-62                                                                                    0.0    0.0      0         0
mfix.l                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:533:16-36                                                                                   0.0    0.0      0         0
sconcat                                                Data.Primitive.Array                           Data/Primitive/Array.hs:538:3-30                                                                                    0.0    0.0      0         0
<>                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:537:3-14                                                                                    0.0    0.0      0         0
mconcat                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(546,3)-(551,40)                                                                            0.0    0.0      0         0
mconcat.\                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(547,5)-(550,14)                                                                            0.0    0.0      0         0
mconcat.\.go                                           Data.Primitive.Array                           Data/Primitive/Array.hs:(547,9)-(549,77)                                                                            0.0    0.0      0         0
mconcat.sz                                             Data.Primitive.Array                           Data/Primitive/Array.hs:551:10-40                                                                                   0.0    0.0      0         0
mempty                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:542:3-16                                                                                    0.0    0.0      0         0
showsPrec                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(554,3)-(556,24)                                                                            0.0    0.0      0         0
readsPrec                                              Data.Primitive.Array                           Data/Primitive/Array.hs:(559,3)-(565,26)                                                                            0.0    0.0      0         0
dataTypeOf                                             Data.Primitive.Array                           Data/Primitive/Array.hs:575:3-30                                                                                    0.0    0.0      0         0
toConstr                                               Data.Primitive.Array                           Data/Primitive/Array.hs:574:3-29                                                                                    0.0    0.0      0         0
gunfold                                                Data.Primitive.Array                           Data/Primitive/Array.hs:(576,3)-(578,24)                                                                            0.0    0.0      0         0
gfoldl                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:579:3-40                                                                                    0.0    0.0      0         0
==                                                     Data.Primitive.Array                           Data/Primitive/Array.hs:338:3-70                                                                                    0.0    0.0      0         0
dataTypeOf                                             Data.Primitive.Array                           Data/Primitive/Array.hs:584:3-64                                                                                    0.0    0.0      0         0
toConstr                                               Data.Primitive.Array                           Data/Primitive/Array.hs:582:3-31                                                                                    0.0    0.0      0         0
gunfold                                                Data.Primitive.Array                           Data/Primitive/Array.hs:583:3-31                                                                                    0.0    0.0      0         0
array#                                                 Data.Primitive.Array                           Data/Primitive/Array.hs:64:16-21                                                                                    0.0    0.0      0         0
marray#                                                Data.Primitive.Array                           Data/Primitive/Array.hs:73:25-31                                                                                    0.0    0.0      0         0
createArray                                            Data.Primitive.Array                           Data/Primitive/Array.hs:(323,1)-(327,22)                                                                            0.0    0.0      0         0
emptyArray                                             Data.Primitive.Array                           Data/Primitive/Array.hs:(314,1)-(315,74)                                                                            0.0    0.0      0         0
die                                                    Data.Primitive.Array                           Data/Primitive/Array.hs:330:1-75                                                                                    0.0    0.0      0         0
arrayDataType                                          Data.Primitive.Array                           Data/Primitive/Array.hs:568:1-72                                                                                    0.0    0.0      0         0
fromListConstr                                         Data.Primitive.Array                           Data/Primitive/Array.hs:571:1-60                                                                                    0.0    0.0      0         0
CAF:$fDataAddr3                                        Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_rGLT                                           Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_rGLU                                          Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_rGLW                                          Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_rGM1                                         Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataAddr5                                        Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataAddr6                                        Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataAddr7                                        Data.Primitive.Types                           <no location info>                                                                                                  0.0    0.0      0         0
/=                                                     Data.Primitive.Types                           Data/Primitive/Types.hs:56:3-46                                                                                     0.0    0.0      0         0
==                                                     Data.Primitive.Types                           Data/Primitive/Types.hs:55:3-46                                                                                     0.0    0.0      0         0
>=                                                     Data.Primitive.Types                           Data/Primitive/Types.hs:60:3-46                                                                                     0.0    0.0      0         0
>                                                      Data.Primitive.Types                           Data/Primitive/Types.hs:59:3-45                                                                                     0.0    0.0      0         0
<=                                                     Data.Primitive.Types                           Data/Primitive/Types.hs:62:3-46                                                                                     0.0    0.0      0         0
<                                                      Data.Primitive.Types                           Data/Primitive/Types.hs:61:3-45                                                                                     0.0    0.0      0         0
dataTypeOf                                             Data.Primitive.Types                           Data/Primitive/Types.hs:67:3-56                                                                                     0.0    0.0      0         0
toConstr                                               Data.Primitive.Types                           Data/Primitive/Types.hs:65:3-31                                                                                     0.0    0.0      0         0
gunfold                                                Data.Primitive.Types                           Data/Primitive/Types.hs:66:3-31                                                                                     0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:160:210-401                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:160:254-277                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:160:281-304                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:160:137-206                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:160:31-133                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:160:27-425                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:160:203-392                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:160:248-271                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:160:275-298                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:160:132-199                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:160:28-128                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:160:24-130                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:160:62-96                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:160:30-58                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:163:215-408                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:163:260-283                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:163:287-310                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:163:140-211                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:163:32-136                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:163:28-433                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:163:208-399                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:163:254-277                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:163:281-304                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:163:135-204                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:163:29-131                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:163:25-134                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:163:64-99                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:163:31-60                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:166:220-415                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:166:266-289                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:166:293-316                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:166:143-216                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:166:33-139                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:166:29-441                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:166:213-406                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:166:260-283                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:166:287-310                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:166:138-209                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:166:30-134                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:166:26-138                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:166:66-102                                                                                  0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:166:32-62                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:169:220-415                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:169:266-289                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:169:293-316                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:169:143-216                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:169:33-139                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:169:29-441                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:169:213-406                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:169:260-283                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:169:287-310                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:169:138-209                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:169:30-134                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:169:26-138                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:169:66-102                                                                                  0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:169:32-62                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:172:220-415                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:172:266-289                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:172:293-316                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:172:143-216                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:172:33-139                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:172:29-441                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:172:213-406                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:172:260-283                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:172:287-310                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:172:138-209                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:172:30-134                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:172:26-138                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:172:66-102                                                                                  0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:172:32-62                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:175:207-397                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:175:251-274                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:175:278-301                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:175:135-203                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:175:30-131                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:175:26-421                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:175:200-388                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:175:245-268                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:175:272-295                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:175:130-196                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:175:27-126                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:175:23-127                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:175:60-93                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:175:29-56                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:178:212-404                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:178:257-280                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:178:284-307                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:178:138-208                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:178:31-134                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:178:27-429                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:178:205-395                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:178:251-274                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:178:278-301                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:178:133-201                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:178:28-129                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:178:24-131                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:178:62-96                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:178:30-58                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:181:217-411                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:181:263-286                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:181:290-313                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:181:141-213                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:181:32-137                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:181:28-437                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:181:210-402                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:181:257-280                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:181:284-307                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:181:136-206                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:181:29-132                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:181:25-135                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:181:64-99                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:181:31-60                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:184:217-411                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:184:263-286                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:184:290-313                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:184:141-213                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:184:32-137                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:184:28-437                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:184:210-402                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:184:257-280                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:184:284-307                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:184:136-206                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:184:29-132                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:184:25-135                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:184:64-99                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:184:31-60                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:187:217-411                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:187:263-286                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:187:290-313                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:187:141-213                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:187:32-137                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:187:28-437                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:187:210-402                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:187:257-280                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:187:284-307                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:187:136-206                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:187:29-132                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:187:25-135                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:187:64-99                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:187:31-60                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:190:213-405                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:190:257-280                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:190:284-307                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:190:139-209                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:190:32-135                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:190:28-429                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:190:206-396                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:190:251-274                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:190:278-301                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:190:134-202                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:190:29-130                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:190:25-133                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:190:64-99                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:190:31-60                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:193:216-409                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:193:260-283                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:193:287-310                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:193:141-212                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:193:33-137                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:193:29-433                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:193:209-400                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:193:254-277                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:193:281-304                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:193:30-132                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:193:66-102                                                                                  0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:193:32-62                                                                                   0.0    0.0      0        16
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:196:222-417                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:196:266-289                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:196:293-316                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:196:145-218                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:196:35-141                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:196:31-441                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:196:215-408                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:196:260-283                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:196:287-310                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:196:140-211                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:196:32-136                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:196:28-130                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:196:62-96                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:196:30-58                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:199:214-407                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:199:260-283                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:199:287-310                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:199:139-210                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:199:31-135                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:199:27-433                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:199:207-398                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:199:254-277                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:199:281-304                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:199:134-203                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:199:28-130                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:199:24-130                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:199:61-94                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:199:30-57                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:202:212-404                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:202:257-280                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:202:284-307                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:202:138-208                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:202:31-134                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:202:27-429                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:202:205-395                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:202:251-274                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:202:278-301                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:202:133-201                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:202:28-129                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:202:24-130                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:202:62-95                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:202:31-58                                                                                   0.0    0.0      0         0
setOffAddr#                                            Data.Primitive.Types                           Data/Primitive/Types.hs:205:218-413                                                                                 0.0    0.0      0         0
setOffAddr#.i                                          Data.Primitive.Types                           Data/Primitive/Types.hs:205:266-289                                                                                 0.0    0.0      0         0
setOffAddr#.n                                          Data.Primitive.Types                           Data/Primitive/Types.hs:205:293-316                                                                                 0.0    0.0      0         0
writeOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:205:141-214                                                                                 0.0    0.0      0         0
readOffAddr#                                           Data.Primitive.Types                           Data/Primitive/Types.hs:205:31-137                                                                                  0.0    0.0      0         0
indexOffAddr#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:205:27-441                                                                                  0.0    0.0      0         0
setByteArray#                                          Data.Primitive.Types                           Data/Primitive/Types.hs:205:211-404                                                                                 0.0    0.0      0         0
setByteArray#.i                                        Data.Primitive.Types                           Data/Primitive/Types.hs:205:260-283                                                                                 0.0    0.0      0         0
setByteArray#.n                                        Data.Primitive.Types                           Data/Primitive/Types.hs:205:287-310                                                                                 0.0    0.0      0         0
writeByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:205:136-207                                                                                 0.0    0.0      0         0
readByteArray#                                         Data.Primitive.Types                           Data/Primitive/Types.hs:205:28-132                                                                                  0.0    0.0      0         0
indexByteArray#                                        Data.Primitive.Types                           Data/Primitive/Types.hs:205:24-136                                                                                  0.0    0.0      0         0
alignment#                                             Data.Primitive.Types                           Data/Primitive/Types.hs:205:65-98                                                                                   0.0    0.0      0         0
sizeOf#                                                Data.Primitive.Types                           Data/Primitive/Types.hs:205:34-61                                                                                   0.0    0.0      0         0
sizeOf                                                 Data.Primitive.Types                           Data/Primitive/Types.hs:114:1-25                                                                                    0.0    0.0      0         0
alignment                                              Data.Primitive.Types                           Data/Primitive/Types.hs:118:1-31                                                                                    0.0    0.0      0         0
unI#                                                   Data.Primitive.Types                           Data/Primitive/Types.hs:158:1-17                                                                                    0.0    0.0      0         0
CAF:sIZEOF_CHAR                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:68:1-11                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_CHAR                                     Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:69:1-14                                                                                  0.0    0.0      0         0
CAF:sIZEOF_INT                                         Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:71:1-10                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_INT                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:72:1-13                                                                                  0.0    0.0      0         0
CAF:sIZEOF_WORD                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:74:1-11                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_WORD                                     Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:75:1-14                                                                                  0.0    0.0      0         0
CAF:sIZEOF_DOUBLE                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:77:1-13                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_DOUBLE                                   Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:78:1-16                                                                                  0.0    0.0      0         0
CAF:sIZEOF_FLOAT                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:80:1-12                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_FLOAT                                    Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:81:1-15                                                                                  0.0    0.0      0         0
CAF:sIZEOF_PTR                                         Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:83:1-10                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_PTR                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:84:1-13                                                                                  0.0    0.0      0         0
CAF:sIZEOF_FUNPTR                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:86:1-13                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_FUNPTR                                   Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:87:1-16                                                                                  0.0    0.0      0         0
CAF:sIZEOF_STABLEPTR                                   Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:89:1-16                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_STABLEPTR                                Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:90:1-19                                                                                  0.0    0.0      0         0
CAF:sIZEOF_INT8                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:92:1-11                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_INT8                                     Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:93:1-14                                                                                  0.0    0.0      0         0
CAF:sIZEOF_WORD8                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:95:1-12                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_WORD8                                    Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:96:1-15                                                                                  0.0    0.0      0         0
CAF:sIZEOF_INT16                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:98:1-12                                                                                  0.0    0.0      0         0
CAF:aLIGNMENT_INT16                                    Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:99:1-15                                                                                  0.0    0.0      0         0
CAF:sIZEOF_WORD16                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:101:1-13                                                                                 0.0    0.0      0         0
CAF:aLIGNMENT_WORD16                                   Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:102:1-16                                                                                 0.0    0.0      0         0
CAF:sIZEOF_INT32                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:104:1-12                                                                                 0.0    0.0      0         0
CAF:aLIGNMENT_INT32                                    Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:105:1-15                                                                                 0.0    0.0      0         0
CAF:sIZEOF_WORD32                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:107:1-13                                                                                 0.0    0.0      0         0
CAF:aLIGNMENT_WORD32                                   Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:108:1-16                                                                                 0.0    0.0      0         0
CAF:sIZEOF_INT64                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:110:1-12                                                                                 0.0    0.0      0         0
CAF:aLIGNMENT_INT64                                    Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:111:1-15                                                                                 0.0    0.0      0         0
CAF:sIZEOF_WORD64                                      Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:113:1-13                                                                                 0.0    0.0      0         0
CAF:aLIGNMENT_WORD64                                   Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:114:1-16                                                                                 0.0    0.0      0         0
sIZEOF_CHAR                                            Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:68:1-15                                                                                  0.0    0.0      0         0
aLIGNMENT_CHAR                                         Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:69:1-18                                                                                  0.0    0.0      0         0
sIZEOF_INT                                             Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:71:1-14                                                                                  0.0    0.0      0         0
aLIGNMENT_INT                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:72:1-17                                                                                  0.0    0.0      0         0
sIZEOF_WORD                                            Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:74:1-15                                                                                  0.0    0.0      0         0
aLIGNMENT_WORD                                         Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:75:1-18                                                                                  0.0    0.0      0         0
sIZEOF_DOUBLE                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:77:1-17                                                                                  0.0    0.0      0         0
aLIGNMENT_DOUBLE                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:78:1-20                                                                                  0.0    0.0      0         0
sIZEOF_FLOAT                                           Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:80:1-16                                                                                  0.0    0.0      0         0
aLIGNMENT_FLOAT                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:81:1-19                                                                                  0.0    0.0      0         0
sIZEOF_PTR                                             Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:83:1-14                                                                                  0.0    0.0      0         0
aLIGNMENT_PTR                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:84:1-17                                                                                  0.0    0.0      0         0
sIZEOF_FUNPTR                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:86:1-17                                                                                  0.0    0.0      0         0
aLIGNMENT_FUNPTR                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:87:1-20                                                                                  0.0    0.0      0         0
sIZEOF_STABLEPTR                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:89:1-20                                                                                  0.0    0.0      0         0
aLIGNMENT_STABLEPTR                                    Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:90:1-23                                                                                  0.0    0.0      0         0
sIZEOF_INT8                                            Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:92:1-15                                                                                  0.0    0.0      0         0
aLIGNMENT_INT8                                         Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:93:1-18                                                                                  0.0    0.0      0         0
sIZEOF_WORD8                                           Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:95:1-16                                                                                  0.0    0.0      0         0
aLIGNMENT_WORD8                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:96:1-19                                                                                  0.0    0.0      0         0
sIZEOF_INT16                                           Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:98:1-16                                                                                  0.0    0.0      0         0
aLIGNMENT_INT16                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:99:1-19                                                                                  0.0    0.0      0         0
sIZEOF_WORD16                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:101:1-17                                                                                 0.0    0.0      0         0
aLIGNMENT_WORD16                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:102:1-20                                                                                 0.0    0.0      0         0
sIZEOF_INT32                                           Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:104:1-16                                                                                 0.0    0.0      0         0
aLIGNMENT_INT32                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:105:1-19                                                                                 0.0    0.0      0         0
sIZEOF_WORD32                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:107:1-17                                                                                 0.0    0.0      0         0
aLIGNMENT_WORD32                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:108:1-20                                                                                 0.0    0.0      0         0
sIZEOF_INT64                                           Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:110:1-16                                                                                 0.0    0.0      0         0
aLIGNMENT_INT64                                        Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:111:1-19                                                                                 0.0    0.0      0         0
sIZEOF_WORD64                                          Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:113:1-17                                                                                 0.0    0.0      0         0
aLIGNMENT_WORD64                                       Data.Primitive.MachDeps                        Data/Primitive/MachDeps.hs:114:1-20                                                                                 0.0    0.0      0         0
CAF:$fPrimMonadIO1_r3Ot                                Control.Monad.Primitive                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fPrimMonadST1_r3Ox                                Control.Monad.Primitive                        <no location info>                                                                                                  0.0    0.0      0        16
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:94:3-16                                                                                  0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:102:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:106:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:113:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:117:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:121:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:125:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:129:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:133:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:137:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:143:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:155:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:159:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:165:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:169:3-30                                                                                 0.0    0.0      0         0
primitive                                              Control.Monad.Primitive                        Control/Monad/Primitive.hs:173:3-30                                                                                 0.0    0.0      0         0
internal                                               Control.Monad.Primitive                        Control/Monad/Primitive.hs:97:3-21                                                                                  0.0    0.0      0         0
internal                                               Control.Monad.Primitive                        Control/Monad/Primitive.hs:109:3-37                                                                                 0.0    0.0      0         0
internal                                               Control.Monad.Primitive                        Control/Monad/Primitive.hs:181:3-21                                                                                 0.0    0.0      0         0
evalPrim                                               Control.Monad.Primitive                        Control/Monad/Primitive.hs:266:1-39                                                                                 0.0    0.0      0         0
evalPrim.\                                             Control.Monad.Primitive                        Control/Monad/Primitive.hs:266:31-38                                                                                0.0    0.0      0         0
CAF:loc_r3VE                                           Utils                                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r3VF                                          Utils                                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_r3VH                                          Utils                                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r3VM                                         Utils                                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:base_r3VP                                          Utils                                          src/Utils.hs:19:3-6                                                                                                 0.0    0.0      0         0
CAF:b2_r3VQ                                            Utils                                          src/Utils.hs:21:3-4                                                                                                 0.0    0.0      0         0
CAF:roundTo2                                           Utils                                          <no location info>                                                                                                  0.0    0.0      0         0
roundTo                                                Utils                                          src/Utils.hs:(13,1)-(31,21)                                                                                         0.0    0.0      0         0
roundTo.f                                              Utils                                          src/Utils.hs:(23,3)-(31,21)                                                                                         0.0    0.0      0         0
roundTo.f.i'                                           Utils                                          src/Utils.hs:31:8-21                                                                                                0.0    0.0      0         0
roundTo.f.ds                                           Utils                                          src/Utils.hs:30:8-35                                                                                                0.0    0.0      0         0
roundTo.f.c                                            Utils                                          src/Utils.hs:30:8-35                                                                                                0.0    0.0      0         0
roundTo.f.(...)                                        Utils                                          src/Utils.hs:30:8-35                                                                                                0.0    0.0      0         0
roundTo.b2                                             Utils                                          src/Utils.hs:21:3-20                                                                                                0.0    0.0      0         0
roundTo.base                                           Utils                                          src/Utils.hs:19:3-11                                                                                                0.0    0.0      0         0
CAF:unsafeFromRational1                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl_rp2b                                           Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_rp2g                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc4_rp2l                                          Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc5_rp2m                                          Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc6_rp2n                                          Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl4_rp2q                                          Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFractionalScientific1                            Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl6_rp2y                                          Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl9_rp2B                                          Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_rp2E                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl14_rp2G                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl15_rp2H                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP6_rp2J                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl17_rp2P                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl18_rp2T                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl19_rp2X                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat4                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat_radix                           Data.Scientific                                src/Data/Scientific.hs:778:5-9                                                                                      0.0    0.0      0         0
CAF:toBoundedRealFloat_log10Radix                      Data.Scientific                                src/Data/Scientific.hs:776:5-14                                                                                     0.0    0.0      0         0
CAF:toBoundedRealFloat_digits                          Data.Scientific                                src/Data/Scientific.hs:779:5-10                                                                                     0.0    0.0      0         0
CAF:toBoundedRealFloat7                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat_lo                              Data.Scientific                                src/Data/Scientific.hs:780:6-7                                                                                      0.0    0.0      0         0
CAF:toBoundedRealFloat_loLimit                         Data.Scientific                                src/Data/Scientific.hs:772:5-11                                                                                     0.0    0.0      0         0
CAF:toBoundedRealFloat_hi                              Data.Scientific                                src/Data/Scientific.hs:780:10-11                                                                                    0.0    0.0      0         0
CAF:toBoundedRealFloat6                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat12                               Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat_digits1                         Data.Scientific                                src/Data/Scientific.hs:779:5-10                                                                                     0.0    0.0      0         0
CAF:toBoundedRealFloat14                               Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat_lo1                             Data.Scientific                                src/Data/Scientific.hs:780:6-7                                                                                      0.0    0.0      0         0
CAF:toBoundedRealFloat_loLimit1                        Data.Scientific                                src/Data/Scientific.hs:772:5-11                                                                                     0.0    0.0      0         0
CAF:toBoundedRealFloat_hi1                             Data.Scientific                                src/Data/Scientific.hs:780:10-11                                                                                    0.0    0.0      0         0
CAF:toBoundedRealFloat13                               Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMinBound                         Data.Scientific                                src/Data/Scientific.hs:819:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_x                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound                         Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger2                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound1                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y1                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger4                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound2                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y2                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger6                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound3                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y3                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger8                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMinBound1                        Data.Scientific                                src/Data/Scientific.hs:819:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_x1                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound4                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y4                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger11                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMinBound2                        Data.Scientific                                src/Data/Scientific.hs:819:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_x2                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound5                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y5                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger13                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMinBound3                        Data.Scientific                                src/Data/Scientific.hs:819:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_x3                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound6                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y6                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger15                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMinBound4                        Data.Scientific                                src/Data/Scientific.hs:819:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_x4                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger_iMaxBound7                        Data.Scientific                                src/Data/Scientific.hs:820:5-13                                                                                     0.0    0.0      0         0
CAF:toBoundedInteger_y7                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger17                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:isFloating                                         Data.Scientific                                src/Data/Scientific.hs:871:1-10                                                                                     0.0    0.0      0         0
CAF:$fHashableScientific_$chash                        Data.Scientific                                src/Data/Scientific.hs:187:10-28                                                                                    0.0    0.0      0         0
CAF:$fReadScientific9                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_rp30                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:fromFloatDigits1                                   Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowScientific3                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowScientific8                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl24_rp37                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadScientific8                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadScientific6                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientificP                                        Data.Scientific                                src/Data/Scientific.hs:916:1-11                                                                                     0.0    0.0      0         0
CAF:$fReadScientific4                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadScientific2                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toRationalRepetend1                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toRationalRepetend2                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl27_rp3j                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataScientific7                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataScientific5                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl31_rp3t                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl32_rp3u                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$tScientific                                       Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
CAF:$cScientific                                       Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
CAF:$cScientific2_rp3z                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:maxExpt                                            Data.Scientific                                src/Data/Scientific.hs:660:1-7                                                                                      0.0    0.0      0         0
CAF:limit                                              Data.Scientific                                src/Data/Scientific.hs:634:1-5                                                                                      0.0    0.0      0         0
CAF:lvl36_rp3F                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:expts10                                            Data.Scientific                                src/Data/Scientific.hs:663:1-7                                                                                      0.0    0.0      0         0
CAF:$fFractionalScientific_cachedPow10                 Data.Scientific                                src/Data/Scientific.hs:691:7-17                                                                                     0.0    0.0      0         0
CAF:$fFractionalScientific_hi                          Data.Scientific                                src/Data/Scientific.hs:693:7-8                                                                                      0.0    0.0      0         0
CAF:$fFractionalScientific3                            Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFractionalScientific2                            Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger18                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger16                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger14                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger12                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger10                                 Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger9                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger7                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger5                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger3                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedInteger1                                  Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat15                               Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat11                               Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toRealFloat_$stoRealFloat1                         Data.Scientific                                src/Data/Scientific.hs:744:1-11                                                                                     0.0    0.0      0         0
CAF:toBoundedRealFloat8                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toBoundedRealFloat3                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:toRealFloat_$stoRealFloat                          Data.Scientific                                src/Data/Scientific.hs:744:1-11                                                                                     0.0    0.0      0         0
CAF:$fRealFracScientific1                              Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientific                                         Data.Scientific                                src/Data/Scientific.hs:174:1-10                                                                                     0.0    0.0      0         0
CAF:lvl42_rp3L                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fBinaryScientific1                                Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFractionalScientific_$crecip                     Data.Scientific                                src/Data/Scientific.hs:302:5-9                                                                                      0.0    0.0      0         0
CAF:lvl46_rp3Q                                         Data.Scientific                                <no location info>                                                                                                  0.0    0.0      0         0
rnf                                                    Data.Scientific                                src/Data/Scientific.hs:182:5-29                                                                                     0.0    0.0      0         0
hashWithSalt                                           Data.Scientific                                src/Data/Scientific.hs:(188,5)-(190,36)                                                                             0.0    0.0      0         0
hashWithSalt.e                                         Data.Scientific                                src/Data/Scientific.hs:190:9-36                                                                                     0.0    0.0      0         0
hashWithSalt.c                                         Data.Scientific                                src/Data/Scientific.hs:190:9-36                                                                                     0.0    0.0      0         0
hashWithSalt.(...)                                     Data.Scientific                                src/Data/Scientific.hs:190:9-36                                                                                     0.0    0.0      0         0
get                                                    Data.Scientific                                src/Data/Scientific.hs:197:5-54                                                                                     0.0    0.0      0         0
put                                                    Data.Scientific                                src/Data/Scientific.hs:196:5-53                                                                                     0.0    0.0      0         0
==                                                     Data.Scientific                                src/Data/Scientific.hs:(203,5)-(206,39)                                                                             0.0    0.0      0         0
==.e1                                                  Data.Scientific                                src/Data/Scientific.hs:205:9-39                                                                                     0.0    0.0      0         0
==.c1                                                  Data.Scientific                                src/Data/Scientific.hs:205:9-39                                                                                     0.0    0.0      0         0
==.(...)                                               Data.Scientific                                src/Data/Scientific.hs:205:9-39                                                                                     0.0    0.0      0         0
==.e2                                                  Data.Scientific                                src/Data/Scientific.hs:206:9-39                                                                                     0.0    0.0      0         0
==.c2                                                  Data.Scientific                                src/Data/Scientific.hs:206:9-39                                                                                     0.0    0.0      0         0
==.(...)                                               Data.Scientific                                src/Data/Scientific.hs:206:9-39                                                                                     0.0    0.0      0         0
compare                                                Data.Scientific                                src/Data/Scientific.hs:(212,5)-(234,33)                                                                             0.0    0.0      0         0
compare.e1                                             Data.Scientific                                src/Data/Scientific.hs:218:9-39                                                                                     0.0    0.0      0         0
compare.c1                                             Data.Scientific                                src/Data/Scientific.hs:218:9-39                                                                                     0.0    0.0      0         0
compare.(...)                                          Data.Scientific                                src/Data/Scientific.hs:218:9-39                                                                                     0.0    0.0      0         0
compare.e2                                             Data.Scientific                                src/Data/Scientific.hs:219:9-39                                                                                     0.0    0.0      0         0
compare.c2                                             Data.Scientific                                src/Data/Scientific.hs:219:9-39                                                                                     0.0    0.0      0         0
compare.(...)                                          Data.Scientific                                src/Data/Scientific.hs:219:9-39                                                                                     0.0    0.0      0         0
compare.cmp                                            Data.Scientific                                src/Data/Scientific.hs:(221,9)-(234,33)                                                                             0.0    0.0      0         0
compare.cmp.log10sx                                    Data.Scientific                                src/Data/Scientific.hs:228:13-34                                                                                    0.0    0.0      0         0
compare.cmp.log10sy                                    Data.Scientific                                src/Data/Scientific.hs:229:13-34                                                                                    0.0    0.0      0         0
compare.cmp.d                                          Data.Scientific                                src/Data/Scientific.hs:234:13-33                                                                                    0.0    0.0      0         0
compare.cmp.log10cx                                    Data.Scientific                                src/Data/Scientific.hs:231:13-38                                                                                    0.0    0.0      0         0
compare.cmp.log10cy                                    Data.Scientific                                src/Data/Scientific.hs:232:13-38                                                                                    0.0    0.0      0         0
fromInteger                                            Data.Scientific                                src/Data/Scientific.hs:271:5-34                                                                                     0.0    0.0      0         0
signum                                                 Data.Scientific                                src/Data/Scientific.hs:268:5-53                                                                                     0.0    0.0      0         0
abs                                                    Data.Scientific                                src/Data/Scientific.hs:262:5-47                                                                                     0.0    0.0      0         0
negate                                                 Data.Scientific                                src/Data/Scientific.hs:265:5-53                                                                                     0.0    0.0      0         0
*                                                      Data.Scientific                                src/Data/Scientific.hs:(258,5)-(259,38)                                                                             0.0    0.0      0         0
-                                                      Data.Scientific                                src/Data/Scientific.hs:(250,5)-(255,34)                                                                             0.0    0.0      0         0
-.l                                                    Data.Scientific                                src/Data/Scientific.hs:254:12-34                                                                                    0.0    0.0      0         0
-.r                                                    Data.Scientific                                src/Data/Scientific.hs:255:12-34                                                                                    0.0    0.0      0         0
+                                                      Data.Scientific                                src/Data/Scientific.hs:(242,5)-(247,34)                                                                             0.0    0.0      0         0
+.l                                                    Data.Scientific                                src/Data/Scientific.hs:246:12-34                                                                                    0.0    0.0      0         0
+.r                                                    Data.Scientific                                src/Data/Scientific.hs:247:12-34                                                                                    0.0    0.0      0         0
toRational                                             Data.Scientific                                src/Data/Scientific.hs:(282,5)-(284,43)                                                                             0.0    0.0      0         0
fromRational                                           Data.Scientific                                src/Data/Scientific.hs:(308,5)-(317,66)                                                                             0.0    0.0      0         0
fromRational.mbRepetendIx                              Data.Scientific                                src/Data/Scientific.hs:317:9-66                                                                                     0.0    0.0      0         0
fromRational.s                                         Data.Scientific                                src/Data/Scientific.hs:317:9-66                                                                                     0.0    0.0      0         0
fromRational.(...)                                     Data.Scientific                                src/Data/Scientific.hs:317:9-66                                                                                     0.0    0.0      0         0
recip                                                  Data.Scientific                                src/Data/Scientific.hs:302:5-45                                                                                     0.0    0.0      0         0
/                                                      Data.Scientific                                src/Data/Scientific.hs:305:5-54                                                                                     0.0    0.0      0         0
floor                                                  Data.Scientific                                src/Data/Scientific.hs:(580,5)-(585,62)                                                                             0.0    0.0      0         0
floor.\                                                Data.Scientific                                src/Data/Scientific.hs:(581,15)-(585,62)                                                                            0.0    0.0      0         0
ceiling                                                Data.Scientific                                src/Data/Scientific.hs:(569,5)-(576,66)                                                                             0.0    0.0      0         0
ceiling.\                                              Data.Scientific                                src/Data/Scientific.hs:(570,17)-(576,66)                                                                            0.0    0.0      0         0
round                                                  Data.Scientific                                src/Data/Scientific.hs:(553,5)-(565,67)                                                                             0.0    0.0      0         0
round.\                                                Data.Scientific                                src/Data/Scientific.hs:(554,15)-(565,67)                                                                            0.0    0.0      0         0
round.\.f                                              Data.Scientific                                src/Data/Scientific.hs:560:24-41                                                                                    0.0    0.0      0         0
round.\.m                                              Data.Scientific                                src/Data/Scientific.hs:(558,24)-(559,44)                                                                            0.0    0.0      0         0
round.\.n                                              Data.Scientific                                src/Data/Scientific.hs:557:24-40                                                                                    0.0    0.0      0         0
round.\.r                                              Data.Scientific                                src/Data/Scientific.hs:556:24-67                                                                                    0.0    0.0      0         0
round.\.q                                              Data.Scientific                                src/Data/Scientific.hs:556:24-67                                                                                    0.0    0.0      0         0
round.\.(...)                                          Data.Scientific                                src/Data/Scientific.hs:556:24-67                                                                                    0.0    0.0      0         0
truncate                                               Data.Scientific                                src/Data/Scientific.hs:(545,5)-(548,66)                                                                             0.0    0.0      0         0
truncate.\                                             Data.Scientific                                src/Data/Scientific.hs:(546,18)-(548,66)                                                                            0.0    0.0      0         0
properFraction                                         Data.Scientific                                src/Data/Scientific.hs:(535,5)-(540,39)                                                                             0.0    0.0      0         0
readPrec                                               Data.Scientific                                src/Data/Scientific.hs:895:5-76                                                                                     0.0    0.0      0         0
show                                                   Data.Scientific                                src/Data/Scientific.hs:(982,5)-(991,46)                                                                             0.0    0.0      0         0
show.showPositive                                      Data.Scientific                                src/Data/Scientific.hs:986:9-53                                                                                     0.0    0.0      0         0
show.fmtAsGeneric                                      Data.Scientific                                src/Data/Scientific.hs:(989,9)-(991,46)                                                                             0.0    0.0      0         0
dataTypeOf                                             Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
toConstr                                               Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
gunfold                                                Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
gfoldl                                                 Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
base10Exponent                                         Data.Scientific                                src/Data/Scientific.hs:167:7-20                                                                                     0.0    0.0      0         0
coefficient                                            Data.Scientific                                src/Data/Scientific.hs:156:7-17                                                                                     0.0    0.0      0         0
scientific                                             Data.Scientific                                src/Data/Scientific.hs:174:1-23                                                                                     0.0    0.0      0         0
unsafeFromRational                                     Data.Scientific                                src/Data/Scientific.hs:(329,1)-(342,28)                                                                             0.0    0.0      0         0
unsafeFromRational.longDiv                             Data.Scientific                                src/Data/Scientific.hs:(335,5)-(340,55)                                                                             0.0    0.0      0         0
unsafeFromRational.d                                   Data.Scientific                                src/Data/Scientific.hs:342:5-28                                                                                     0.0    0.0      0         0
fromRationalRepetend                                   Data.Scientific                                src/Data/Scientific.hs:(388,1)-(391,55)                                                                             0.0    0.0      0         0
fromRationalRepetendLimited                            Data.Scientific                                src/Data/Scientific.hs:(399,1)-(426,32)                                                                             0.0    0.0      0         0
fromRationalRepetendLimited.num                        Data.Scientific                                src/Data/Scientific.hs:406:9-32                                                                                     0.0    0.0      0         0
fromRationalRepetendLimited.longDiv                    Data.Scientific                                src/Data/Scientific.hs:409:9-46                                                                                     0.0    0.0      0         0
fromRationalRepetendLimited.longDivWithLimit           Data.Scientific                                src/Data/Scientific.hs:(417,9)-(424,71)                                                                             0.0    0.0      0         0
fromRationalRepetendLimited.longDivWithLimit.ns'       Data.Scientific                                src/Data/Scientific.hs:421:27-48                                                                                    0.0    0.0      0         0
fromRationalRepetendLimited.d                          Data.Scientific                                src/Data/Scientific.hs:426:9-32                                                                                     0.0    0.0      0         0
fromRationalRepetendUnlimited                          Data.Scientific                                src/Data/Scientific.hs:(430,1)-(453,32)                                                                             0.0    0.0      0         0
fromRationalRepetendUnlimited.num                      Data.Scientific                                src/Data/Scientific.hs:436:9-32                                                                                     0.0    0.0      0         0
fromRationalRepetendUnlimited.longDiv                  Data.Scientific                                src/Data/Scientific.hs:439:9-44                                                                                     0.0    0.0      0         0
fromRationalRepetendUnlimited.longDivNoLimit           Data.Scientific                                src/Data/Scientific.hs:(445,9)-(451,69)                                                                             0.0    0.0      0         0
fromRationalRepetendUnlimited.longDivNoLimit.ns'       Data.Scientific                                src/Data/Scientific.hs:448:31-52                                                                                    0.0    0.0      0         0
fromRationalRepetendUnlimited.d                        Data.Scientific                                src/Data/Scientific.hs:453:9-32                                                                                     0.0    0.0      0         0
toRationalRepetend                                     Data.Scientific                                src/Data/Scientific.hs:(502,1)-(521,17)                                                                             0.0    0.0      0         0
toRationalRepetend.repetend                            Data.Scientific                                src/Data/Scientific.hs:519:5-52                                                                                     0.0    0.0      0         0
toRationalRepetend.nonRepetend                         Data.Scientific                                src/Data/Scientific.hs:519:5-52                                                                                     0.0    0.0      0         0
toRationalRepetend.(...)                               Data.Scientific                                src/Data/Scientific.hs:519:5-52                                                                                     0.0    0.0      0         0
toRationalRepetend.c                                   Data.Scientific                                src/Data/Scientific.hs:508:5-22                                                                                     0.0    0.0      0         0
toRationalRepetend.nines                               Data.Scientific                                src/Data/Scientific.hs:521:5-17                                                                                     0.0    0.0      0         0
toRationalRepetend.m                                   Data.Scientific                                src/Data/Scientific.hs:517:5-19                                                                                     0.0    0.0      0         0
toRationalRepetend.n                                   Data.Scientific                                src/Data/Scientific.hs:515:5-13                                                                                     0.0    0.0      0         0
toRationalRepetend.f                                   Data.Scientific                                src/Data/Scientific.hs:512:5-12                                                                                     0.0    0.0      0         0
toRationalRepetend.e                                   Data.Scientific                                src/Data/Scientific.hs:509:5-25                                                                                     0.0    0.0      0         0
toBoundedInteger                                       Data.Scientific                                src/Data/Scientific.hs:(795,1)-(825,21)                                                                             0.0    0.0      0         0
toBoundedInteger.c                                     Data.Scientific                                src/Data/Scientific.hs:802:5-21                                                                                     0.0    0.0      0         0
toBoundedInteger.integral                              Data.Scientific                                src/Data/Scientific.hs:804:5-32                                                                                     0.0    0.0      0         0
toBoundedInteger.dangerouslyBig                        Data.Scientific                                src/Data/Scientific.hs:(811,5)-(812,76)                                                                             0.0    0.0      0         0
toBoundedInteger.e                                     Data.Scientific                                src/Data/Scientific.hs:806:5-25                                                                                     0.0    0.0      0         0
toBoundedInteger.e'                                    Data.Scientific                                src/Data/Scientific.hs:807:5-26                                                                                     0.0    0.0      0         0
toBoundedInteger.n                                     Data.Scientific                                src/Data/Scientific.hs:825:5-21                                                                                     0.0    0.0      0         0
toBoundedInteger.s'                                    Data.Scientific                                src/Data/Scientific.hs:809:5-20                                                                                     0.0    0.0      0         0
toBoundedInteger.fromIntegerBounded                    Data.Scientific                                src/Data/Scientific.hs:(815,5)-(817,63)                                                                             0.0    0.0      0         0
toBoundedInteger.iMinBound                             Data.Scientific                                src/Data/Scientific.hs:819:5-41                                                                                     0.0    0.0      0         0
toBoundedInteger.iMaxBound                             Data.Scientific                                src/Data/Scientific.hs:820:5-41                                                                                     0.0    0.0      0         0
floatingOrInteger                                      Data.Scientific                                src/Data/Scientific.hs:(855,1)-(860,20)                                                                             0.0    0.0      0         0
floatingOrInteger.s'                                   Data.Scientific                                src/Data/Scientific.hs:860:5-20                                                                                     0.0    0.0      0         0
toRealFloat                                            Data.Scientific                                src/Data/Scientific.hs:744:1-47                                                                                     0.0    0.0      0         0
toBoundedRealFloat                                     Data.Scientific                                src/Data/Scientific.hs:(758,1)-(785,27)                                                                             0.0    0.0      0         0
toBoundedRealFloat.hiLimit                             Data.Scientific                                src/Data/Scientific.hs:771:5-56                                                                                     0.0    0.0      0         0
toBoundedRealFloat.loLimit                             Data.Scientific                                src/Data/Scientific.hs:(772,5)-(773,56)                                                                             0.0    0.0      0         0
toBoundedRealFloat.log10Radix                          Data.Scientific                                src/Data/Scientific.hs:776:5-47                                                                                     0.0    0.0      0         0
toBoundedRealFloat.radix                               Data.Scientific                                src/Data/Scientific.hs:778:5-43                                                                                     0.0    0.0      0         0
toBoundedRealFloat.digits                              Data.Scientific                                src/Data/Scientific.hs:779:5-43                                                                                     0.0    0.0      0         0
toBoundedRealFloat.hi                                  Data.Scientific                                src/Data/Scientific.hs:780:5-43                                                                                     0.0    0.0      0         0
toBoundedRealFloat.lo                                  Data.Scientific                                src/Data/Scientific.hs:780:5-43                                                                                     0.0    0.0      0         0
toBoundedRealFloat.(...)                               Data.Scientific                                src/Data/Scientific.hs:780:5-43                                                                                     0.0    0.0      0         0
toBoundedRealFloat.d                                   Data.Scientific                                src/Data/Scientific.hs:782:5-29                                                                                     0.0    0.0      0         0
toBoundedRealFloat.sign                                Data.Scientific                                src/Data/Scientific.hs:(784,5)-(785,27)                                                                             0.0    0.0      0         0
limit                                                  Data.Scientific                                src/Data/Scientific.hs:634:1-15                                                                                     0.0    0.0      0         0
fromFloatDigits                                        Data.Scientific                                src/Data/Scientific.hs:(715,1)-(724,64)                                                                             0.0    0.0      0         0
fromFloatDigits.fromPositiveRealFloat                  Data.Scientific                                src/Data/Scientific.hs:(718,7)-(724,64)                                                                             0.0    0.0      0         0
fromFloatDigits.fromPositiveRealFloat.go               Data.Scientific                                src/Data/Scientific.hs:(723,11)-(724,64)                                                                            0.0    0.0      0         0
fromFloatDigits.fromPositiveRealFloat.e                Data.Scientific                                src/Data/Scientific.hs:720:11-50                                                                                    0.0    0.0      0         0
fromFloatDigits.fromPositiveRealFloat.digits           Data.Scientific                                src/Data/Scientific.hs:720:11-50                                                                                    0.0    0.0      0         0
fromFloatDigits.fromPositiveRealFloat.(...)            Data.Scientific                                src/Data/Scientific.hs:720:11-50                                                                                    0.0    0.0      0         0
magnitude                                              Data.Scientific                                src/Data/Scientific.hs:(688,1)-(693,22)                                                                             0.0    0.0      0         0
magnitude.cachedPow10                                  Data.Scientific                                src/Data/Scientific.hs:691:7-62                                                                                     0.0    0.0      0         0
magnitude.hi                                           Data.Scientific                                src/Data/Scientific.hs:693:7-22                                                                                     0.0    0.0      0         0
expts10                                                Data.Scientific                                src/Data/Scientific.hs:(663,1)-(681,8)                                                                              0.0    0.0      0         0
expts10.go                                             Data.Scientific                                src/Data/Scientific.hs:(667,9)-(677,39)                                                                             0.0    0.0      0         0
expts10.go.xx                                          Data.Scientific                                src/Data/Scientific.hs:674:13-22                                                                                    0.0    0.0      0         0
expts10.go.x                                           Data.Scientific                                src/Data/Scientific.hs:675:13-50                                                                                    0.0    0.0      0         0
expts10.go.half                                        Data.Scientific                                src/Data/Scientific.hs:677:13-39                                                                                    0.0    0.0      0         0
maxExpt                                                Data.Scientific                                src/Data/Scientific.hs:660:1-13                                                                                     0.0    0.0      0         0
uninitialised                                          Data.Scientific                                src/Data/Scientific.hs:684:1-62                                                                                     0.0    0.0      0         0
isFloating                                             Data.Scientific                                src/Data/Scientific.hs:871:1-28                                                                                     0.0    0.0      0         0
isInteger                                              Data.Scientific                                src/Data/Scientific.hs:(877,1)-(880,20)                                                                             0.0    0.0      0         0
isInteger.s'                                           Data.Scientific                                src/Data/Scientific.hs:880:5-20                                                                                     0.0    0.0      0         0
scientificP                                            Data.Scientific                                src/Data/Scientific.hs:(916,1)-(944,45)                                                                             0.0    0.0      0         0
scientificP.signedCoeff                                Data.Scientific                                src/Data/Scientific.hs:(933,7)-(934,40)                                                                             0.0    0.0      0         0
scientificP.eP                                         Data.Scientific                                src/Data/Scientific.hs:(936,7)-(940,32)                                                                             0.0    0.0      0         0
scientificP.fractional                                 Data.Scientific                                src/Data/Scientific.hs:(927,7)-(928,59)                                                                             0.0    0.0      0         0
scientificP.fractional.\                               Data.Scientific                                src/Data/Scientific.hs:928:34-56                                                                                    0.0    0.0      0         0
scientificP.s                                          Data.Scientific                                src/Data/Scientific.hs:926:7-16                                                                                     0.0    0.0      0         0
scientificP.positive                                   Data.Scientific                                src/Data/Scientific.hs:917:7-72                                                                                     0.0    0.0      0         0
foldDigits                                             Data.Scientific                                src/Data/Scientific.hs:(948,1)-(961,30)                                                                             0.0    0.0      0         0
foldDigits.a                                           Data.Scientific                                src/Data/Scientific.hs:951:9-21                                                                                     0.0    0.0      0         0
foldDigits.digit                                       Data.Scientific                                src/Data/Scientific.hs:950:9-26                                                                                     0.0    0.0      0         0
foldDigits.go                                          Data.Scientific                                src/Data/Scientific.hs:(955,5)-(961,30)                                                                             0.0    0.0      0         0
foldDigits.go.digit                                    Data.Scientific                                src/Data/Scientific.hs:959:17-34                                                                                    0.0    0.0      0         0
formatScientific                                       Data.Scientific                                src/Data/Scientific.hs:(1026,1)-(1079,50)                                                                           0.0    0.0      0         0
formatScientific.formatPositiveScientific              Data.Scientific                                src/Data/Scientific.hs:(1031,5)-(1034,60)                                                                           0.0    0.0      0         0
formatScientific.fmtAsGeneric                          Data.Scientific                                src/Data/Scientific.hs:(1037,5)-(1039,45)                                                                           0.0    0.0      0         0
formatScientific.fmtAsExponentMbDecs                   Data.Scientific                                src/Data/Scientific.hs:(1042,5)-(1044,65)                                                                           0.0    0.0      0         0
formatScientific.fmtAsFixedMbDecs                      Data.Scientific                                src/Data/Scientific.hs:(1047,5)-(1049,59)                                                                           0.0    0.0      0         0
formatScientific.fmtAsExponentDecs                     Data.Scientific                                src/Data/Scientific.hs:(1052,5)-(1061,44)                                                                           0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.ds'                 Data.Scientific                                src/Data/Scientific.hs:1059:16-74                                                                                   0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.d                   Data.Scientific                                src/Data/Scientific.hs:1059:16-74                                                                                   0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.(...)               Data.Scientific                                src/Data/Scientific.hs:1059:16-74                                                                                   0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.is'                 Data.Scientific                                src/Data/Scientific.hs:1058:16-45                                                                                   0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.ei                  Data.Scientific                                src/Data/Scientific.hs:1058:16-45                                                                                   0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.(...)               Data.Scientific                                src/Data/Scientific.hs:1058:16-45                                                                                   0.0    0.0      0         0
formatScientific.fmtAsExponentDecs.dec'                Data.Scientific                                src/Data/Scientific.hs:1053:13-28                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs                        Data.Scientific                                src/Data/Scientific.hs:(1064,5)-(1079,50)                                                                           0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.ds'                    Data.Scientific                                src/Data/Scientific.hs:1075:11-64                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.d                      Data.Scientific                                src/Data/Scientific.hs:1075:11-64                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.(...)                  Data.Scientific                                src/Data/Scientific.hs:1075:11-64                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.is'                    Data.Scientific                                src/Data/Scientific.hs:1074:11-58                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.ei                     Data.Scientific                                src/Data/Scientific.hs:1074:11-58                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.(...)                  Data.Scientific                                src/Data/Scientific.hs:1074:11-58                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.rs                     Data.Scientific                                src/Data/Scientific.hs:1069:11-56                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.ls                     Data.Scientific                                src/Data/Scientific.hs:1069:11-56                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.(...)                  Data.Scientific                                src/Data/Scientific.hs:1069:11-56                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.is'                    Data.Scientific                                src/Data/Scientific.hs:1068:11-42                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.ei                     Data.Scientific                                src/Data/Scientific.hs:1068:11-42                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.(...)                  Data.Scientific                                src/Data/Scientific.hs:1068:11-42                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.dec'                   Data.Scientific                                src/Data/Scientific.hs:1065:13-28                                                                                   0.0    0.0      0         0
formatScientific.fmtAsFixedDecs.mk0                    Data.Scientific                                src/Data/Scientific.hs:1079:9-50                                                                                    0.0    0.0      0         0
fmtAsExponent                                          Data.Scientific                                src/Data/Scientific.hs:(994,1)-(1003,26)                                                                            0.0    0.0      0         0
fmtAsExponent.show_e'                                  Data.Scientific                                src/Data/Scientific.hs:1001:5-24                                                                                    0.0    0.0      0         0
fmtAsExponent.ds                                       Data.Scientific                                src/Data/Scientific.hs:1003:5-26                                                                                    0.0    0.0      0         0
fmtAsFixed                                             Data.Scientific                                src/Data/Scientific.hs:(1006,1)-(1019,26)                                                                           0.0    0.0      0         0
fmtAsFixed.f                                           Data.Scientific                                src/Data/Scientific.hs:(1010,12)-(1012,42)                                                                          0.0    0.0      0         0
fmtAsFixed.mk0                                         Data.Scientific                                src/Data/Scientific.hs:(1016,5)-(1017,15)                                                                           0.0    0.0      0         0
fmtAsFixed.ds                                          Data.Scientific                                src/Data/Scientific.hs:1019:5-26                                                                                    0.0    0.0      0         0
toDecimalDigits                                        Data.Scientific                                src/Data/Scientific.hs:(1099,1)-(1109,48)                                                                           0.0    0.0      0         0
toDecimalDigits.go                                     Data.Scientific                                src/Data/Scientific.hs:(1105,11)-(1109,48)                                                                          0.0    0.0      0         0
toDecimalDigits.go.d                                   Data.Scientific                                src/Data/Scientific.hs:1109:30-48                                                                                   0.0    0.0      0         0
toDecimalDigits.go.ne                                  Data.Scientific                                src/Data/Scientific.hs:1105:39-49                                                                                   0.0    0.0      0         0
normalize                                              Data.Scientific                                src/Data/Scientific.hs:(1122,1)-(1125,45)                                                                           0.0    0.0      0         0
normalizePositive                                      Data.Scientific                                src/Data/Scientific.hs:(1128,1)-(1131,61)                                                                           0.0    0.0      0         0
$tScientific                                           Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
$cScientific                                           Data.Scientific                                src/Data/Scientific.hs:169:27-30                                                                                    0.0    0.0      0         0
CAF:loc_rK7E                                           Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_rK7F                                          Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc2_rK7H                                          Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP_rK7N                                          Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_rK7R                                          Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_rK7T                                          Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_rK7W                                          Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl11_rK80                                         Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl13_rK82                                         Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl16_rK85                                         Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl21_rK8e                                         Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_rK8i                                         Data.ByteString.Builder.Scientific             <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientificBuilder                                  Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:39:1-17                                                                   0.0    0.0      0         0
scientificBuilder                                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:39:1-59                                                                   0.0    0.0      0         0
formatScientificBuilder                                Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:(46,1)-(107,75)                                                           0.0    0.0      0         0
formatScientificBuilder.doFmt                          Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:(50,3)-(107,75)                                                           0.0    0.0      0         0
formatScientificBuilder.doFmt.ds'                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:105:11-57                                                                 0.0    0.0      0         0
formatScientificBuilder.doFmt.d                        Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:105:11-57                                                                 0.0    0.0      0         0
formatScientificBuilder.doFmt.(...)                    Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:105:11-57                                                                 0.0    0.0      0         0
formatScientificBuilder.doFmt.is'                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:104:11-58                                                                 0.0    0.0      0         0
formatScientificBuilder.doFmt.ei                       Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:104:11-58                                                                 0.0    0.0      0         0
formatScientificBuilder.doFmt.(...)                    Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:104:11-58                                                                 0.0    0.0      0         0
formatScientificBuilder.doFmt.rs                       Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:99:11-49                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.ls                       Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:99:11-49                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.(...)                    Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:99:11-49                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.is'                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:98:11-42                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.ei                       Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:98:11-42                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.(...)                    Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:98:11-42                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.dec'                     Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:95:13-28                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.f                        Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:(89,17)-(91,47)                                                           0.0    0.0      0         0
formatScientificBuilder.doFmt.mk0                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:80:8-63                                                                   0.0    0.0      0         0
formatScientificBuilder.doFmt.ds'                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:75:12-63                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.d                        Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:75:12-63                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.(...)                    Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:75:12-63                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.is'                      Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:74:12-41                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.ei                       Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:74:12-41                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.(...)                    Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:74:12-41                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.dec'                     Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:67:13-28                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.show_e'                  Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:59:13-34                                                                  0.0    0.0      0         0
formatScientificBuilder.doFmt.ds                       Data.ByteString.Builder.Scientific             src/Data/ByteString/Builder/Scientific.hs:51:9-23                                                                   0.0    0.0      0         0
CAF:empty_rsmI                                         Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:71:9-13                                                                             0.0    0.0      0         0
CAF:pad_rqyD                                           Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:64:1-3                                                                              0.0    0.0      0         0
CAF:fastHash                                           Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:80:1-8                                                                              0.0    0.0      0         0
CAF:member1                                            Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_rsn2                                          Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_rsn4                                          Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_rsn6                                          Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl9_rsn8                                          Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl16_rsnf                                         Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:set                                                Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:105:1-3                                                                             0.0    0.0      0         0
CAF:charClass1                                         Data.Attoparsec.Text.FastSet                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:charClass                                          Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:118:1-9                                                                             0.0    0.0      0         0
mask                                                   Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:42:5-8                                                                              0.0    0.0      0         0
table                                                  Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:41:5-9                                                                              0.0    0.0      0         0
index                                                  Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:48:5-9                                                                              0.0    0.0      0         0
initialIndex                                           Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:47:5-16                                                                             0.0    0.0      0         0
key                                                    Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:46:5-7                                                                              0.0    0.0      0         0
charClass                                              Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(118,1)-(121,28)                                                                    0.0    0.0      0         0
charClass.go                                           Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(119,9)-(121,28)                                                                    0.0    0.0      0         0
set                                                    Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:105:1-25                                                                            0.0    0.0      0         0
fromList                                               Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(83,1)-(94,29)                                                                      0.0    0.0      0         0
fromList.interleaved                                   Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(93,9)-(94,29)                                                                      0.0    0.0      0         0
fromList.interleaved.\                                 Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:93:40-73                                                                            0.0    0.0      0         0
fromList.entries                                       Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(88,9)-(92,51)                                                                      0.0    0.0      0         0
fromList.entries.\                                     Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:91:36-46                                                                            0.0    0.0      0         0
fromList.mask'                                         Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:87:9-52                                                                             0.0    0.0      0         0
fromList.l                                             Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:86:9-27                                                                             0.0    0.0      0         0
fromList.s'                                            Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:85:9-33                                                                             0.0    0.0      0         0
resolveCollisions                                      Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(55,1)-(61,62)                                                                      0.0    0.0      0         0
resolveCollisions.b'                                   Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(58,9)-(61,62)                                                                      0.0    0.0      0         0
resolveCollisions.a'                                   Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(58,9)-(61,62)                                                                      0.0    0.0      0         0
resolveCollisions.(...)                                Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(58,9)-(61,62)                                                                      0.0    0.0      0         0
offset                                                 Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:52:1-35                                                                             0.0    0.0      0         0
pad                                                    Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(64,1)-(71,52)                                                                      0.0    0.0      0         0
pad.go                                                 Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(67,9)-(70,38)                                                                      0.0    0.0      0         0
pad.go.i                                               Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:70:17-38                                                                            0.0    0.0      0         0
pad.empty                                              Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:71:9-52                                                                             0.0    0.0      0         0
nextPowerOf2                                           Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(74,1)-(77,51)                                                                      0.0    0.0      0         0
nextPowerOf2.go                                        Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(76,9)-(77,51)                                                                      0.0    0.0      0         0
member                                                 Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(109,1)-(115,52)                                                                    0.0    0.0      0         0
member.go                                              Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(114,9)-(115,52)                                                                    0.0    0.0      0         0
member.lookupAt                                        Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(111,9)-(113,52)                                                                    0.0    0.0      0         0
member.lookupAt.c'                                     Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:112:19-55                                                                           0.0    0.0      0         0
member.lookupAt.i'                                     Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:113:19-52                                                                           0.0    0.0      0         0
member.i                                               Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:110:9-44                                                                            0.0    0.0      0         0
fastHash                                               Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:80:1-19                                                                             0.0    0.0      0         0
ordNub                                                 Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(97,1)-(102,27)                                                                     0.0    0.0      0         0
ordNub.go                                              Data.Attoparsec.Text.FastSet                   Data/Attoparsec/Text/FastSet.hs:(99,9)-(102,27)                                                                     0.0    0.0      0         0
CAF:anyChar1                                           Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:takeLazyText2                                      Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:takeText1                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:takeText                                           Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:304:1-8                                                                            0.0    0.0      0         0
CAF:takeLazyText1                                      Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:takeLazyText                                       Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:308:1-12                                                                           0.0    0.0      0         0
CAF:lvl_rOru                                           Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl2_rOrw                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl4_rOry                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl6_rOrA                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_rOrB                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl8_rOrC                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl10_rOrE                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl17_rOrL                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl19_rOrN                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl20_rOrO                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:string1                                            Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:string3                                            Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl21_rOrU                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:m_rOrV                                             Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:err3_rOrX                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg3_rOrZ                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl24_rOs0                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl25_rOs1                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:peekChar'1_rOs4                                    Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:peekChar'                                          Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:436:1-9                                                                            0.0    0.0      0         0
CAF:err2_rOs6                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg1_rOs7                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl26_rOs8                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:err4_rOsa                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg2_rOsb                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl28_rOsc                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:err5_rOsh                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg4_rOsi                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl32_rOsj                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:err6_rOsm                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg5_rOsn                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl34_rOso                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:err7_rOsq                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg6_rOsr                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl36_rOss                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:anyChar2_rOsu                                      Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:anyChar                                            Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:397:1-7                                                                            0.0    0.0      0         0
CAF:lvl37_rOsv                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg7_rOsx                                          Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl38_rOsy                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine8                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine6                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine5                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine4                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:s_rOsA                                             Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:163:8                                                                              0.0    0.0      0         0
CAF:lvl40_rOsB                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine3                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine1                                         Data.Attoparsec.Text.Internal                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine                                          Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:444:1-9                                                                            0.0    0.0      0         0
fromString                                             Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:92:5-32                                                                            0.0    0.0      0         0
endOfLine                                              Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:444:1-69                                                                           0.0    0.0      0         0
skip                                                   Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(115,1)-(119,20)                                                                   0.0    0.0      0         0
takeWith                                               Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(136,1)-(140,24)                                                                   0.0    0.0      0         0
stringSuspended                                        Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(190,1)-(201,54)                                                                   0.0    0.0      0         0
stringSuspended.go                                     Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(193,5)-(201,54)                                                                   0.0    0.0      0         0
stringSuspended.go.\                                   Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(194,7)-(201,54)                                                                   0.0    0.0      0         0
stringSuspended.go.\.l                                 Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:198:32-60                                                                          0.0    0.0      0         0
stringSuspended.go.\.s                                 Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:194:11-18                                                                          0.0    0.0      0         0
takeLazyText                                           Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:308:1-43                                                                           0.0    0.0      0         0
takeText                                               Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:304:1-35                                                                           0.0    0.0      0         0
takeRest                                               Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(291,1)-(300,31)                                                                   0.0    0.0      0         0
takeRest.go                                            Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(293,3)-(300,31)                                                                   0.0    0.0      0         0
ensureSuspended                                        Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(505,1)-(510,78)                                                                   0.0    0.0      0         0
ensureSuspended.go                                     Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(507,9)-(510,78)                                                                   0.0    0.0      0         0
ensureSuspended.go.\                                   Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(508,11)-(510,78)                                                                  0.0    0.0      0         0
match                                                  Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(525,1)-(528,38)                                                                   0.0    0.0      0         0
match.\                                                Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(526,3)-(528,38)                                                                   0.0    0.0      0         0
match.\.succ'                                          Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:(526,7)-(527,62)                                                                   0.0    0.0      0         0
lengthOf                                               Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:546:1-27                                                                           0.0    0.0      0         0
size                                                   Data.Attoparsec.Text.Internal                  Data/Attoparsec/Text/Internal.hs:549:1-25                                                                           0.0    0.0      0         0
CAF:$fMonoidBuffer_$cmempty                            Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:89:5-10                                                                              0.0    0.0      0         0
CAF:lvl_rh81                                           Data.Attoparsec.Text.Buffer                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowBuffer1                                      Data.Attoparsec.Text.Buffer                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidBuffer_woff                                Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:103:7-10                                                                             0.0    0.0      0         0
CAF:$fMonoidBuffer_newgen                              Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:116:11-16                                                                            0.0    0.0      0         0
CAF:$fMonoidBuffer_$cmappend                           Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:92:5-11                                                                              0.0    0.0      0         0
showsPrec                                              Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:66:5-40                                                                              0.0    0.0      0         0
<>                                                     Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(83,5)-(85,69)                                                                       0.0    0.0      0         0
mconcat                                                Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(94,5)-(95,32)                                                                       0.0    0.0      0         0
mappend                                                Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:92:5-18                                                                              0.0    0.0      0         0
mempty                                                 Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:89:5-32                                                                              0.0    0.0      0         0
_gen                                                   Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:62:7-10                                                                              0.0    0.0      0         0
_cap                                                   Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:61:7-10                                                                              0.0    0.0      0         0
_len                                                   Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:60:7-10                                                                              0.0    0.0      0         0
_off                                                   Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:59:7-10                                                                              0.0    0.0      0         0
_arr                                                   Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:58:7-10                                                                              0.0    0.0      0         0
pappend                                                Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(98,1)-(99,55)                                                                       0.0    0.0      0         0
buffer                                                 Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:72:1-49                                                                              0.0    0.0      0         0
unbuffer                                               Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:75:1-49                                                                              0.0    0.0      0         0
unbufferAt                                             Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(78,1)-(80,26)                                                                       0.0    0.0      0         0
append                                                 Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(102,1)-(122,49)                                                                     0.0    0.0      0         0
append.newcap                                          Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:115:11-29                                                                            0.0    0.0      0         0
append.newgen                                          Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:116:11-20                                                                            0.0    0.0      0         0
append.newgen                                          Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:108:11-26                                                                            0.0    0.0      0         0
append.woff                                            Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:103:7-42                                                                             0.0    0.0      0         0
append.newlen                                          Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:104:7-27                                                                             0.0    0.0      0         0
append.gen                                             Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:105:7-53                                                                             0.0    0.0      0         0
unsafeThaw                                             Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(163,1)-(164,64)                                                                     0.0    0.0      0         0
unsafeThaw.\                                           Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:164:27-64                                                                            0.0    0.0      0         0
readGen                                                Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:167:1-59                                                                             0.0    0.0      0         0
writeGen                                               Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(170,1)-(172,24)                                                                     0.0    0.0      0         0
writeGen.\                                             Data.Attoparsec.Text.Buffer                    Data/Attoparsec/Text/Buffer.hs:(171,3)-(172,24)                                                                     0.0    0.0      0         0
CAF:$dIP1_r27dJ                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:s_r27dO                                            Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:171:8                                                                        0.0    0.0      0         0
CAF:n_r27dP                                            Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:190:7                                                                        0.0    0.0      0         0
CAF:endOfLine5                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine_msg0                                     Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:m_r27dQ                                            Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl2_r27dS                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_r27dV                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:err3_r27dZ                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_r27e0                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:m1_r27e1                                           Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl6_r27e2                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_r27e3                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl8_r27e4                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine_err3                                     Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:skip_err3                                          Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:skip_msg3                                          Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:skip2                                              Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg3_r27e9                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl10_r27ea                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg1_r27eb                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl11_r27ec                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine_msg3                                     Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine8                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:err1_r27ef                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg2_r27eg                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl13_r27eh                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:anyWord1_r27em                                     Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:anyWord8                                           Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:394:1-8                                                                      0.0    0.0      0         0
CAF:endOfLine6                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine4                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine3                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine1                                         Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfLine                                          Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:442:1-9                                                                      0.0    0.0      0         0
CAF:takeByteString1                                    Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:takeByteString                                     Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:293:1-14                                                                     0.0    0.0      0         0
CAF:takeLazyByteString1                                Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:takeLazyByteString                                 Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:297:1-18                                                                     0.0    0.0      0         0
CAF:lvl21_r27ez                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_r27eA                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl23_r27eB                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_dummy_r27eF                                   Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl26_r27eJ                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl28_r27eL                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl30_r27eN                                        Data.Attoparsec.ByteString.Internal            <no location info>                                                                                                  0.0    0.0      0         0
endOfLine                                              Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:442:1-68                                                                     0.0    0.0      0         0
skip                                                   Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(120,1)-(124,20)                                                             0.0    0.0      0         0
storable                                               Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(139,1)-(145,38)                                                             0.0    0.0      0         0
storable.hack                                          Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(142,3)-(145,38)                                                             0.0    0.0      0         0
storable.hack.\                                        Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:145:9-38                                                                     0.0    0.0      0         0
toLower                                                Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(176,1)-(177,34)                                                             0.0    0.0      0         0
stringSuspended                                        Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(208,1)-(223,54)                                                             0.0    0.0      0         0
stringSuspended.go                                     Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(210,9)-(223,54)                                                             0.0    0.0      0         0
stringSuspended.go.\                                   Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(211,11)-(223,54)                                                            0.0    0.0      0         0
stringSuspended.go.\.o                                 Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:216:28-48                                                                    0.0    0.0      0         0
stringSuspended.go.\.m                                 Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:211:15-29                                                                    0.0    0.0      0         0
stringSuspended.go.\.n                                 Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:213:15-30                                                                    0.0    0.0      0         0
stringSuspended.go.\.s'                                Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:212:15-24                                                                    0.0    0.0      0         0
takeLazyByteString                                     Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:297:1-49                                                                     0.0    0.0      0         0
takeByteString                                         Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:293:1-41                                                                     0.0    0.0      0         0
takeRest                                               Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(280,1)-(289,31)                                                             0.0    0.0      0         0
takeRest.go                                            Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(282,3)-(289,31)                                                             0.0    0.0      0         0
ensureSuspended                                        Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(505,1)-(510,70)                                                             0.0    0.0      0         0
ensureSuspended.go                                     Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(507,9)-(510,70)                                                             0.0    0.0      0         0
ensureSuspended.go.\                                   Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(508,11)-(510,70)                                                            0.0    0.0      0         0
match                                                  Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(525,1)-(528,38)                                                             0.0    0.0      0         0
match.\                                                Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(526,3)-(528,38)                                                             0.0    0.0      0         0
match.\.succ'                                          Data.Attoparsec.ByteString.Internal            Data/Attoparsec/ByteString/Internal.hs:(526,7)-(527,59)                                                             0.0    0.0      0         0
CAF:$fShowFastSet1                                     Data.Attoparsec.ByteString.FastSet             <no location info>                                                                                                  0.0    0.0      0         0
CAF:tableCutoff                                        Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:55:1-11                                                                       0.0    0.0      0         0
CAF:fromList                                           Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:63:1-8                                                                        0.0    0.0      0         0
CAF:charClass1                                         Data.Attoparsec.ByteString.FastSet             <no location info>                                                                                                  0.0    0.0      0         0
CAF:charClass                                          Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:112:1-9                                                                       0.0    0.0      0         0
show                                                   Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(49,5)-(50,36)                                                                0.0    0.0      0         0
>=                                                     Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:46:19-21                                                                      0.0    0.0      0         0
>                                                      Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:46:19-21                                                                      0.0    0.0      0         0
<=                                                     Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:46:19-21                                                                      0.0    0.0      0         0
<                                                      Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:46:19-21                                                                      0.0    0.0      0         0
compare                                                Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:46:19-21                                                                      0.0    0.0      0         0
==                                                     Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:46:15-16                                                                      0.0    0.0      0         0
fromSet                                                Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:44:25-31                                                                      0.0    0.0      0         0
charClass                                              Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(112,1)-(115,19)                                                              0.0    0.0      0         0
charClass.go                                           Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(113,11)-(115,19)                                                             0.0    0.0      0         0
fromList                                               Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:63:1-23                                                                       0.0    0.0      0         0
set                                                    Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(59,1)-(60,54)                                                                0.0    0.0      0         0
tableCutoff                                            Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:55:1-15                                                                       0.0    0.0      0         0
mkTable                                                Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(99,1)-(109,23)                                                               0.0    0.0      0         0
mkTable.\                                              Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(99,39)-(109,23)                                                              0.0    0.0      0         0
mkTable.\.\                                            Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(102,15)-(109,23)                                                             0.0    0.0      0         0
mkTable.\.\.loop                                       Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(102,19)-(108,32)                                                             0.0    0.0      0         0
mkTable.\.\.loop.bit                                   Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:105:25-59                                                                     0.0    0.0      0         0
mkTable.\.\.loop.byte                                  Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:105:25-59                                                                     0.0    0.0      0         0
mkTable.\.\.loop.(...)                                 Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:105:25-59                                                                     0.0    0.0      0         0
memberWord8                                            Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(79,1)-(90,32)                                                                0.0    0.0      0         0
memberWord8.search                                     Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:(83,11)-(90,32)                                                               0.0    0.0      0         0
memberWord8.search.mid                                 Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:86:23-46                                                                      0.0    0.0      0         0
memberWord8.bit                                        Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:80:9-43                                                                       0.0    0.0      0         0
memberWord8.byte                                       Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:80:9-43                                                                       0.0    0.0      0         0
memberWord8.(...)                                      Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:80:9-43                                                                       0.0    0.0      0         0
shiftR                                                 Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:68:1-47                                                                       0.0    0.0      0         0
shiftL                                                 Data.Attoparsec.ByteString.FastSet             Data/Attoparsec/ByteString/FastSet.hs:71:1-62                                                                       0.0    0.0      0         0
CAF:$fMonoidBuffer_$cmempty                            Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:96:5-10                                                                        0.0    0.0      0         0
CAF:$fShowBuffer1                                      Data.Attoparsec.ByteString.Buffer              <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidBuffer_genSize                             Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:111:11-17                                                                      0.0    0.0      0         0
CAF:$fMonoidBuffer_newgen                              Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:129:17-22                                                                      0.0    0.0      0         0
CAF:$fMonoidBuffer_$cmappend                           Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:98:5-11                                                                        0.0    0.0      0         0
showsPrec                                              Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:79:5-40                                                                        0.0    0.0      0         0
<>                                                     Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(91,5)-(93,67)                                                                 0.0    0.0      0         0
mconcat                                                Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(100,5)-(101,35)                                                               0.0    0.0      0         0
mappend                                                Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:98:5-18                                                                        0.0    0.0      0         0
mempty                                                 Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:96:5-39                                                                        0.0    0.0      0         0
_gen                                                   Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:75:7-10                                                                        0.0    0.0      0         0
_cap                                                   Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:74:7-10                                                                        0.0    0.0      0         0
_len                                                   Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:73:7-10                                                                        0.0    0.0      0         0
_off                                                   Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:72:7-10                                                                        0.0    0.0      0         0
_fp                                                    Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:71:7-9                                                                         0.0    0.0      0         0
pappend                                                Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(104,1)-(105,51)                                                               0.0    0.0      0         0
buffer                                                 Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:85:1-45                                                                        0.0    0.0      0         0
unbuffer                                               Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:88:1-45                                                                        0.0    0.0      0         0
append                                                 Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(108,1)-(134,56)                                                               0.0    0.0      0         0
append.\                                               Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(110,5)-(134,56)                                                               0.0    0.0      0         0
append.\.\                                             Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(110,35)-(134,56)                                                              0.0    0.0      0         0
append.\.\.\                                           Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:(127,40)-(134,56)                                                              0.0    0.0      0         0
append.\.\.\.ptr                                       Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:128:17-47                                                                      0.0    0.0      0         0
append.\.\.\.newgen                                    Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:129:17-26                                                                      0.0    0.0      0         0
append.\.\.newcap                                      Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:125:15-33                                                                      0.0    0.0      0         0
append.\.\.newgen                                      Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:118:15-30                                                                      0.0    0.0      0         0
append.\.\.genSize                                     Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:111:11-35                                                                      0.0    0.0      0         0
append.\.\.newlen                                      Data.Attoparsec.ByteString.Buffer              Data/Attoparsec/ByteString/Buffer.hs:112:11-31                                                                      0.0    0.0      0         0
CAF:lvl1_ruBO                                          Data.Attoparsec.Zepto                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidZeptoT1                                    Data.Attoparsec.Zepto                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_ruBQ                                          Data.Attoparsec.Zepto                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_ruBU                                          Data.Attoparsec.Zepto                          <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_ruBW                                          Data.Attoparsec.Zepto                          <no location info>                                                                                                  0.0    0.0      0         0
fmap                                                   Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(71,5)-(75,37)                                                                             0.0    0.0      0         0
fmap.\                                                 Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(71,31)-(75,37)                                                                            0.0    0.0      0         0
liftIO                                                 Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(79,3)-(81,24)                                                                             0.0    0.0      0         0
liftIO.\                                               Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(79,31)-(81,24)                                                                            0.0    0.0      0         0
fail                                                   Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:95:5-20                                                                                    0.0    0.0      0         0
return                                                 Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:85:5-17                                                                                    0.0    0.0      0         0
>>=                                                    Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(88,5)-(92,37)                                                                             0.0    0.0      0         0
>>=.\                                                  Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(88,32)-(92,37)                                                                            0.0    0.0      0         0
fail                                                   Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:99:5-47                                                                                    0.0    0.0      0         0
fail.\                                                 Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:99:31-47                                                                                   0.0    0.0      0         0
mplus                                                  Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(106,5)-(110,36)                                                                           0.0    0.0      0         0
mplus.\                                                Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:(106,32)-(110,36)                                                                          0.0    0.0      0         0
mzero                                                  Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:103:5-24                                                                                   0.0    0.0      0         0
<*>                                                    Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:116:5-15                                                                                   0.0    0.0      0         0
pure                                                   Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:114:5-43                                                                                   0.0    0.0      0         0
pure.\                                                 Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:114:29-43                                                                                  0.0    0.0      0         0
<>                                                     Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:144:5-16                                                                                   0.0    0.0      0         0
mappend                                                Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:150:5-18                                                                                   0.0    0.0      0         0
mempty                                                 Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:148:5-27                                                                                   0.0    0.0      0         0
<|>                                                    Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:156:5-17                                                                                   0.0    0.0      0         0
empty                                                  Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:154:5-24                                                                                   0.0    0.0      0         0
input                                                  Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:53:7-11                                                                                    0.0    0.0      0         0
runParser                                              Data.Attoparsec.Zepto                          Data/Attoparsec/Zepto.hs:65:7-15                                                                                    0.0    0.0      0         0
CAF:parseTest2                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl_r1pNI                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:eitherResult5                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:eitherResult2                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:err8_r1pNL                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg8_r1pNN                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p_r1pNO                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg1_r1pNQ                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p1_r1pNS                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg3_r1pNU                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p2_r1pNW                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg5_r1pNY                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m1_r1pO0                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:go_r1pO1                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipSpace                                          Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:456:1-9                                                                                     0.0    0.0      0         0
CAF:lvl4_r1pO3                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m1                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m2_r1pO9                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_r1pOa                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:err1_r1pOc                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg6_r1pOd                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_r1pOe                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl8_r1pOf                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m4_r1pOg                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal3                                       Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal1                                       Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal                          Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m7_r1pOj                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m8_r1pOk                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m9_r1pOl                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k_r1pOn                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p3_r1pOo                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal4                                       Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal1                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m10_r1pOq                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m11_r1pOr                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m12_r1pOs                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k1_r1pOu                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p4_r1pOv                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal6                                       Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal2                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m13_r1pOx                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m14_r1pOy                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m15_r1pOz                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k2_r1pOB                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p5_r1pOC                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal8                                       Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal3                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:hexadecimal_m2                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m16_r1pOE                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m17_r1pOF                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k1                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal12                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal10                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal4                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:hexadecimal_m3                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m18_r1pOI                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m19_r1pOJ                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k2                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal15                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal13                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal5                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:hexadecimal_m4                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m20_r1pOM                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m21_r1pON                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k3                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal18                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal16                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal6                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m22_r1pOQ                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m23_r1pOR                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m24_r1pOS                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k3_r1pOU                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p6_r1pOV                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal19                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal7                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m25_r1pOX                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m26_r1pOY                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m27_r1pOZ                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k4_r1pP1                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p7_r1pP2                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal21                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal8                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m28_r1pP4                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m29_r1pP5                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m30_r1pP6                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k5_r1pP8                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p8_r1pP9                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal23                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal9                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:hexadecimal_m5                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m31_r1pPb                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m32_r1pPc                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k4                                     Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal27                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal25                                      Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal10                        Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:291:1-11                                                                                    0.0    0.0      0         0
CAF:m33_r1pPg                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m34_r1pPh                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m35_r1pPi                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:k6_r1pPk                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p9_r1pPl                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m11                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m36_r1pPm                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl10_r1pPn                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg7_r1pPo                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl11_r1pPp                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_r1pPq                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m37_r1pPr                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k10                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal35                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal33                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal10                                Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m10                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m38_r1pPt                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m39_r1pPu                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k9                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal32                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal30                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal9                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m9                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m40_r1pPw                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m41_r1pPx                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k8                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal29                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal27                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal8                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m8                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m42_r1pPz                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m43_r1pPA                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k7                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal26                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal24                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal7                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m7                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m44_r1pPC                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m45_r1pPD                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k6                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal23                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal21                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal6                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m6                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m46_r1pPF                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m47_r1pPG                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k5                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal20                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal16                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal5                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m5                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m48_r1pPI                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m49_r1pPJ                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k4                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal15                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal13                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal4                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m4                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m50_r1pPL                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m51_r1pPM                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k3                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal12                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal10                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal3                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m3                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m52_r1pPO                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m53_r1pPP                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k2                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal9                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal7                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal2                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m2                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m54_r1pPR                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m55_r1pPS                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k1                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal6                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal4                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal1                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m1                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m56_r1pPU                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m57_r1pPV                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal3                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal1                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal                                  Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:314:1-7                                                                                     0.0    0.0      0         0
CAF:decimal_m12                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m58_r1pPX                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m59_r1pPY                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k11                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal37                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg9_r1pQ0                                         Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p10_r1pQ1                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg10_r1pQ3                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p11_r1pQ5                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg12_r1pQ6                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p12_r1pQ8                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p13_r1pQ9                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p14_r1pQa                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p15_r1pQb                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p16_r1pQc                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p17_r1pQd                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p18_r1pQe                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p19_r1pQf                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p20_r1pQg                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p21_r1pQh                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p22_r1pQi                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p23_r1pQj                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p24_r1pQk                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p25_r1pQl                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:h_r1pQm                                            Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:419:16                                                                                      0.0    0.0      0         0
CAF:msg14_r1pQn                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p26_r1pQo                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f_r1pQp                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:g_r1pQq                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m_r1pQs                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg15_r1pQt                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m60_r1pQu                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m61_r1pQv                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m62_r1pQw                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p27_r1pQy                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg16_r1pQz                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m63_r1pQA                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p28_r1pQB                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational7                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational3                               Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:361:1-8                                                                                     0.0    0.0      0         0
CAF:h1_r1pQC                                           Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:419:16                                                                                      0.0    0.0      0         0
CAF:p29_r1pQD                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f1_r1pQE                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m64_r1pQG                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m65_r1pQH                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m66_r1pQI                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p30_r1pQK                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational5                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational2                               Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:361:1-8                                                                                     0.0    0.0      0         0
CAF:p31_r1pQL                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f2_r1pQM                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m67_r1pQO                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m68_r1pQP                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m69_r1pQQ                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p32_r1pQS                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational3                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational1                               Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:361:1-8                                                                                     0.0    0.0      0         0
CAF:p33_r1pQT                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f3_r1pQU                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m70_r1pQW                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m71_r1pQX                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m72_r1pQY                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p34_r1pR0                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational1                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational                                Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:361:1-8                                                                                     0.0    0.0      0         0
CAF:p35_r1pR1                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f4_r1pR2                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m73_r1pR4                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m74_r1pR5                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m75_r1pR6                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p36_r1pR8                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:h2_r1pR9                                           Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:419:16                                                                                      0.0    0.0      0         0
CAF:msg17_r1pRa                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p37_r1pRb                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f5_r1pRc                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:g1_r1pRd                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m76_r1pRf                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg18_r1pRg                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m77_r1pRh                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m78_r1pRi                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m79_r1pRj                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p38_r1pRl                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg19_r1pRm                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m80_r1pRn                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p39_r1pRo                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:double1                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:double                                             Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:391:1-6                                                                                     0.0    0.0      0         0
CAF:msg20_r1pRq                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p40_r1pRr                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f6_r1pRs                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:g2_r1pRt                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m81_r1pRv                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg21_r1pRw                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m82_r1pRx                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m83_r1pRy                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m84_r1pRz                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p41_r1pRB                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg22_r1pRC                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m85_r1pRD                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p42_r1pRE                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:number1                                            Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:number                                             Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:400:1-6                                                                                     0.0    0.0      0         0
CAF:msg23_r1pRF                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p43_r1pRG                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:f7_r1pRH                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:g3_r1pRI                                           Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m86_r1pRK                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg24_r1pRL                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m87_r1pRM                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m88_r1pRN                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m89_r1pRO                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p44_r1pRQ                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg25_r1pRR                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:m90_r1pRS                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:p45_r1pRT                                          Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientific1                                        Data.Attoparsec.Text                           <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientific                                         Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:412:1-10                                                                                    0.0    0.0      0         0
parseTest                                              Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:242:1-33                                                                                    0.0    0.0      0         0
maybeResult                                            Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(263,1)-(264,34)                                                                            0.0    0.0      0         0
eitherResult                                           Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(269,1)-(272,66)                                                                            0.0    0.0      0         0
hexadecimal                                            Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(291,1)-(299,21)                                                                            0.0    0.0      0         0
hexadecimal.isHexDigit                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(293,5)-(295,41)                                                                            0.0    0.0      0         0
hexadecimal.step                                       Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(296,5)-(299,21)                                                                            0.0    0.0      0         0
hexadecimal.step.w                                     Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:299:13-21                                                                                   0.0    0.0      0         0
scientific                                             Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:412:1-30                                                                                    0.0    0.0      0         0
number                                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(400,1)-(405,41)                                                                            0.0    0.0      0         0
number.\                                               Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(401,13)-(405,41)                                                                           0.0    0.0      0         0
number.\.e                                             Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:401:17-40                                                                                   0.0    0.0      0         0
number.\.c                                             Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:402:17-37                                                                                   0.0    0.0      0         0
double                                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:391:1-39                                                                                    0.0    0.0      0         0
rational                                               Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:361:1-36                                                                                    0.0    0.0      0         0
decimal                                                Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(314,1)-(315,53)                                                                            0.0    0.0      0         0
decimal.step                                           Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:315:9-53                                                                                    0.0    0.0      0         0
signed                                                 Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:(341,1)-(343,12)                                                                            0.0    0.0      0         0
.*>                                                    Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:486:1-25                                                                                    0.0    0.0      0         0
<*.                                                    Data.Attoparsec.Text                           Data/Attoparsec/Text.hs:492:1-25                                                                                    0.0    0.0      0         0
CAF:$fNumNumber_$cfromInteger                          Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:101:5-15                                                                                  0.0    0.0      0         0
CAF:$fFractionalNumber_$cfromRational                  Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:110:5-16                                                                                  0.0    0.0      0         0
CAF:$fFractionalNumber_$c/                             Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:113:5-7                                                                                   0.0    0.0      0         0
CAF:$fNumNumber_$c+                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:80:5-7                                                                                    0.0    0.0      0         0
CAF:$fNumNumber_$c-                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:83:5-7                                                                                    0.0    0.0      0         0
CAF:$fNumNumber_$c*                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:86:5-7                                                                                    0.0    0.0      0         0
CAF:lvl3_rdQy                                          Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdNumber_$ccompare                              Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:76:5-11                                                                                   0.0    0.0      0         0
CAF:$fOrdNumber_$c<                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:64:5-7                                                                                    0.0    0.0      0         0
CAF:$fOrdNumber_$c<=                                   Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:67:5-8                                                                                    0.0    0.0      0         0
CAF:$fOrdNumber_$c>                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:70:5-7                                                                                    0.0    0.0      0         0
CAF:$fOrdNumber_$c>=                                   Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:73:5-8                                                                                    0.0    0.0      0         0
CAF:$fEqNumber_$c==                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:57:5-8                                                                                    0.0    0.0      0         0
CAF:$fEqNumber_$c/=                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:60:5-8                                                                                    0.0    0.0      0         0
CAF:$tNumber1_rdQz                                     Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_rdQB                                          Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_rdQD                                          Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:$cI                                                Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
CAF:$tNumber                                           Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
CAF:$cD                                                Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
CAF:$cD2_rdQJ                                          Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:$cI2_rdQK                                          Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataNumber3                                      Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl8_rdQO                                          Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl10_rdQQ                                         Data.Attoparsec.Number                         <no location info>                                                                                                  0.0    0.0      0         0
show                                                   Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(40,5)-(41,23)                                                                            0.0    0.0      0         0
rnf                                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(44,5)-(45,18)                                                                            0.0    0.0      0         0
/=                                                     Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:60:5-26                                                                                   0.0    0.0      0         0
==                                                     Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:57:5-26                                                                                   0.0    0.0      0         0
>=                                                     Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:73:5-26                                                                                   0.0    0.0      0         0
>                                                      Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:70:5-23                                                                                   0.0    0.0      0         0
<=                                                     Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:67:5-26                                                                                   0.0    0.0      0         0
<                                                      Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:64:5-23                                                                                   0.0    0.0      0         0
compare                                                Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:76:5-35                                                                                   0.0    0.0      0         0
fromInteger                                            Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:101:5-37                                                                                  0.0    0.0      0         0
signum                                                 Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(97,5)-(98,32)                                                                            0.0    0.0      0         0
abs                                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(89,5)-(90,26)                                                                            0.0    0.0      0         0
negate                                                 Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(93,5)-(94,32)                                                                            0.0    0.0      0         0
*                                                      Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:86:5-49                                                                                   0.0    0.0      0         0
-                                                      Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:83:5-49                                                                                   0.0    0.0      0         0
+                                                      Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:80:5-49                                                                                   0.0    0.0      0         0
toRational                                             Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(105,5)-(106,35)                                                                          0.0    0.0      0         0
fromRational                                           Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:110:5-39                                                                                  0.0    0.0      0         0
recip                                                  Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(117,5)-(118,30)                                                                          0.0    0.0      0         0
/                                                      Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(113,5)-(114,32)                                                                          0.0    0.0      0         0
floor                                                  Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(135,5)-(136,25)                                                                          0.0    0.0      0         0
ceiling                                                Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(132,5)-(133,29)                                                                          0.0    0.0      0         0
round                                                  Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(129,5)-(130,25)                                                                          0.0    0.0      0         0
truncate                                               Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(126,5)-(127,31)                                                                          0.0    0.0      0         0
properFraction                                         Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:(122,5)-(124,45)                                                                          0.0    0.0      0         0
dataTypeOf                                             Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
toConstr                                               Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
gunfold                                                Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
gfoldl                                                 Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
$tNumber                                               Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
$cI                                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
$cD                                                    Data.Attoparsec.Number                         Data/Attoparsec/Number.hs:36:35-38                                                                                  0.0    0.0      0         0
CAF:$fShowIResult5                                     Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowIResult7                                     Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowIResult2                                     Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidMore_$cmappend                             Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:135:5-11                                                                          0.0    0.0      0         0
CAF:$fMonoidMore_$cmempty                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:136:5-10                                                                          0.0    0.0      0         0
CAF:$fChunkByteString1_rl3Y                            Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fChunkByteString2_rl3Z                            Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl2_rl40                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fChunkText1_rl43                                  Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fChunkText2_rl44                                  Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowMore6                                        Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowMore3                                        Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos1                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos2                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos3                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos4                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos5                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos6                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fNumPos7                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowPos6                                         Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowPos4                                         Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowPos2                                         Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowPos8                                         Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos1                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos2                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos3                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos4                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos5                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos6                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrdPos7                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fEqPos1                                           Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fEqPos2                                           Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fSemigroupParser2_rl47                            Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadPlusParser1                                 Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeParser1_rl4b                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadParser1_rl4c                                Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadParser2_rl4d                                Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadParser3_rl4e                                Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:err_rl4g                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:155:10-12                                                                         0.0    0.0      0         0
CAF:msg_rl4h                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:156:13-15                                                                         0.0    0.0      0         0
CAF:$cempty_rl4i                                       Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeParser_$cempty                        Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:203:5-9                                                                           0.0    0.0      0         0
CAF:lvl4_rl4j                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_rl4k                                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeParser2_rl4l                          Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:err1_rl4n                                          Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:155:10-12                                                                         0.0    0.0      0         0
CAF:msg1_rl4o                                          Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:156:13-15                                                                         0.0    0.0      0         0
CAF:$cmempty_rl4p                                      Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidParser_$cmempty                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:197:5-10                                                                          0.0    0.0      0         0
CAF:$cmconcat_rl4q                                     Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:err2_rl4s                                          Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:155:10-12                                                                         0.0    0.0      0         0
CAF:msg2_rl4t                                          Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:156:13-15                                                                         0.0    0.0      0         0
CAF:$cmzero_rl4u                                       Data.Attoparsec.Internal.Types                 <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadPlusParser_$cmzero                          Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:165:5-9                                                                           0.0    0.0      0         0
showsPrec                                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(73,5)-(79,47)                                                                    0.0    0.0      0         0
showsPrec.f                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:79:13-47                                                                          0.0    0.0      0         0
rnf                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(82,5)-(84,40)                                                                    0.0    0.0      0         0
fmap                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(88,5)-(90,38)                                                                    0.0    0.0      0         0
<>                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(131,5)-(132,23)                                                                  0.0    0.0      0         0
mappend                                                Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:135:5-18                                                                          0.0    0.0      0         0
mempty                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:136:5-24                                                                          0.0    0.0      0         0
fail                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:139:5-20                                                                          0.0    0.0      0         0
return                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:142:5-21                                                                          0.0    0.0      0         0
>>                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:150:5-15                                                                          0.0    0.0      0         0
>>=                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(145,5)-(147,44)                                                                  0.0    0.0      0         0
>>=.\                                                  Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(146,9)-(147,44)                                                                  0.0    0.0      0         0
>>=.\.succ'                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:146:13-76                                                                         0.0    0.0      0         0
fail                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(155,5)-(156,43)                                                                  0.0    0.0      0         0
fail.\                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:155:51-72                                                                         0.0    0.0      0         0
fail.msg                                               Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:156:13-43                                                                         0.0    0.0      0         0
mplus                                                  Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:167:5-16                                                                          0.0    0.0      0         0
mzero                                                  Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:165:5-24                                                                          0.0    0.0      0         0
fmap                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(170,5)-(172,42)                                                                  0.0    0.0      0         0
fmap.\                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(171,7)-(172,42)                                                                  0.0    0.0      0         0
fmap.\.succ'                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:171:11-58                                                                         0.0    0.0      0         0
<*                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:189:5-36                                                                          0.0    0.0      0         0
<*.\                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:189:26-36                                                                         0.0    0.0      0         0
*>                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:187:5-26                                                                          0.0    0.0      0         0
*>.\                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:187:26                                                                            0.0    0.0      0         0
<*>                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:185:5-16                                                                          0.0    0.0      0         0
pure                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:183:5-66                                                                          0.0    0.0      0         0
pure.\                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:183:50-66                                                                         0.0    0.0      0         0
<>                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:193:5-15                                                                          0.0    0.0      0         0
mappend                                                Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:199:5-18                                                                          0.0    0.0      0         0
mempty                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:197:5-27                                                                          0.0    0.0      0         0
many                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(209,5)-(211,47)                                                                  0.0    0.0      0         0
many.some_v                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:211:15-47                                                                         0.0    0.0      0         0
many.many_v                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:210:15-41                                                                         0.0    0.0      0         0
some                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(214,5)-(217,37)                                                                  0.0    0.0      0         0
some.some_v                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:217:9-37                                                                          0.0    0.0      0         0
some.many_v                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:216:9-35                                                                          0.0    0.0      0         0
<|>                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:206:5-16                                                                          0.0    0.0      0         0
empty                                                  Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:203:5-24                                                                          0.0    0.0      0         0
chunkElemToChar                                        Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:247:3-25                                                                          0.0    0.0      0         0
bufferElemAt                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(243,3)-(245,25)                                                                  0.0    0.0      0         0
atBufferEnd                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:241:3-32                                                                          0.0    0.0      0         0
pappendChunk                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:239:3-26                                                                          0.0    0.0      0         0
nullChunk                                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:237:3-21                                                                          0.0    0.0      0         0
chunkElemToChar                                        Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:262:3-24                                                                          0.0    0.0      0         0
bufferElemAt                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(258,3)-(260,25)                                                                  0.0    0.0      0         0
bufferElemAt.l                                         Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:259:30-52                                                                         0.0    0.0      0         0
bufferElemAt.c                                         Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:259:30-52                                                                         0.0    0.0      0         0
bufferElemAt.(...)                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:259:30-52                                                                         0.0    0.0      0         0
atBufferEnd                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:256:3-32                                                                          0.0    0.0      0         0
pappendChunk                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:254:3-26                                                                          0.0    0.0      0         0
nullChunk                                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:252:3-23                                                                          0.0    0.0      0         0
showsPrec                                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:128:27-30                                                                         0.0    0.0      0         0
==                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:128:23-24                                                                         0.0    0.0      0         0
fromInteger                                            Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
signum                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
abs                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
negate                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
*                                                      Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
-                                                      Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
+                                                      Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:38-40                                                                          0.0    0.0      0         0
showsPrec                                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:32-35                                                                          0.0    0.0      0         0
min                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
max                                                    Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
>=                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
>                                                      Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
<=                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
<                                                      Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
compare                                                Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:27-29                                                                          0.0    0.0      0         0
/=                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:23-24                                                                          0.0    0.0      0         0
==                                                     Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:47:23-24                                                                          0.0    0.0      0         0
fromPos                                                Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:46:21-27                                                                          0.0    0.0      0         0
runParser                                              Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:111:7-15                                                                          0.0    0.0      0         0
plus                                                   Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(160,1)-(162,38)                                                                  0.0    0.0      0         0
plus.\                                                 Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:(161,3)-(162,38)                                                                  0.0    0.0      0         0
plus.\.lose'                                           Data.Attoparsec.Internal.Types                 Data/Attoparsec/Internal/Types.hs:161:7-73                                                                          0.0    0.0      0         0
CAF:lvl_roAo                                           Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput2                                       Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput_1                                      Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput__$sdemandInput_                        Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:85:1-12                                                                                 0.0    0.0      0         0
CAF:demandInput_2                                      Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput__$sdemandInput_1                       Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:85:1-12                                                                                 0.0    0.0      0         0
CAF:demandInput1                                       Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput_$sdemandInput                          Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:73:1-11                                                                                 0.0    0.0      0         0
CAF:lvl2_roAq                                          Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_roAr                                          Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl4_roAs                                          Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl6_roAu                                          Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_roAA                                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl13_roAD                                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput4                                       Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput_$sdemandInput1                         Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:73:1-11                                                                                 0.0    0.0      0         0
CAF:demandInput_$sdemandInput3                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:demandInput_$sdemandInput2                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfInput2                                        Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfInput1                                        Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfInput_$sendOfInput                            Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:110:1-10                                                                                0.0    0.0      0         0
CAF:lvl15_roAG                                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl17_roAN                                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl23_roAT                                         Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfInput4                                        Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:endOfInput_$sendOfInput1                           Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:110:1-10                                                                                0.0    0.0      0         0
CAF:endOfInput6                                        Data.Attoparsec.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
compareResults                                         Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(41,1)-(46,31)                                                                          0.0    0.0      0         0
satisfySuspended                                       Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(133,1)-(139,78)                                                                        0.0    0.0      0         0
satisfySuspended.go                                    Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(135,9)-(139,78)                                                                        0.0    0.0      0         0
satisfySuspended.go.\                                  Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(136,11)-(139,78)                                                                       0.0    0.0      0         0
endOfInput                                             Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(110,1)-(117,55)                                                                        0.0    0.0      0         0
endOfInput.\                                           Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(111,3)-(117,55)                                                                        0.0    0.0      0         0
endOfInput.\.lose'                                     Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:115:12-64                                                                               0.0    0.0      0         0
endOfInput.\.succ'                                     Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:116:12-70                                                                               0.0    0.0      0         0
demandInput                                            Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(73,1)-(78,41)                                                                          0.0    0.0      0         0
demandInput.\                                          Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(74,3)-(78,41)                                                                          0.0    0.0      0         0
demandInput.\.lose'                                    Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:76:14-73                                                                                0.0    0.0      0         0
demandInput.\.succ'                                    Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:77:14-56                                                                                0.0    0.0      0         0
prompt                                                 Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(55,1)-(58,45)                                                                          0.0    0.0      0         0
prompt.\                                               Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(56,3)-(58,45)                                                                          0.0    0.0      0         0
demandInput_                                           Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(85,1)-(91,48)                                                                          0.0    0.0      0         0
demandInput_.\                                         Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(86,3)-(91,48)                                                                          0.0    0.0      0         0
demandInput_.\.\                                       Data.Attoparsec.Internal                       Data/Attoparsec/Internal.hs:(89,10)-(91,48)                                                                         0.0    0.0      0         0
CAF:choice5                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:choice3                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:choice1                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:choice_$schoice                                    Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:78:1-6                                                                                0.0    0.0      0         0
CAF:choice6                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:choice_$schoice1                                   Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:78:1-6                                                                                0.0    0.0      0         0
CAF:choice7                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:choice_$schoice2                                   Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:78:1-6                                                                                0.0    0.0      0         0
CAF:sepBy'11                                           Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'7                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'3                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'10                                           Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'9                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'6                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'5                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'2                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy'1                                            Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:manyTill'3                                         Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:manyTill'2                                         Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:manyTill'1                                         Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy3                                             Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_g_rybJ                                        Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_g1_rybK                                       Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_g2_rybL                                       Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_g3_rybM                                       Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:sepBy2                                             Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:manyTill1                                          Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_k_rybN                                        Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_k1_rybO                                       Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipMany2                                          Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipMany4                                          Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipMany5                                          Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipMany10                                         Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipMany8                                          Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipMany6                                          Data.Attoparsec.Combinator                     <no location info>                                                                                                  0.0    0.0      0         0
choice                                                 Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:78:1-26                                                                               0.0    0.0      0         0
option                                                 Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:90:1-25                                                                               0.0    0.0      0         0
manyTill'                                              Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:(210,1)-(211,62)                                                                      0.0    0.0      0         0
manyTill'.scan                                         Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:211:11-62                                                                             0.0    0.0      0         0
sepBy'                                                 Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:(149,1)-(150,67)                                                                      0.0    0.0      0         0
sepBy'.scan                                            Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:150:9-67                                                                              0.0    0.0      0         0
sepBy1'                                                Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:(174,1)-(175,62)                                                                      0.0    0.0      0         0
sepBy1'.scan                                           Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:175:11-62                                                                             0.0    0.0      0         0
sepBy                                                  Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:137:1-68                                                                              0.0    0.0      0         0
sepBy1                                                 Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:(161,1)-(162,55)                                                                      0.0    0.0      0         0
sepBy1.scan                                            Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:162:11-55                                                                             0.0    0.0      0         0
manyTill                                               Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:(191,1)-(192,55)                                                                      0.0    0.0      0         0
manyTill.scan                                          Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:192:11-55                                                                             0.0    0.0      0         0
skipMany1                                              Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:227:1-29                                                                              0.0    0.0      0         0
skipMany                                               Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:(219,1)-(220,40)                                                                      0.0    0.0      0         0
skipMany.scan                                          Data.Attoparsec.Combinator                     Data/Attoparsec/Combinator.hs:220:11-40                                                                             0.0    0.0      0         0
CAF:$fShowResult2                                      Data.Attoparsec.ByteString.Lazy                <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFunctorResult_$cfmap                             Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:84:5-8                                                                           0.0    0.0      0         0
CAF:eitherResult2                                      Data.Attoparsec.ByteString.Lazy                <no location info>                                                                                                  0.0    0.0      0         0
rnf                                                    Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(65,5)-(66,49)                                                                   0.0    0.0      0         0
show                                                   Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(75,5)-(77,64)                                                                   0.0    0.0      0         0
fmap                                                   Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:84:5-16                                                                          0.0    0.0      0         0
fmapR                                                  Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(80,1)-(81,41)                                                                   0.0    0.0      0         0
parseTest                                              Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:99:1-33                                                                          0.0    0.0      0         0
parse                                                  Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(88,1)-(95,56)                                                                   0.0    0.0      0         0
parse.go                                               Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(92,5)-(95,56)                                                                   0.0    0.0      0         0
maybeResult                                            Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(103,1)-(104,32)                                                                 0.0    0.0      0         0
eitherResult                                           Data.Attoparsec.ByteString.Lazy                Data/Attoparsec/ByteString/Lazy.hs:(108,1)-(110,77)                                                                 0.0    0.0      0         0
CAF:lvl1_r2ElV                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m2_r2ElW                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_err2                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg4_r2ElX                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:anyChar1_r2Em0                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:anyChar                                            Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:240:1-7                                                                         0.0    0.0      0         0
CAF:peekChar'1_r2Em7                                   Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:peekChar'                                          Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:256:1-9                                                                         0.0    0.0      0         0
CAF:peekChar1_r2Em8                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:peekChar                                           Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:250:1-8                                                                         0.0    0.0      0         0
CAF:err2_r2Ema                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg1_r2Emb                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p_r2Emc                                            Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg2_r2Eme                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p1_r2Emg                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg5_r2Emi                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl4_r2Eml                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_r2Emn                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p2_r2Emo                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg7_r2Emq                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p3_r2Ems                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg9_r2Emu                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:err1_r2Emy                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg10_r2Emz                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg11_r2EmA                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p4_r2EmB                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p5_r2EmE                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p6_r2EmH                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p7_r2EmI                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p8_r2EmJ                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p9_r2EmK                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p10_r2EmL                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p11_r2EmM                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p12_r2EmN                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p13_r2EmO                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p14_r2EmP                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p15_r2EmQ                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p16_r2EmR                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p17_r2EmS                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p18_r2EmT                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p19_r2EmU                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m1_r2EmV                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:go_r2EmW                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:skipSpace                                          Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:369:1-9                                                                         0.0    0.0      0         0
CAF:hexadecimal_m6                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m3                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m4_r2EmX                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_msg4                                   Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal12                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal10                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal3                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:hexadecimal_m5                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal9                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal7                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal2                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:hexadecimal_m1                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal6                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal4                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal1                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:hexadecimal_m2                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal3                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal1                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal                          Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m7                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m6                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m3_r2EmY                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_msg4                                       Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k2                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal11                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal9                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal2                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:decimal_m5                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m1                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m5_r2EmZ                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k1                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal8                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal6                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal1                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:decimal_m2                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m3                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m6_r2En0                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal3                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal1                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal                                  Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:decimal_m9                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m8                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m7_r2En1                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k3                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal14                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal12                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal3                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m8                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m7                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m8_r2En2                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k1                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal15                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal13                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal4                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m11                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m10                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m9_r2En3                                           Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k4                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal17                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal15                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal4                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m10                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m9                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m10_r2En4                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k2                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal18                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal16                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal5                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m13                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m12                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m11_r2En5                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k5                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal21                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal18                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal5                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m12                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m11                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m12_r2En6                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k3                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal21                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal19                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal6                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m15                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m14                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m13_r2En7                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k6                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal24                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal22                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal6                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m14                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m13                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m14_r2En8                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k4                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal24                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal22                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal7                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m17                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m16                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m15_r2En9                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k7                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal27                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal25                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal7                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m16                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m15                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m16_r2Ena                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k5                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal27                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal25                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal8                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m19                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m18                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m17_r2Enb                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k8                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal30                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal28                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal8                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m18                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m17                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m18_r2Enc                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k6                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal30                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal28                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal9                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:decimal_m21                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m20                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m19_r2End                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k9                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal33                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal31                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal9                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:hexadecimal_m20                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_m19                                    Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m20_r2Ene                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_k7                                     Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal33                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal31                                      Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:hexadecimal_$shexadecimal10                        Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:425:1-11                                                                        0.0    0.0      0         0
CAF:m21_r2Enf                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m22_r2Eng                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m23_r2Enh                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:k_r2Enj                                            Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p20_r2Enk                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m23                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m22                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m24_r2Enm                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k10                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal36                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal34                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_$sdecimal10                                Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:447:1-7                                                                         0.0    0.0      0         0
CAF:decimal_m25                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_m24                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m25_r2Enn                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal_k11                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:decimal38                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:h_r2Eno                                            Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:545:16                                                                          0.0    0.0      0         0
CAF:lvl9_r2Enp                                         Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl10_r2Enq                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m26_r2Enr                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m27_r2Ens                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p21_r2Enu                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg16_r2Enw                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m_r2Enx                                            Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p22_r2Eny                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational7                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational3                               Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:490:1-8                                                                         0.0    0.0      0         0
CAF:h1_r2Enz                                           Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:545:16                                                                          0.0    0.0      0         0
CAF:p23_r2EnB                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational5                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational2                               Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:490:1-8                                                                         0.0    0.0      0         0
CAF:p24_r2EnD                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational3                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational1                               Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:490:1-8                                                                         0.0    0.0      0         0
CAF:p25_r2EnF                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational1                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:rational_$srational                                Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:490:1-8                                                                         0.0    0.0      0         0
CAF:p26_r2EnH                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:h2_r2EnI                                           Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:545:16                                                                          0.0    0.0      0         0
CAF:lvl11_r2EnJ                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_r2EnK                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m28_r2EnL                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m29_r2EnM                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p27_r2EnO                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg17_r2EnP                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m30_r2EnQ                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p28_r2EnR                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:double1                                            Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:double                                             Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:520:1-6                                                                         0.0    0.0      0         0
CAF:lvl13_r2EnS                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl14_r2EnT                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m31_r2EnU                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m32_r2EnV                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p29_r2EnX                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg18_r2EnY                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m33_r2EnZ                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p30_r2Eo0                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientific1                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:scientific                                         Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:538:1-10                                                                        0.0    0.0      0         0
CAF:lvl15_r2Eo2                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl16_r2Eo3                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m34_r2Eo4                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m35_r2Eo5                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p31_r2Eo7                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:msg19_r2Eo8                                        Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:m36_r2Eo9                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:p32_r2Eoa                                          Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:number1                                            Data.Attoparsec.ByteString.Char8               <no location info>                                                                                                  0.0    0.0      0         0
CAF:number                                             Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:526:1-6                                                                         0.0    0.0      0         0
fromString                                             Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:155:5-34                                                                        0.0    0.0      0         0
scientific                                             Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:538:1-30                                                                        0.0    0.0      0         0
number                                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(526,1)-(531,41)                                                                0.0    0.0      0         0
number.\                                               Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(527,13)-(531,41)                                                               0.0    0.0      0         0
number.\.e                                             Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:527:17-40                                                                       0.0    0.0      0         0
number.\.c                                             Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:528:17-37                                                                       0.0    0.0      0         0
double                                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:520:1-39                                                                        0.0    0.0      0         0
rational                                               Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:490:1-36                                                                        0.0    0.0      0         0
decimal                                                Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(447,1)-(448,49)                                                                0.0    0.0      0         0
decimal.step                                           Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:448:9-49                                                                        0.0    0.0      0         0
signed                                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(470,1)-(472,12)                                                                0.0    0.0      0         0
.*>                                                    Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:399:1-25                                                                        0.0    0.0      0         0
<*.                                                    Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:405:1-25                                                                        0.0    0.0      0         0
hexadecimal                                            Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(425,1)-(432,77)                                                                0.0    0.0      0         0
hexadecimal.isHexDigit                                 Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(427,5)-(429,39)                                                                0.0    0.0      0         0
hexadecimal.step                                       Data.Attoparsec.ByteString.Char8               Data/Attoparsec/ByteString/Char8.hs:(430,5)-(432,77)                                                                0.0    0.0      0         0
CAF                                                    Data.Time.Clock.Internal.SystemTime            <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Calendar.Days                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Clock.System                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Calendar.WeekDate                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Format.Locale                        <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Format.Parse                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.LocalTime.Internal.ZonedTime         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.LocalTime.Internal.LocalTime         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.LocalTime.Internal.TimeOfDay         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.LocalTime.Internal.TimeZone          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Clock.Internal.CTimespec             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Clock.Internal.UTCTime               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Clock.Internal.NominalDiffTime       <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Clock.Internal.DiffTime              <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Calendar.Gregorian                   <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Calendar.Private                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Format                               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Clock.POSIX                          <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Calendar.OrdinalDate                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Data.Time.Calendar.MonthDay                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Error                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Process.Common                    <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.IO.Common                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Files.Common                      <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Directory.Common                  <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Process.Internals                 <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Files                             <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Directory                         <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    System.Posix.Signals                           <entire-module>                                                                                                     0.0    0.0      0         0
$!                                                     Prelude.Compat                                 src/Prelude/Compat.hs:343:1-28                                                                                      0.0    0.0      0         0
$!.vx                                                  Prelude.Compat                                 src/Prelude/Compat.hs:343:14-20                                                                                     0.0    0.0      0         0
CAF:lvl_r8I9                                           Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadDList2                                       Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_r8Ia                                           Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r8Ib                                          Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_r8Id                                          Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r8Ii                                         Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:head1                                              Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:head                                               Data.DList                                     Data/DList.hs:202:1-4                                                                                               0.0    0.0      0         0
CAF:tail1                                              Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:tail                                               Data.DList                                     Data/DList.hs:206:1-4                                                                                               0.0    0.0      0         0
CAF:$fIsListDList2                                     Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListDList3_r8Iq                                Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl4_r8Is                                          Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableDList_$cnull                             Data.DList                                     Data/DList.hs:288:10-23                                                                                             0.0    0.0      0         0
CAF:$fFoldableDList1                                   Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableDList2                                   Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableDList_$clength                           Data.DList                                     Data/DList.hs:288:10-23                                                                                             0.0    0.0      0         0
CAF:$fShowDList1                                       Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:apply1                                             Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:apply                                              Data.DList                                     Data/DList.hs:152:1-5                                                                                               0.0    0.0      0         0
CAF:$fMonadPlusDList1                                  Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_r8Iv                                          Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeDList4                                Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidDList1                                     Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeDList_f1                              Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFunctorDList1_r8Ix                               Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fSemigroupDList1                                  Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fSemigroupDList4_r8IF                             Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadPlusDList_$cmplus                           Data.DList                                     Data/DList.hs:286:3-7                                                                                               0.0    0.0      0         0
CAF:$fAlternativeDList_$c<*>                           Data.DList                                     Data/DList.hs:262:5-9                                                                                               0.0    0.0      0         0
CAF:$fMonadDList1_r8IG                                 Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeDList3_r8IH                           Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeDList_$c<|>                           Data.DList                                     Data/DList.hs:266:5-9                                                                                               0.0    0.0      0         0
CAF:$fAlternativeDList1                                Data.DList                                     <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidDList_$cmappend                            Data.DList                                     Data/DList.hs:253:5-11                                                                                              0.0    0.0      0         0
==                                                     Data.DList                                     Data/DList.hs:226:5-27                                                                                              0.0    0.0      0         0
compare                                                Data.DList                                     Data/DList.hs:229:5-33                                                                                              0.0    0.0      0         0
readListPrec                                           Data.DList                                     Data/DList.hs:239:3-36                                                                                              0.0    0.0      0         0
readPrec                                               Data.DList                                     Data/DList.hs:(235,3)-(238,24)                                                                                      0.0    0.0      0         0
showsPrec                                              Data.DList                                     Data/DList.hs:(248,3)-(249,46)                                                                                      0.0    0.0      0         0
mappend                                                Data.DList                                     Data/DList.hs:253:5-20                                                                                              0.0    0.0      0         0
mempty                                                 Data.DList                                     Data/DList.hs:252:5-19                                                                                              0.0    0.0      0         0
fmap                                                   Data.DList                                     Data/DList.hs:256:5-14                                                                                              0.0    0.0      0         0
<*>                                                    Data.DList                                     Data/DList.hs:262:5-14                                                                                              0.0    0.0      0         0
pure                                                   Data.DList                                     Data/DList.hs:260:5-21                                                                                              0.0    0.0      0         0
<|>                                                    Data.DList                                     Data/DList.hs:266:5-18                                                                                              0.0    0.0      0         0
empty                                                  Data.DList                                     Data/DList.hs:265:5-17                                                                                              0.0    0.0      0         0
fail                                                   Data.DList                                     Data/DList.hs:281:3-18                                                                                              0.0    0.0      0         0
return                                                 Data.DList                                     Data/DList.hs:278:3-17                                                                                              0.0    0.0      0         0
>>=                                                    Data.DList                                     Data/DList.hs:(269,3)-(275,32)                                                                                      0.0    0.0      0         0
mplus                                                  Data.DList                                     Data/DList.hs:286:3-19                                                                                              0.0    0.0      0         0
mzero                                                  Data.DList                                     Data/DList.hs:285:3-18                                                                                              0.0    0.0      0         0
foldl1                                                 Data.DList                                     Data/DList.hs:304:3-38                                                                                              0.0    0.0      0         0
foldr1                                                 Data.DList                                     Data/DList.hs:301:3-38                                                                                              0.0    0.0      0         0
foldl'                                                 Data.DList                                     Data/DList.hs:310:3-40                                                                                              0.0    0.0      0         0
foldl                                                  Data.DList                                     Data/DList.hs:298:3-39                                                                                              0.0    0.0      0         0
foldr'                                                 Data.DList                                     Data/DList.hs:313:3-37                                                                                              0.0    0.0      0         0
foldr                                                  Data.DList                                     Data/DList.hs:295:3-39                                                                                              0.0    0.0      0         0
foldMap                                                Data.DList                                     Data/DList.hs:292:3-36                                                                                              0.0    0.0      0         0
fold                                                   Data.DList                                     Data/DList.hs:289:3-32                                                                                              0.0    0.0      0         0
rnf                                                    Data.DList                                     Data/DList.hs:318:3-20                                                                                              0.0    0.0      0         0
fromString                                             Data.DList                                     Data/DList.hs:326:3-23                                                                                              0.0    0.0      0         0
toList                                                 Data.DList                                     Data/DList.hs:334:3-17                                                                                              0.0    0.0      0         0
fromList                                               Data.DList                                     Data/DList.hs:332:3-21                                                                                              0.0    0.0      0         0
stimes                                                 Data.DList                                     Data/DList.hs:(342,3)-(347,31)                                                                                      0.0    0.0      0         0
stimes.rep                                             Data.DList                                     Data/DList.hs:(346,7)-(347,31)                                                                                      0.0    0.0      0         0
<>                                                     Data.DList                                     Data/DList.hs:340:3-15                                                                                              0.0    0.0      0         0
unDL                                                   Data.DList                                     Data/DList.hs:120:24-27                                                                                             0.0    0.0      0         0
tail                                                   Data.DList                                     Data/DList.hs:206:1-63                                                                                              0.0    0.0      0         0
head                                                   Data.DList                                     Data/DList.hs:202:1-56                                                                                              0.0    0.0      0         0
list                                                   Data.DList                                     Data/DList.hs:(195,1)-(198,38)                                                                                      0.0    0.0      0         0
$mCons.\                                               Data.DList                                     Data/DList.hs:145:22-37                                                                                             0.0    0.0      0         0
$mNil.\                                                Data.DList                                     Data/DList.hs:138:16-29                                                                                             0.0    0.0      0         0
apply                                                  Data.DList                                     Data/DList.hs:152:1-18                                                                                              0.0    0.0      0         0
unfoldr                                                Data.DList                                     Data/DList.hs:(210,1)-(213,42)                                                                                      0.0    0.0      0         0
CAF                                                    GHC.Lexeme                                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Language.Haskell.TH.Lib.Internal               <entire-module>                                                                                                     0.0    0.0      0         0
CAF                                                    Language.Haskell.TH.Syntax                     <entire-module>                                                                                                     0.0    0.0      0         0
CAF:loc_riy5                                           Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_riy6                                          Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_riy8                                          Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_riyd                                         Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataTagged11                                     Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShow1Tagged1                                     Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRead1Tagged4                                     Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeTagged1_riyn                          Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadTagged1_riyo                                Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadTagged2_riyp                                Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP4_riyz                                         Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fStorableTagged4                                  Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fStorableTagged5                                  Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:taggedDataType2_riyG                               Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:taggedConstr1_riyI                                 Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:untag1                                             Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:untag                                              Data.Tagged                                    src/Data/Tagged.hs:439:1-5                                                                                          0.0    0.0      0         0
CAF:reproxy1                                           Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataTagged7                                      Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataTagged4                                      Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataTagged3                                      Data.Tagged                                    <no location info>                                                                                                  0.0    0.0      0         0
dataCast2                                              Data.Tagged                                    src/Data/Tagged.hs:140:3-24                                                                                         0.0    0.0      0         0
dataCast1                                              Data.Tagged                                    src/Data/Tagged.hs:139:3-24                                                                                         0.0    0.0      0         0
dataTypeOf                                             Data.Tagged                                    src/Data/Tagged.hs:138:3-31                                                                                         0.0    0.0      0         0
toConstr                                               Data.Tagged                                    src/Data/Tagged.hs:134:3-27                                                                                         0.0    0.0      0         0
gunfold                                                Data.Tagged                                    src/Data/Tagged.hs:(135,3)-(137,24)                                                                                 0.0    0.0      0         0
gfoldl                                                 Data.Tagged                                    src/Data/Tagged.hs:133:3-40                                                                                         0.0    0.0      0         0
showsPrec                                              Data.Tagged                                    src/Data/Tagged.hs:(152,5)-(154,22)                                                                                 0.0    0.0      0         0
readsPrec                                              Data.Tagged                                    src/Data/Tagged.hs:(157,5)-(158,74)                                                                                 0.0    0.0      0         0
readsPrec.\                                            Data.Tagged                                    src/Data/Tagged.hs:158:9-74                                                                                         0.0    0.0      0         0
stimes                                                 Data.Tagged                                    src/Data/Tagged.hs:163:5-46                                                                                         0.0    0.0      0         0
<>                                                     Data.Tagged                                    src/Data/Tagged.hs:162:5-42                                                                                         0.0    0.0      0         0
mappend                                                Data.Tagged                                    src/Data/Tagged.hs:167:5-18                                                                                         0.0    0.0      0         0
mempty                                                 Data.Tagged                                    src/Data/Tagged.hs:166:5-26                                                                                         0.0    0.0      0         0
fmap                                                   Data.Tagged                                    src/Data/Tagged.hs:175:5-36                                                                                         0.0    0.0      0         0
bimap                                                  Data.Tagged                                    src/Data/Tagged.hs:181:5-39                                                                                         0.0    0.0      0         0
bifoldMap                                              Data.Tagged                                    src/Data/Tagged.hs:188:5-34                                                                                         0.0    0.0      0         0
bitraverse                                             Data.Tagged                                    src/Data/Tagged.hs:192:5-46                                                                                         0.0    0.0      0         0
rnf                                                    Data.Tagged                                    src/Data/Tagged.hs:198:5-26                                                                                         0.0    0.0      0         0
liftEq                                                 Data.Tagged                                    src/Data/Tagged.hs:216:5-44                                                                                         0.0    0.0      0         0
liftCompare                                            Data.Tagged                                    src/Data/Tagged.hs:219:5-51                                                                                         0.0    0.0      0         0
liftReadsPrec                                          Data.Tagged                                    src/Data/Tagged.hs:(222,5)-(223,67)                                                                                 0.0    0.0      0         0
liftReadsPrec.\                                        Data.Tagged                                    src/Data/Tagged.hs:223:9-67                                                                                         0.0    0.0      0         0
liftShowsPrec                                          Data.Tagged                                    src/Data/Tagged.hs:(226,5)-(228,15)                                                                                 0.0    0.0      0         0
liftEq2                                                Data.Tagged                                    src/Data/Tagged.hs:231:5-47                                                                                         0.0    0.0      0         0
liftCompare2                                           Data.Tagged                                    src/Data/Tagged.hs:234:5-54                                                                                         0.0    0.0      0         0
liftReadsPrec2                                         Data.Tagged                                    src/Data/Tagged.hs:(237,5)-(238,67)                                                                                 0.0    0.0      0         0
liftReadsPrec2.\                                       Data.Tagged                                    src/Data/Tagged.hs:238:9-67                                                                                         0.0    0.0      0         0
liftShowsPrec2                                         Data.Tagged                                    src/Data/Tagged.hs:(241,5)-(243,15)                                                                                 0.0    0.0      0         0
*>                                                     Data.Tagged                                    src/Data/Tagged.hs:252:5-14                                                                                         0.0    0.0      0         0
<*>                                                    Data.Tagged                                    src/Data/Tagged.hs:250:5-40                                                                                         0.0    0.0      0         0
pure                                                   Data.Tagged                                    src/Data/Tagged.hs:248:5-17                                                                                         0.0    0.0      0         0
return                                                 Data.Tagged                                    src/Data/Tagged.hs:256:5-17                                                                                         0.0    0.0      0         0
>>                                                     Data.Tagged                                    src/Data/Tagged.hs:260:5-15                                                                                         0.0    0.0      0         0
>>=                                                    Data.Tagged                                    src/Data/Tagged.hs:258:5-24                                                                                         0.0    0.0      0         0
foldl1                                                 Data.Tagged                                    src/Data/Tagged.hs:272:5-27                                                                                         0.0    0.0      0         0
foldr1                                                 Data.Tagged                                    src/Data/Tagged.hs:274:5-27                                                                                         0.0    0.0      0         0
foldl                                                  Data.Tagged                                    src/Data/Tagged.hs:270:5-32                                                                                         0.0    0.0      0         0
foldr                                                  Data.Tagged                                    src/Data/Tagged.hs:268:5-32                                                                                         0.0    0.0      0         0
foldMap                                                Data.Tagged                                    src/Data/Tagged.hs:264:5-30                                                                                         0.0    0.0      0         0
fold                                                   Data.Tagged                                    src/Data/Tagged.hs:266:5-23                                                                                         0.0    0.0      0         0
sequence                                               Data.Tagged                                    src/Data/Tagged.hs:284:5-40                                                                                         0.0    0.0      0         0
mapM                                                   Data.Tagged                                    src/Data/Tagged.hs:282:5-42                                                                                         0.0    0.0      0         0
sequenceA                                              Data.Tagged                                    src/Data/Tagged.hs:280:5-39                                                                                         0.0    0.0      0         0
traverse                                               Data.Tagged                                    src/Data/Tagged.hs:278:5-42                                                                                         0.0    0.0      0         0
enumFromThenTo                                         Data.Tagged                                    src/Data/Tagged.hs:(295,5)-(296,41)                                                                                 0.0    0.0      0         0
enumFromTo                                             Data.Tagged                                    src/Data/Tagged.hs:294:5-66                                                                                         0.0    0.0      0         0
enumFromThen                                           Data.Tagged                                    src/Data/Tagged.hs:293:5-70                                                                                         0.0    0.0      0         0
enumFrom                                               Data.Tagged                                    src/Data/Tagged.hs:292:5-49                                                                                         0.0    0.0      0         0
fromEnum                                               Data.Tagged                                    src/Data/Tagged.hs:291:5-36                                                                                         0.0    0.0      0         0
toEnum                                                 Data.Tagged                                    src/Data/Tagged.hs:290:5-28                                                                                         0.0    0.0      0         0
pred                                                   Data.Tagged                                    src/Data/Tagged.hs:289:5-20                                                                                         0.0    0.0      0         0
succ                                                   Data.Tagged                                    src/Data/Tagged.hs:288:5-20                                                                                         0.0    0.0      0         0
fromInteger                                            Data.Tagged                                    src/Data/Tagged.hs:305:5-38                                                                                         0.0    0.0      0         0
signum                                                 Data.Tagged                                    src/Data/Tagged.hs:304:5-24                                                                                         0.0    0.0      0         0
abs                                                    Data.Tagged                                    src/Data/Tagged.hs:303:5-18                                                                                         0.0    0.0      0         0
negate                                                 Data.Tagged                                    src/Data/Tagged.hs:302:5-24                                                                                         0.0    0.0      0         0
*                                                      Data.Tagged                                    src/Data/Tagged.hs:301:5-20                                                                                         0.0    0.0      0         0
-                                                      Data.Tagged                                    src/Data/Tagged.hs:300:5-20                                                                                         0.0    0.0      0         0
+                                                      Data.Tagged                                    src/Data/Tagged.hs:299:5-20                                                                                         0.0    0.0      0         0
toRational                                             Data.Tagged                                    src/Data/Tagged.hs:308:5-40                                                                                         0.0    0.0      0         0
toInteger                                              Data.Tagged                                    src/Data/Tagged.hs:319:5-38                                                                                         0.0    0.0      0         0
divMod                                                 Data.Tagged                                    src/Data/Tagged.hs:(317,5)-(318,27)                                                                                 0.0    0.0      0         0
divMod.b                                               Data.Tagged                                    src/Data/Tagged.hs:318:9-27                                                                                         0.0    0.0      0         0
divMod.a                                               Data.Tagged                                    src/Data/Tagged.hs:318:9-27                                                                                         0.0    0.0      0         0
divMod.(...)                                           Data.Tagged                                    src/Data/Tagged.hs:318:9-27                                                                                         0.0    0.0      0         0
quotRem                                                Data.Tagged                                    src/Data/Tagged.hs:(315,5)-(316,28)                                                                                 0.0    0.0      0         0
quotRem.b                                              Data.Tagged                                    src/Data/Tagged.hs:316:9-28                                                                                         0.0    0.0      0         0
quotRem.a                                              Data.Tagged                                    src/Data/Tagged.hs:316:9-28                                                                                         0.0    0.0      0         0
quotRem.(...)                                          Data.Tagged                                    src/Data/Tagged.hs:316:9-28                                                                                         0.0    0.0      0         0
mod                                                    Data.Tagged                                    src/Data/Tagged.hs:314:5-20                                                                                         0.0    0.0      0         0
div                                                    Data.Tagged                                    src/Data/Tagged.hs:313:5-20                                                                                         0.0    0.0      0         0
rem                                                    Data.Tagged                                    src/Data/Tagged.hs:312:5-20                                                                                         0.0    0.0      0         0
quot                                                   Data.Tagged                                    src/Data/Tagged.hs:311:5-22                                                                                         0.0    0.0      0         0
fromRational                                           Data.Tagged                                    src/Data/Tagged.hs:324:5-40                                                                                         0.0    0.0      0         0
recip                                                  Data.Tagged                                    src/Data/Tagged.hs:323:5-22                                                                                         0.0    0.0      0         0
/                                                      Data.Tagged                                    src/Data/Tagged.hs:322:5-20                                                                                         0.0    0.0      0         0
atanh                                                  Data.Tagged                                    src/Data/Tagged.hs:342:5-22                                                                                         0.0    0.0      0         0
acosh                                                  Data.Tagged                                    src/Data/Tagged.hs:341:5-22                                                                                         0.0    0.0      0         0
asinh                                                  Data.Tagged                                    src/Data/Tagged.hs:340:5-22                                                                                         0.0    0.0      0         0
tanh                                                   Data.Tagged                                    src/Data/Tagged.hs:339:5-20                                                                                         0.0    0.0      0         0
cosh                                                   Data.Tagged                                    src/Data/Tagged.hs:338:5-20                                                                                         0.0    0.0      0         0
sinh                                                   Data.Tagged                                    src/Data/Tagged.hs:337:5-20                                                                                         0.0    0.0      0         0
atan                                                   Data.Tagged                                    src/Data/Tagged.hs:336:5-20                                                                                         0.0    0.0      0         0
acos                                                   Data.Tagged                                    src/Data/Tagged.hs:335:5-20                                                                                         0.0    0.0      0         0
asin                                                   Data.Tagged                                    src/Data/Tagged.hs:334:5-20                                                                                         0.0    0.0      0         0
tan                                                    Data.Tagged                                    src/Data/Tagged.hs:333:5-18                                                                                         0.0    0.0      0         0
cos                                                    Data.Tagged                                    src/Data/Tagged.hs:332:5-18                                                                                         0.0    0.0      0         0
sin                                                    Data.Tagged                                    src/Data/Tagged.hs:331:5-18                                                                                         0.0    0.0      0         0
logBase                                                Data.Tagged                                    src/Data/Tagged.hs:344:5-25                                                                                         0.0    0.0      0         0
**                                                     Data.Tagged                                    src/Data/Tagged.hs:343:5-22                                                                                         0.0    0.0      0         0
sqrt                                                   Data.Tagged                                    src/Data/Tagged.hs:330:5-20                                                                                         0.0    0.0      0         0
log                                                    Data.Tagged                                    src/Data/Tagged.hs:329:5-18                                                                                         0.0    0.0      0         0
exp                                                    Data.Tagged                                    src/Data/Tagged.hs:328:5-18                                                                                         0.0    0.0      0         0
pi                                                     Data.Tagged                                    src/Data/Tagged.hs:327:5-18                                                                                         0.0    0.0      0         0
floor                                                  Data.Tagged                                    src/Data/Tagged.hs:352:5-30                                                                                         0.0    0.0      0         0
ceiling                                                Data.Tagged                                    src/Data/Tagged.hs:351:5-34                                                                                         0.0    0.0      0         0
round                                                  Data.Tagged                                    src/Data/Tagged.hs:350:5-30                                                                                         0.0    0.0      0         0
truncate                                               Data.Tagged                                    src/Data/Tagged.hs:349:5-36                                                                                         0.0    0.0      0         0
properFraction                                         Data.Tagged                                    src/Data/Tagged.hs:(347,5)-(348,33)                                                                                 0.0    0.0      0         0
properFraction.b                                       Data.Tagged                                    src/Data/Tagged.hs:348:9-33                                                                                         0.0    0.0      0         0
properFraction.a                                       Data.Tagged                                    src/Data/Tagged.hs:348:9-33                                                                                         0.0    0.0      0         0
properFraction.(...)                                   Data.Tagged                                    src/Data/Tagged.hs:348:9-33                                                                                         0.0    0.0      0         0
atan2                                                  Data.Tagged                                    src/Data/Tagged.hs:368:5-24                                                                                         0.0    0.0      0         0
isIEEE                                                 Data.Tagged                                    src/Data/Tagged.hs:367:5-32                                                                                         0.0    0.0      0         0
isNegativeZero                                         Data.Tagged                                    src/Data/Tagged.hs:366:5-48                                                                                         0.0    0.0      0         0
isDenormalized                                         Data.Tagged                                    src/Data/Tagged.hs:365:5-48                                                                                         0.0    0.0      0         0
isInfinite                                             Data.Tagged                                    src/Data/Tagged.hs:364:5-40                                                                                         0.0    0.0      0         0
isNaN                                                  Data.Tagged                                    src/Data/Tagged.hs:363:5-30                                                                                         0.0    0.0      0         0
scaleFloat                                             Data.Tagged                                    src/Data/Tagged.hs:362:5-38                                                                                         0.0    0.0      0         0
significand                                            Data.Tagged                                    src/Data/Tagged.hs:361:5-34                                                                                         0.0    0.0      0         0
exponent                                               Data.Tagged                                    src/Data/Tagged.hs:360:5-36                                                                                         0.0    0.0      0         0
encodeFloat                                            Data.Tagged                                    src/Data/Tagged.hs:359:5-46                                                                                         0.0    0.0      0         0
decodeFloat                                            Data.Tagged                                    src/Data/Tagged.hs:358:5-42                                                                                         0.0    0.0      0         0
floatRange                                             Data.Tagged                                    src/Data/Tagged.hs:357:5-40                                                                                         0.0    0.0      0         0
floatDigits                                            Data.Tagged                                    src/Data/Tagged.hs:356:5-42                                                                                         0.0    0.0      0         0
floatRadix                                             Data.Tagged                                    src/Data/Tagged.hs:355:5-40                                                                                         0.0    0.0      0         0
popCount                                               Data.Tagged                                    src/Data/Tagged.hs:391:5-36                                                                                         0.0    0.0      0         0
rotateR                                                Data.Tagged                                    src/Data/Tagged.hs:380:5-47                                                                                         0.0    0.0      0         0
rotateL                                                Data.Tagged                                    src/Data/Tagged.hs:379:5-47                                                                                         0.0    0.0      0         0
unsafeShiftR                                           Data.Tagged                                    src/Data/Tagged.hs:390:5-57                                                                                         0.0    0.0      0         0
shiftR                                                 Data.Tagged                                    src/Data/Tagged.hs:377:5-45                                                                                         0.0    0.0      0         0
unsafeShiftL                                           Data.Tagged                                    src/Data/Tagged.hs:389:5-57                                                                                         0.0    0.0      0         0
shiftL                                                 Data.Tagged                                    src/Data/Tagged.hs:376:5-45                                                                                         0.0    0.0      0         0
isSigned                                               Data.Tagged                                    src/Data/Tagged.hs:386:5-36                                                                                         0.0    0.0      0         0
bitSize                                                Data.Tagged                                    src/Data/Tagged.hs:387:5-34                                                                                         0.0    0.0      0         0
bitSizeMaybe                                           Data.Tagged                                    src/Data/Tagged.hs:394:5-44                                                                                         0.0    0.0      0         0
testBit                                                Data.Tagged                                    src/Data/Tagged.hs:385:5-38                                                                                         0.0    0.0      0         0
complementBit                                          Data.Tagged                                    src/Data/Tagged.hs:384:5-59                                                                                         0.0    0.0      0         0
clearBit                                               Data.Tagged                                    src/Data/Tagged.hs:383:5-49                                                                                         0.0    0.0      0         0
setBit                                                 Data.Tagged                                    src/Data/Tagged.hs:382:5-45                                                                                         0.0    0.0      0         0
bit                                                    Data.Tagged                                    src/Data/Tagged.hs:381:5-26                                                                                         0.0    0.0      0         0
zeroBits                                               Data.Tagged                                    src/Data/Tagged.hs:395:5-30                                                                                         0.0    0.0      0         0
rotate                                                 Data.Tagged                                    src/Data/Tagged.hs:378:5-45                                                                                         0.0    0.0      0         0
shift                                                  Data.Tagged                                    src/Data/Tagged.hs:375:5-43                                                                                         0.0    0.0      0         0
complement                                             Data.Tagged                                    src/Data/Tagged.hs:374:5-49                                                                                         0.0    0.0      0         0
xor                                                    Data.Tagged                                    src/Data/Tagged.hs:373:5-48                                                                                         0.0    0.0      0         0
.|.                                                    Data.Tagged                                    src/Data/Tagged.hs:372:5-44                                                                                         0.0    0.0      0         0
.&.                                                    Data.Tagged                                    src/Data/Tagged.hs:371:5-44                                                                                         0.0    0.0      0         0
countTrailingZeros                                     Data.Tagged                                    src/Data/Tagged.hs:403:5-56                                                                                         0.0    0.0      0         0
countLeadingZeros                                      Data.Tagged                                    src/Data/Tagged.hs:402:5-54                                                                                         0.0    0.0      0         0
finiteBitSize                                          Data.Tagged                                    src/Data/Tagged.hs:400:5-46                                                                                         0.0    0.0      0         0
fromString                                             Data.Tagged                                    src/Data/Tagged.hs:408:5-36                                                                                         0.0    0.0      0         0
poke                                                   Data.Tagged                                    src/Data/Tagged.hs:418:5-46                                                                                         0.0    0.0      0         0
peek                                                   Data.Tagged                                    src/Data/Tagged.hs:417:5-44                                                                                         0.0    0.0      0         0
pokeByteOff                                            Data.Tagged                                    src/Data/Tagged.hs:422:5-64                                                                                         0.0    0.0      0         0
peekByteOff                                            Data.Tagged                                    src/Data/Tagged.hs:421:5-62                                                                                         0.0    0.0      0         0
pokeElemOff                                            Data.Tagged                                    src/Data/Tagged.hs:420:5-64                                                                                         0.0    0.0      0         0
peekElemOff                                            Data.Tagged                                    src/Data/Tagged.hs:419:5-62                                                                                         0.0    0.0      0         0
alignment                                              Data.Tagged                                    src/Data/Tagged.hs:(414,5)-(416,48)                                                                                 0.0    0.0      0         0
alignment.a                                            Data.Tagged                                    src/Data/Tagged.hs:416:9-48                                                                                         0.0    0.0      0         0
alignment.(...)                                        Data.Tagged                                    src/Data/Tagged.hs:416:9-48                                                                                         0.0    0.0      0         0
sizeOf                                                 Data.Tagged                                    src/Data/Tagged.hs:(411,5)-(413,48)                                                                                 0.0    0.0      0         0
sizeOf.a                                               Data.Tagged                                    src/Data/Tagged.hs:413:9-48                                                                                         0.0    0.0      0         0
sizeOf.(...)                                           Data.Tagged                                    src/Data/Tagged.hs:413:9-48                                                                                         0.0    0.0      0         0
maxBound                                               Data.Tagged                                    src/Data/Tagged.hs:104:18-24                                                                                        0.0    0.0      0         0
minBound                                               Data.Tagged                                    src/Data/Tagged.hs:104:18-24                                                                                        0.0    0.0      0         0
unsafeRangeSize                                        Data.Tagged                                    src/Data/Tagged.hs:104:14-15                                                                                        0.0    0.0      0         0
rangeSize                                              Data.Tagged                                    src/Data/Tagged.hs:104:14-15                                                                                        0.0    0.0      0         0
inRange                                                Data.Tagged                                    src/Data/Tagged.hs:104:14-15                                                                                        0.0    0.0      0         0
unsafeIndex                                            Data.Tagged                                    src/Data/Tagged.hs:104:14-15                                                                                        0.0    0.0      0         0
index                                                  Data.Tagged                                    src/Data/Tagged.hs:104:14-15                                                                                        0.0    0.0      0         0
range                                                  Data.Tagged                                    src/Data/Tagged.hs:104:14-15                                                                                        0.0    0.0      0         0
min                                                    Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
max                                                    Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
>=                                                     Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
>                                                      Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
<=                                                     Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
<                                                      Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
compare                                                Data.Tagged                                    src/Data/Tagged.hs:104:9-11                                                                                         0.0    0.0      0         0
/=                                                     Data.Tagged                                    src/Data/Tagged.hs:104:5-6                                                                                          0.0    0.0      0         0
==                                                     Data.Tagged                                    src/Data/Tagged.hs:104:5-6                                                                                          0.0    0.0      0         0
unTagged                                               Data.Tagged                                    src/Data/Tagged.hs:103:31-38                                                                                        0.0    0.0      0         0
untag                                                  Data.Tagged                                    src/Data/Tagged.hs:439:1-16                                                                                         0.0    0.0      0         0
reproxy                                                Data.Tagged                                    src/Data/Tagged.hs:488:1-17                                                                                         0.0    0.0      0         0
isPermutationBy                                        Data.HashMap.List                              Data/HashMap/List.hs:(22,1)-(34,25)                                                                                 0.0    0.0      0         0
isPermutationBy.go                                     Data.HashMap.List                              Data/HashMap/List.hs:(26,5)-(34,25)                                                                                 0.0    0.0      0         0
isPermutationBy.f'                                     Data.HashMap.List                              Data/HashMap/List.hs:24:5-15                                                                                        0.0    0.0      0         0
unorderedCompare                                       Data.HashMap.List                              Data/HashMap/List.hs:(50,1)-(61,101)                                                                                0.0    0.0      0         0
unorderedCompare.go                                    Data.HashMap.List                              Data/HashMap/List.hs:(52,5)-(55,51)                                                                                 0.0    0.0      0         0
unorderedCompare.cmpA                                  Data.HashMap.List                              Data/HashMap/List.hs:57:5-40                                                                                        0.0    0.0      0         0
unorderedCompare.cmpB                                  Data.HashMap.List                              Data/HashMap/List.hs:58:5-40                                                                                        0.0    0.0      0         0
unorderedCompare.inB                                   Data.HashMap.List                              Data/HashMap/List.hs:60:5-101                                                                                       0.0    0.0      0         0
unorderedCompare.inB.\                                 Data.HashMap.List                              Data/HashMap/List.hs:60:86-96                                                                                       0.0    0.0      0         0
unorderedCompare.inB.\                                 Data.HashMap.List                              Data/HashMap/List.hs:60:37-47                                                                                       0.0    0.0      0         0
unorderedCompare.inA                                   Data.HashMap.List                              Data/HashMap/List.hs:61:5-101                                                                                       0.0    0.0      0         0
unorderedCompare.inA.\                                 Data.HashMap.List                              Data/HashMap/List.hs:61:86-96                                                                                       0.0    0.0      0         0
unorderedCompare.inA.\                                 Data.HashMap.List                              Data/HashMap/List.hs:61:37-47                                                                                       0.0    0.0      0         0
deleteBy                                               Data.HashMap.List                              Data/HashMap/List.hs:(65,1)-(66,83)                                                                                 0.0    0.0      0         0
CAF:$fDataHashMap7                                     Data.HashMap.Base                              <no location info>                                                                                                  0.0    0.0      0         0
CAF:hashMapDataType                                    Data.HashMap.Base                              Data/HashMap/Base.hs:202:1-15                                                                                       0.0    0.0      0         0
CAF:fromListConstr                                     Data.HashMap.Base                              Data/HashMap/Base.hs:199:1-14                                                                                       0.0    0.0      0         0
CAF:$fDataHashMap15                                    Data.HashMap.Base                              <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataHashMap14                                    Data.HashMap.Base                              <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataHashMap12                                    Data.HashMap.Base                              <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataHashMap9                                     Data.HashMap.Base                              <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrd2HashMap_$cliftCompare2                       Data.HashMap.Base                              Data/HashMap/Base.hs:277:5-16                                                                                       0.0    0.0      0         0
CAF:$fEq2HashMap_$cliftEq2                             Data.HashMap.Base                              Data/HashMap/Base.hs:244:5-11                                                                                       0.0    0.0      0         0
CAF:$fEq2HashMap                                       Data.HashMap.Base                              Data/HashMap/Base.hs:243:10-20                                                                                      0.0    0.0      0         0
CAF:empty                                              Data.HashMap.Base                              Data/HashMap/Base.hs:399:1-5                                                                                        0.0    0.0      0         0
CAF:$fFunctorHashMap_$cfmap                            Data.HashMap.Base                              Data/HashMap/Base.hs:168:5-8                                                                                        0.0    0.0      0         0
CAF:$fFoldableHashMap_$cnull                           Data.HashMap.Base                              Data/HashMap/Base.hs:170:10-38                                                                                      0.0    0.0      0         0
CAF:bitsPerSubkey                                      Data.HashMap.Base                              Data/HashMap/Base.hs:1319:1-13                                                                                      0.0    0.0      0         0
CAF:maxChildren                                        Data.HashMap.Base                              Data/HashMap/Base.hs:1322:1-11                                                                                      0.0    0.0      0         0
CAF:subkeyMask                                         Data.HashMap.Base                              Data/HashMap/Base.hs:1325:1-10                                                                                      0.0    0.0      0         0
CAF:fullNodeMask                                       Data.HashMap.Base                              Data/HashMap/Base.hs:1342:1-12                                                                                      0.0    0.0      0         0
rnf                                                    Data.HashMap.Base                              Data/HashMap/Base.hs:143:5-35                                                                                       0.0    0.0      0         0
rnf                                                    Data.HashMap.Base                              Data/HashMap/Base.hs:(161,5)-(165,39)                                                                               0.0    0.0      0         0
fmap                                                   Data.HashMap.Base                              Data/HashMap/Base.hs:168:5-14                                                                                       0.0    0.0      0         0
foldr                                                  Data.HashMap.Base                              Data/HashMap/Base.hs:171:5-36                                                                                       0.0    0.0      0         0
<>                                                     Data.HashMap.Base                              Data/HashMap/Base.hs:175:3-14                                                                                       0.0    0.0      0         0
mappend                                                Data.HashMap.Base                              Data/HashMap/Base.hs:183:3-16                                                                                       0.0    0.0      0         0
mempty                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:180:3-16                                                                                       0.0    0.0      0         0
dataCast2                                              Data.HashMap.Base                              Data/HashMap/Base.hs:196:5-29                                                                                       0.0    0.0      0         0
dataTypeOf                                             Data.HashMap.Base                              Data/HashMap/Base.hs:195:5-36                                                                                       0.0    0.0      0         0
toConstr                                               Data.HashMap.Base                              Data/HashMap/Base.hs:191:5-35                                                                                       0.0    0.0      0         0
gunfold                                                Data.HashMap.Base                              Data/HashMap/Base.hs:(192,5)-(194,28)                                                                               0.0    0.0      0         0
gfoldl                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:190:5-44                                                                                       0.0    0.0      0         0
liftShowsPrec2                                         Data.HashMap.Base                              Data/HashMap/Base.hs:(210,5)-(214,42)                                                                               0.0    0.0      0         0
liftShowsPrec2.sl                                      Data.HashMap.Base                              Data/HashMap/Base.hs:214:9-42                                                                                       0.0    0.0      0         0
liftShowsPrec                                          Data.HashMap.Base                              Data/HashMap/Base.hs:217:5-53                                                                                       0.0    0.0      0         0
liftReadsPrec                                          Data.HashMap.Base                              Data/HashMap/Base.hs:(220,5)-(224,32)                                                                               0.0    0.0      0         0
liftReadsPrec.rl'                                      Data.HashMap.Base                              Data/HashMap/Base.hs:224:9-32                                                                                       0.0    0.0      0         0
readListPrec                                           Data.HashMap.Base                              Data/HashMap/Base.hs:233:5-38                                                                                       0.0    0.0      0         0
readPrec                                               Data.HashMap.Base                              Data/HashMap/Base.hs:(228,5)-(231,26)                                                                               0.0    0.0      0         0
showsPrec                                              Data.HashMap.Base                              Data/HashMap/Base.hs:(236,5)-(237,47)                                                                               0.0    0.0      0         0
traverse                                               Data.HashMap.Base                              Data/HashMap/Base.hs:240:5-42                                                                                       0.0    0.0      0         0
liftEq2                                                Data.HashMap.Base                              Data/HashMap/Base.hs:244:5-19                                                                                       0.0    0.0      0         0
liftEq                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:247:5-23                                                                                       0.0    0.0      0         0
==                                                     Data.HashMap.Base                              Data/HashMap/Base.hs:251:5-26                                                                                       0.0    0.0      0         0
liftCompare2                                           Data.HashMap.Base                              Data/HashMap/Base.hs:277:5-22                                                                                       0.0    0.0      0         0
liftCompare                                            Data.HashMap.Base                              Data/HashMap/Base.hs:280:5-29                                                                                       0.0    0.0      0         0
compare                                                Data.HashMap.Base                              Data/HashMap/Base.hs:289:5-33                                                                                       0.0    0.0      0         0
liftHashWithSalt2                                      Data.HashMap.Base                              Data/HashMap/Base.hs:(331,5)-(351,76)                                                                               0.0    0.0      0         0
liftHashWithSalt2.go                                   Data.HashMap.Base                              Data/HashMap/Base.hs:(334,9)-(341,33)                                                                               0.0    0.0      0         0
liftHashWithSalt2.hashCollisionWithSalt                Data.HashMap.Base                              Data/HashMap/Base.hs:(347,9)-(348,59)                                                                               0.0    0.0      0         0
liftHashWithSalt2.arrayHashesSorted                    Data.HashMap.Base                              Data/HashMap/Base.hs:351:9-76                                                                                       0.0    0.0      0         0
liftHashWithSalt2.hashLeafWithSalt                     Data.HashMap.Base                              Data/HashMap/Base.hs:344:9-54                                                                                       0.0    0.0      0         0
liftHashWithSalt                                       Data.HashMap.Base                              Data/HashMap/Base.hs:354:5-57                                                                                       0.0    0.0      0         0
hashWithSalt                                           Data.HashMap.Base                              Data/HashMap/Base.hs:(358,5)-(378,76)                                                                               0.0    0.0      0         0
hashWithSalt.go                                        Data.HashMap.Base                              Data/HashMap/Base.hs:(361,9)-(368,33)                                                                               0.0    0.0      0         0
hashWithSalt.hashCollisionWithSalt                     Data.HashMap.Base                              Data/HashMap/Base.hs:(374,9)-(375,59)                                                                               0.0    0.0      0         0
hashWithSalt.arrayHashesSorted                         Data.HashMap.Base                              Data/HashMap/Base.hs:378:9-76                                                                                       0.0    0.0      0         0
hashWithSalt.hashLeafWithSalt                          Data.HashMap.Base                              Data/HashMap/Base.hs:371:9-76                                                                                       0.0    0.0      0         0
toList                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:1356:5-21                                                                                      0.0    0.0      0         0
fromList                                               Data.HashMap.Base                              Data/HashMap/Base.hs:1355:5-23                                                                                      0.0    0.0      0         0
==                                                     Data.HashMap.Base                              Data/HashMap/Base.hs:140:13-14                                                                                      0.0    0.0      0         0
adjust                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(716,1)-(739,23)                                                                               0.0    0.0      0         0
adjust.h0                                              Data.HashMap.Base                              Data/HashMap/Base.hs:718:5-16                                                                                       0.0    0.0      0         0
adjust.go                                              Data.HashMap.Base                              Data/HashMap/Base.hs:(719,5)-(739,23)                                                                               0.0    0.0      0         0
adjust.go.ary'                                         Data.HashMap.Base                              Data/HashMap/Base.hs:735:13-40                                                                                      0.0    0.0      0         0
adjust.go.st'                                          Data.HashMap.Base                              Data/HashMap/Base.hs:734:13-46                                                                                      0.0    0.0      0         0
adjust.go.st                                           Data.HashMap.Base                              Data/HashMap/Base.hs:733:13-32                                                                                      0.0    0.0      0         0
adjust.go.i                                            Data.HashMap.Base                              Data/HashMap/Base.hs:732:13-28                                                                                      0.0    0.0      0         0
adjust.go.ary'                                         Data.HashMap.Base                              Data/HashMap/Base.hs:727:27-54                                                                                      0.0    0.0      0         0
adjust.go.st'                                          Data.HashMap.Base                              Data/HashMap/Base.hs:726:27-60                                                                                      0.0    0.0      0         0
adjust.go.st                                           Data.HashMap.Base                              Data/HashMap/Base.hs:725:27-46                                                                                      0.0    0.0      0         0
adjust.go.i                                            Data.HashMap.Base                              Data/HashMap/Base.hs:730:13-31                                                                                      0.0    0.0      0         0
adjust.go.m                                            Data.HashMap.Base                              Data/HashMap/Base.hs:729:13-24                                                                                      0.0    0.0      0         0
update                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:746:1-24                                                                                       0.0    0.0      0         0
alter                                                  Data.HashMap.Base                              Data/HashMap/Base.hs:(754,1)-(757,27)                                                                               0.0    0.0      0         0
delete                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(661,1)-(710,23)                                                                               0.0    0.0      0         0
delete.h0                                              Data.HashMap.Base                              Data/HashMap/Base.hs:663:5-16                                                                                       0.0    0.0      0         0
delete.go                                              Data.HashMap.Base                              Data/HashMap/Base.hs:(664,5)-(710,23)                                                                               0.0    0.0      0         0
delete.go.ary'                                         Data.HashMap.Base                              Data/HashMap/Base.hs:696:21-41                                                                                      0.0    0.0      0         0
delete.go.bm                                           Data.HashMap.Base                              Data/HashMap/Base.hs:697:21-75                                                                                      0.0    0.0      0         0
delete.go.st'                                          Data.HashMap.Base                              Data/HashMap/Base.hs:691:13-46                                                                                      0.0    0.0      0         0
delete.go.st                                           Data.HashMap.Base                              Data/HashMap/Base.hs:690:13-33                                                                                      0.0    0.0      0         0
delete.go.i                                            Data.HashMap.Base                              Data/HashMap/Base.hs:700:13-25                                                                                      0.0    0.0      0         0
delete.go.bIndexed                                     Data.HashMap.Base                              Data/HashMap/Base.hs:684:23-84                                                                                      0.0    0.0      0         0
delete.go.st'                                          Data.HashMap.Base                              Data/HashMap/Base.hs:672:17-50                                                                                      0.0    0.0      0         0
delete.go.st                                           Data.HashMap.Base                              Data/HashMap/Base.hs:671:17-35                                                                                      0.0    0.0      0         0
delete.go.i                                            Data.HashMap.Base                              Data/HashMap/Base.hs:688:13-31                                                                                      0.0    0.0      0         0
delete.go.m                                            Data.HashMap.Base                              Data/HashMap/Base.hs:687:13-24                                                                                      0.0    0.0      0         0
unsafeInsertWith                                       Data.HashMap.Base                              Data/HashMap/Base.hs:(626,1)-(655,76)                                                                               0.0    0.0      0         0
unsafeInsertWith.h0                                    Data.HashMap.Base                              Data/HashMap/Base.hs:628:5-16                                                                                       0.0    0.0      0         0
unsafeInsertWith.go                                    Data.HashMap.Base                              Data/HashMap/Base.hs:(630,5)-(655,76)                                                                               0.0    0.0      0         0
unsafeInsertWith.go.i                                  Data.HashMap.Base                              Data/HashMap/Base.hs:652:13-25                                                                                      0.0    0.0      0         0
unsafeInsertWith.go.i                                  Data.HashMap.Base                              Data/HashMap/Base.hs:646:13-31                                                                                      0.0    0.0      0         0
unsafeInsertWith.go.m                                  Data.HashMap.Base                              Data/HashMap/Base.hs:645:13-24                                                                                      0.0    0.0      0         0
insertWith                                             Data.HashMap.Base                              Data/HashMap/Base.hs:(591,1)-(619,76)                                                                               0.0    0.0      0         0
insertWith.h0                                          Data.HashMap.Base                              Data/HashMap/Base.hs:593:5-16                                                                                       0.0    0.0      0         0
insertWith.go                                          Data.HashMap.Base                              Data/HashMap/Base.hs:(594,5)-(619,76)                                                                               0.0    0.0      0         0
insertWith.go.ary'                                     Data.HashMap.Base                              Data/HashMap/Base.hs:614:13-40                                                                                      0.0    0.0      0         0
insertWith.go.st'                                      Data.HashMap.Base                              Data/HashMap/Base.hs:613:13-48                                                                                      0.0    0.0      0         0
insertWith.go.st                                       Data.HashMap.Base                              Data/HashMap/Base.hs:612:13-32                                                                                      0.0    0.0      0         0
insertWith.go.i                                        Data.HashMap.Base                              Data/HashMap/Base.hs:616:13-25                                                                                      0.0    0.0      0         0
insertWith.go.ary'                                     Data.HashMap.Base                              Data/HashMap/Base.hs:607:17-44                                                                                      0.0    0.0      0         0
insertWith.go.st'                                      Data.HashMap.Base                              Data/HashMap/Base.hs:606:17-52                                                                                      0.0    0.0      0         0
insertWith.go.st                                       Data.HashMap.Base                              Data/HashMap/Base.hs:605:17-36                                                                                      0.0    0.0      0         0
insertWith.go.ary'                                     Data.HashMap.Base                              Data/HashMap/Base.hs:602:17-55                                                                                      0.0    0.0      0         0
insertWith.go.i                                        Data.HashMap.Base                              Data/HashMap/Base.hs:610:13-31                                                                                      0.0    0.0      0         0
insertWith.go.m                                        Data.HashMap.Base                              Data/HashMap/Base.hs:609:13-24                                                                                      0.0    0.0      0         0
fromList                                               Data.HashMap.Base                              Data/HashMap/Base.hs:1187:1-60                                                                                      0.0    0.0      0         0
fromList.\                                             Data.HashMap.Base                              Data/HashMap/Base.hs:1187:36-53                                                                                     0.0    0.0      0         0
unsafeInsert                                           Data.HashMap.Base                              Data/HashMap/Base.hs:(528,1)-(558,76)                                                                               0.0    0.0      0         0
unsafeInsert.h0                                        Data.HashMap.Base                              Data/HashMap/Base.hs:530:5-16                                                                                       0.0    0.0      0         0
unsafeInsert.go                                        Data.HashMap.Base                              Data/HashMap/Base.hs:(531,5)-(558,76)                                                                               0.0    0.0      0         0
unsafeInsert.go.i                                      Data.HashMap.Base                              Data/HashMap/Base.hs:555:13-25                                                                                      0.0    0.0      0         0
unsafeInsert.go.i                                      Data.HashMap.Base                              Data/HashMap/Base.hs:549:13-31                                                                                      0.0    0.0      0         0
unsafeInsert.go.m                                      Data.HashMap.Base                              Data/HashMap/Base.hs:548:13-24                                                                                      0.0    0.0      0         0
intersectionWithKey                                    Data.HashMap.Base                              Data/HashMap/Base.hs:(988,1)-(992,28)                                                                               0.0    0.0      0         0
intersectionWithKey.go                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(990,5)-(992,28)                                                                               0.0    0.0      0         0
intersectionWith                                       Data.HashMap.Base                              Data/HashMap/Base.hs:(976,1)-(980,28)                                                                               0.0    0.0      0         0
intersectionWith.go                                    Data.HashMap.Base                              Data/HashMap/Base.hs:(978,5)-(980,28)                                                                               0.0    0.0      0         0
intersection                                           Data.HashMap.Base                              Data/HashMap/Base.hs:(964,1)-(968,28)                                                                               0.0    0.0      0         0
intersection.go                                        Data.HashMap.Base                              Data/HashMap/Base.hs:(966,5)-(968,28)                                                                               0.0    0.0      0         0
differenceWith                                         Data.HashMap.Base                              Data/HashMap/Base.hs:(954,1)-(958,64)                                                                               0.0    0.0      0         0
differenceWith.go                                      Data.HashMap.Base                              Data/HashMap/Base.hs:(956,5)-(958,64)                                                                               0.0    0.0      0         0
differenceWith.go.\                                    Data.HashMap.Base                              Data/HashMap/Base.hs:958:44-55                                                                                      0.0    0.0      0         0
difference                                             Data.HashMap.Base                              Data/HashMap/Base.hs:(942,1)-(946,29)                                                                               0.0    0.0      0         0
difference.go                                          Data.HashMap.Base                              Data/HashMap/Base.hs:(944,5)-(946,29)                                                                               0.0    0.0      0         0
insert                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(491,1)-(523,76)                                                                               0.0    0.0      0         0
insert.h0                                              Data.HashMap.Base                              Data/HashMap/Base.hs:493:5-16                                                                                       0.0    0.0      0         0
insert.go                                              Data.HashMap.Base                              Data/HashMap/Base.hs:(494,5)-(523,76)                                                                               0.0    0.0      0         0
insert.go.st'                                          Data.HashMap.Base                              Data/HashMap/Base.hs:516:13-48                                                                                      0.0    0.0      0         0
insert.go.st                                           Data.HashMap.Base                              Data/HashMap/Base.hs:515:13-32                                                                                      0.0    0.0      0         0
insert.go.i                                            Data.HashMap.Base                              Data/HashMap/Base.hs:520:13-25                                                                                      0.0    0.0      0         0
insert.go.st'                                          Data.HashMap.Base                              Data/HashMap/Base.hs:508:17-52                                                                                      0.0    0.0      0         0
insert.go.st                                           Data.HashMap.Base                              Data/HashMap/Base.hs:507:17-36                                                                                      0.0    0.0      0         0
insert.go.ary'                                         Data.HashMap.Base                              Data/HashMap/Base.hs:504:17-56                                                                                      0.0    0.0      0         0
insert.go.i                                            Data.HashMap.Base                              Data/HashMap/Base.hs:513:13-31                                                                                      0.0    0.0      0         0
insert.go.m                                            Data.HashMap.Base                              Data/HashMap/Base.hs:512:13-24                                                                                      0.0    0.0      0         0
!                                                      Data.HashMap.Base                              Data/HashMap/Base.hs:(464,1)-(466,59)                                                                               0.0    0.0      0         0
lookupDefault                                          Data.HashMap.Base                              Data/HashMap/Base.hs:(456,1)-(458,17)                                                                               0.0    0.0      0         0
member                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(426,1)-(428,19)                                                                               0.0    0.0      0         0
lookup                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(434,1)-(448,29)                                                                               0.0    0.0      0         0
lookup.h0                                              Data.HashMap.Base                              Data/HashMap/Base.hs:436:5-16                                                                                       0.0    0.0      0         0
lookup.go                                              Data.HashMap.Base                              Data/HashMap/Base.hs:(437,5)-(448,29)                                                                               0.0    0.0      0         0
lookup.go.m                                            Data.HashMap.Base                              Data/HashMap/Base.hs:444:13-24                                                                                      0.0    0.0      0         0
singleton                                              Data.HashMap.Base                              Data/HashMap/Base.hs:403:1-37                                                                                       0.0    0.0      0         0
hash                                                   Data.HashMap.Base                              Data/HashMap/Base.hs:137:1-28                                                                                       0.0    0.0      0         0
fromListConstr                                         Data.HashMap.Base                              Data/HashMap/Base.hs:199:1-62                                                                                       0.0    0.0      0         0
hashMapDataType                                        Data.HashMap.Base                              Data/HashMap/Base.hs:202:1-73                                                                                       0.0    0.0      0         0
equal                                                  Data.HashMap.Base                              Data/HashMap/Base.hs:(255,1)-(273,51)                                                                               0.0    0.0      0         0
equal.go                                               Data.HashMap.Base                              Data/HashMap/Base.hs:(261,5)-(271,20)                                                                               0.0    0.0      0         0
equal.leafEq                                           Data.HashMap.Base                              Data/HashMap/Base.hs:273:5-51                                                                                       0.0    0.0      0         0
cmp                                                    Data.HashMap.Base                              Data/HashMap/Base.hs:(293,1)-(311,65)                                                                               0.0    0.0      0         0
cmp.go                                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(295,5)-(309,85)                                                                               0.0    0.0      0         0
cmp.leafCompare                                        Data.HashMap.Base                              Data/HashMap/Base.hs:311:5-65                                                                                       0.0    0.0      0         0
equalKeys                                              Data.HashMap.Base                              Data/HashMap/Base.hs:(315,1)-(327,37)                                                                               0.0    0.0      0         0
equalKeys.go                                           Data.HashMap.Base                              Data/HashMap/Base.hs:(317,5)-(325,20)                                                                               0.0    0.0      0         0
equalKeys.leafEq                                       Data.HashMap.Base                              Data/HashMap/Base.hs:327:5-37                                                                                       0.0    0.0      0         0
toList'                                                Data.HashMap.Base                              Data/HashMap/Base.hs:(382,1)-(386,35)                                                                               0.0    0.0      0         0
isLeafOrCollision                                      Data.HashMap.Base                              Data/HashMap/Base.hs:(390,1)-(392,41)                                                                               0.0    0.0      0         0
empty                                                  Data.HashMap.Base                              Data/HashMap/Base.hs:399:1-13                                                                                       0.0    0.0      0         0
null                                                   Data.HashMap.Base                              Data/HashMap/Base.hs:(410,1)-(411,16)                                                                               0.0    0.0      0         0
size                                                   Data.HashMap.Base                              Data/HashMap/Base.hs:(415,1)-(421,49)                                                                               0.0    0.0      0         0
size.go                                                Data.HashMap.Base                              Data/HashMap/Base.hs:(417,5)-(421,49)                                                                               0.0    0.0      0         0
union                                                  Data.HashMap.Base                              Data/HashMap/Base.hs:766:1-23                                                                                       0.0    0.0      0         0
lookupInArray                                          Data.HashMap.Base                              Data/HashMap/Base.hs:(1202,1)-(1209,47)                                                                             0.0    0.0      0         0
lookupInArray.go                                       Data.HashMap.Base                              Data/HashMap/Base.hs:(1204,5)-(1209,47)                                                                             0.0    0.0      0         0
updateOrConcatWith                                     Data.HashMap.Base                              Data/HashMap/Base.hs:1257:1-54                                                                                      0.0    0.0      0         0
updateOrConcatWithKey                                  Data.HashMap.Base                              Data/HashMap/Base.hs:(1261,1)-(1285,15)                                                                             0.0    0.0      0         0
updateOrConcatWithKey.go                               Data.HashMap.Base                              Data/HashMap/Base.hs:(1273,9)-(1283,47)                                                                             0.0    0.0      0         0
updateOrConcatWithKey.n2                               Data.HashMap.Base                              Data/HashMap/Base.hs:1268:9-26                                                                                      0.0    0.0      0         0
updateOrConcatWithKey.n1                               Data.HashMap.Base                              Data/HashMap/Base.hs:1267:9-26                                                                                      0.0    0.0      0         0
updateOrConcatWithKey.nOnly2                           Data.HashMap.Base                              Data/HashMap/Base.hs:1266:9-65                                                                                      0.0    0.0      0         0
updateOrConcatWithKey.nOnly2.\                         Data.HashMap.Base                              Data/HashMap/Base.hs:1266:34-54                                                                                     0.0    0.0      0         0
updateOrConcatWithKey.indices                          Data.HashMap.Base                              Data/HashMap/Base.hs:1263:9-57                                                                                      0.0    0.0      0         0
updateOrConcatWithKey.indices.\                        Data.HashMap.Base                              Data/HashMap/Base.hs:1263:38-51                                                                                     0.0    0.0      0         0
indexOf                                                Data.HashMap.Base                              Data/HashMap/Base.hs:(1215,1)-(1222,47)                                                                             0.0    0.0      0         0
indexOf.go                                             Data.HashMap.Base                              Data/HashMap/Base.hs:(1217,5)-(1222,47)                                                                             0.0    0.0      0         0
updateWith                                             Data.HashMap.Base                              Data/HashMap/Base.hs:(1226,1)-(1232,52)                                                                             0.0    0.0      0         0
updateWith.go                                          Data.HashMap.Base                              Data/HashMap/Base.hs:(1228,5)-(1232,52)                                                                             0.0    0.0      0         0
updateOrSnocWith                                       Data.HashMap.Base                              Data/HashMap/Base.hs:1237:1-50                                                                                      0.0    0.0      0         0
updateOrSnocWithKey                                    Data.HashMap.Base                              Data/HashMap/Base.hs:(1242,1)-(1253,54)                                                                             0.0    0.0      0         0
updateOrSnocWithKey.go                                 Data.HashMap.Base                              Data/HashMap/Base.hs:(1244,5)-(1253,54)                                                                             0.0    0.0      0         0
clone16                                                Data.HashMap.Base                              Data/HashMap/Base.hs:(1312,1)-(1313,19)                                                                             0.0    0.0      0         0
subkeyMask                                             Data.HashMap.Base                              Data/HashMap/Base.hs:1325:1-47                                                                                      0.0    0.0      0         0
maxChildren                                            Data.HashMap.Base                              Data/HashMap/Base.hs:1322:1-59                                                                                      0.0    0.0      0         0
bitsPerSubkey                                          Data.HashMap.Base                              Data/HashMap/Base.hs:1319:1-17                                                                                      0.0    0.0      0         0
sparseIndex                                            Data.HashMap.Base                              Data/HashMap/Base.hs:1328:1-42                                                                                      0.0    0.0      0         0
CAF:newArray#                                          Data.HashMap.Array                             Data/HashMap/Array.hs:89:1-9                                                                                        0.0    0.0      0         0
CAF:readArray#                                         Data.HashMap.Array                             Data/HashMap/Array.hs:90:1-10                                                                                       0.0    0.0      0         0
CAF:writeArray#                                        Data.HashMap.Array                             Data/HashMap/Array.hs:91:1-11                                                                                       0.0    0.0      0         0
CAF:indexArray#                                        Data.HashMap.Array                             Data/HashMap/Array.hs:92:1-11                                                                                       0.0    0.0      0         0
CAF:unsafeFreezeArray#                                 Data.HashMap.Array                             Data/HashMap/Array.hs:93:1-18                                                                                       0.0    0.0      0         0
CAF:unsafeThawArray#                                   Data.HashMap.Array                             Data/HashMap/Array.hs:94:1-16                                                                                       0.0    0.0      0         0
CAF:sizeofArray#                                       Data.HashMap.Array                             Data/HashMap/Array.hs:95:1-12                                                                                       0.0    0.0      0         0
CAF:toList                                             Data.HashMap.Array                             Data/HashMap/Array.hs:397:1-6                                                                                       0.0    0.0      0         0
CAF:copyArray#                                         Data.HashMap.Array                             Data/HashMap/Array.hs:96:1-10                                                                                       0.0    0.0      0         0
CAF:thawArray#                                         Data.HashMap.Array                             Data/HashMap/Array.hs:97:1-10                                                                                       0.0    0.0      0         0
CAF:sizeofMutableArray#                                Data.HashMap.Array                             Data/HashMap/Array.hs:98:1-19                                                                                       0.0    0.0      0         0
CAF:copyMutableArray#                                  Data.HashMap.Array                             Data/HashMap/Array.hs:99:1-17                                                                                       0.0    0.0      0         0
CAF:loc_rcGM                                           Data.HashMap.Array                             <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_rcGN                                          Data.HashMap.Array                             <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_rcGP                                          Data.HashMap.Array                             <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_rcGU                                         Data.HashMap.Array                             <no location info>                                                                                                  0.0    0.0      0         0
CAF:undefinedElem                                      Data.HashMap.Array                             Data/HashMap/Array.hs:328:1-13                                                                                      0.0    0.0      0         0
show                                                   Data.HashMap.Array                             Data/HashMap/Array.hs:127:5-24                                                                                      0.0    0.0      0         0
rnf                                                    Data.HashMap.Array                             Data/HashMap/Array.hs:154:5-18                                                                                      0.0    0.0      0         0
unArray                                                Data.HashMap.Array                             Data/HashMap/Array.hs:123:7-13                                                                                      0.0    0.0      0         0
unMArray                                               Data.HashMap.Array                             Data/HashMap/Array.hs:139:7-14                                                                                      0.0    0.0      0         0
fromList                                               Data.HashMap.Array                             Data/HashMap/Array.hs:(386,1)-(394,42)                                                                              0.0    0.0      0         0
fromList.go                                            Data.HashMap.Array                             Data/HashMap/Array.hs:(392,5)-(394,42)                                                                              0.0    0.0      0         0
new_                                                   Data.HashMap.Array                             Data/HashMap/Array.hs:177:1-28                                                                                      0.0    0.0      0         0
newArray#                                              Data.HashMap.Array                             Data/HashMap/Array.hs:89:1-26                                                                                       0.0    0.0      0         0
readArray#                                             Data.HashMap.Array                             Data/HashMap/Array.hs:90:1-28                                                                                       0.0    0.0      0         0
writeArray#                                            Data.HashMap.Array                             Data/HashMap/Array.hs:91:1-30                                                                                       0.0    0.0      0         0
toList                                                 Data.HashMap.Array                             Data/HashMap/Array.hs:397:1-21                                                                                      0.0    0.0      0         0
indexArray#                                            Data.HashMap.Array                             Data/HashMap/Array.hs:92:1-30                                                                                       0.0    0.0      0         0
run2                                                   Data.HashMap.Array                             Data/HashMap/Array.hs:(236,1)-(239,32)                                                                              0.0    0.0      0         0
unsafeFreezeArray#                                     Data.HashMap.Array                             Data/HashMap/Array.hs:93:1-44                                                                                       0.0    0.0      0         0
unsafeThawArray#                                       Data.HashMap.Array                             Data/HashMap/Array.hs:94:1-40                                                                                       0.0    0.0      0         0
sizeofArray#                                           Data.HashMap.Array                             Data/HashMap/Array.hs:95:1-32                                                                                       0.0    0.0      0         0
copy                                                   Data.HashMap.Array                             Data/HashMap/Array.hs:(243,1)-(248,30)                                                                              0.0    0.0      0         0
copy.\                                                 Data.HashMap.Array                             Data/HashMap/Array.hs:(247,9)-(248,30)                                                                              0.0    0.0      0         0
copyArray#                                             Data.HashMap.Array                             Data/HashMap/Array.hs:96:1-28                                                                                       0.0    0.0      0         0
thawArray#                                             Data.HashMap.Array                             Data/HashMap/Array.hs:97:1-28                                                                                       0.0    0.0      0         0
sizeofMutableArray#                                    Data.HashMap.Array                             Data/HashMap/Array.hs:98:1-46                                                                                       0.0    0.0      0         0
copyM                                                  Data.HashMap.Array                             Data/HashMap/Array.hs:(252,1)-(257,26)                                                                              0.0    0.0      0         0
copyM.\                                                Data.HashMap.Array                             Data/HashMap/Array.hs:(256,5)-(257,26)                                                                              0.0    0.0      0         0
copyMutableArray#                                      Data.HashMap.Array                             Data/HashMap/Array.hs:99:1-42                                                                                       0.0    0.0      0         0
undefinedElem                                          Data.HashMap.Array                             Data/HashMap/Array.hs:328:1-61                                                                                      0.0    0.0      0         0
CAF:$fDataHashSet12                                    Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadHashSet2                                     Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:hashSetDataType                                    Data.HashSet                                   Data/HashSet.hs:194:1-15                                                                                            0.0    0.0      0         0
CAF:fromListConstr                                     Data.HashSet                                   Data/HashSet.hs:191:1-14                                                                                            0.0    0.0      0         0
CAF:fromListConstr2_r1GWf                              Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidHashSet2                                   Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:empty                                              Data.HashSet                                   Data/HashSet.hs:198:1-5                                                                                             0.0    0.0      0         0
CAF:toMap1                                             Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:toMap                                              Data.HashSet                                   Data/HashSet.hs:207:1-5                                                                                             0.0    0.0      0         0
CAF:fromMap1                                           Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:fromMap                                            Data.HashSet                                   Data/HashSet.hs:211:1-7                                                                                             0.0    0.0      0         0
CAF:$fMonoidHashSet3                                   Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidHashSet1                                   Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableHashSet_$cnull                           Data.HashSet                                   Data/HashSet.hs:135:10-34                                                                                           0.0    0.0      0         0
CAF:lvl1_r1GWm                                         Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableHashSet5                                 Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_d_r1GWp                                       Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_d1_r1GWr                                      Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableHashSet6_r1GWv                           Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fShowHashSet1                                     Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_r1GWA                                         Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_r1GWB                                          Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc2_r1GWD                                         Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r1GWI                                        Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataHashSet13                                    Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataHashSet7                                     Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataHashSet6                                     Data.HashSet                                   <no location info>                                                                                                  0.0    0.0      0         0
rnf                                                    Data.HashSet                                   Data/HashSet.hs:114:5-21                                                                                            0.0    0.0      0         0
==                                                     Data.HashSet                                   Data/HashSet.hs:118:5-47                                                                                            0.0    0.0      0         0
liftEq                                                 Data.HashSet                                   Data/HashSet.hs:123:5-56                                                                                            0.0    0.0      0         0
compare                                                Data.HashSet                                   Data/HashSet.hs:127:5-49                                                                                            0.0    0.0      0         0
liftCompare                                            Data.HashSet                                   Data/HashSet.hs:132:5-70                                                                                            0.0    0.0      0         0
foldr                                                  Data.HashSet                                   Data/HashSet.hs:136:5-30                                                                                            0.0    0.0      0         0
<>                                                     Data.HashSet                                   Data/HashSet.hs:141:5-16                                                                                            0.0    0.0      0         0
mappend                                                Data.HashSet                                   Data/HashSet.hs:149:5-18                                                                                            0.0    0.0      0         0
mempty                                                 Data.HashSet                                   Data/HashSet.hs:146:5-18                                                                                            0.0    0.0      0         0
readListPrec                                           Data.HashSet                                   Data/HashSet.hs:161:5-38                                                                                            0.0    0.0      0         0
readPrec                                               Data.HashSet                                   Data/HashSet.hs:(156,5)-(159,26)                                                                                    0.0    0.0      0         0
liftShowsPrec                                          Data.HashSet                                   Data/HashSet.hs:(165,5)-(166,68)                                                                                    0.0    0.0      0         0
showsPrec                                              Data.HashSet                                   Data/HashSet.hs:(170,5)-(171,47)                                                                                    0.0    0.0      0         0
dataCast1                                              Data.HashSet                                   Data/HashSet.hs:180:5-29                                                                                            0.0    0.0      0         0
dataTypeOf                                             Data.HashSet                                   Data/HashSet.hs:179:5-36                                                                                            0.0    0.0      0         0
toConstr                                               Data.HashSet                                   Data/HashSet.hs:175:5-35                                                                                            0.0    0.0      0         0
gunfold                                                Data.HashSet                                   Data/HashSet.hs:(176,5)-(178,28)                                                                                    0.0    0.0      0         0
gfoldl                                                 Data.HashSet                                   Data/HashSet.hs:174:5-44                                                                                            0.0    0.0      0         0
liftHashWithSalt                                       Data.HashSet                                   Data/HashSet.hs:184:5-71                                                                                            0.0    0.0      0         0
hashWithSalt                                           Data.HashSet                                   Data/HashSet.hs:188:5-49                                                                                            0.0    0.0      0         0
toList                                                 Data.HashSet                                   Data/HashSet.hs:315:5-21                                                                                            0.0    0.0      0         0
fromList                                               Data.HashSet                                   Data/HashSet.hs:314:5-23                                                                                            0.0    0.0      0         0
asMap                                                  Data.HashSet                                   Data/HashSet.hs:106:7-11                                                                                            0.0    0.0      0         0
fromListConstr                                         Data.HashSet                                   Data/HashSet.hs:191:1-62                                                                                            0.0    0.0      0         0
hashSetDataType                                        Data.HashSet                                   Data/HashSet.hs:194:1-60                                                                                            0.0    0.0      0         0
empty                                                  Data.HashSet                                   Data/HashSet.hs:198:1-23                                                                                            0.0    0.0      0         0
singleton                                              Data.HashSet                                   Data/HashSet.hs:202:1-40                                                                                            0.0    0.0      0         0
toMap                                                  Data.HashSet                                   Data/HashSet.hs:207:1-13                                                                                            0.0    0.0      0         0
fromMap                                                Data.HashSet                                   Data/HashSet.hs:211:1-17                                                                                            0.0    0.0      0         0
member                                                 Data.HashSet                                   Data/HashSet.hs:(241,1)-(243,30)                                                                                    0.0    0.0      0         0
insert                                                 Data.HashSet                                   Data/HashSet.hs:248:1-42                                                                                            0.0    0.0      0         0
delete                                                 Data.HashSet                                   Data/HashSet.hs:254:1-39                                                                                            0.0    0.0      0         0
difference                                             Data.HashSet                                   Data/HashSet.hs:266:1-63                                                                                            0.0    0.0      0         0
intersection                                           Data.HashSet                                   Data/HashSet.hs:272:1-67                                                                                            0.0    0.0      0         0
CAF:loc_r1sH1                                          Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r1sH2                                         Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_r1sH4                                         Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r1sH9                                        Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl1_r1sHd                                         Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_r1sHf                                         Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:n_r1sHg                                            Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl4_r1sHh                                         Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_r1sHi                                         Data.HashMap.Strict                            <no location info>                                                                                                  0.0    0.0      0         0
singleton                                              Data.HashMap.Strict                            Data/HashMap/Strict.hs:118:1-33                                                                                     0.0    0.0      0         0
intersectionWithKey                                    Data.HashMap.Strict                            Data/HashMap/Strict.hs:(424,1)-(428,28)                                                                             0.0    0.0      0         0
intersectionWithKey.go                                 Data.HashMap.Strict                            Data/HashMap/Strict.hs:(426,5)-(428,28)                                                                             0.0    0.0      0         0
intersectionWith                                       Data.HashMap.Strict                            Data/HashMap/Strict.hs:(412,1)-(416,28)                                                                             0.0    0.0      0         0
intersectionWith.go                                    Data.HashMap.Strict                            Data/HashMap/Strict.hs:(414,5)-(416,28)                                                                             0.0    0.0      0         0
differenceWith                                         Data.HashMap.Strict                            Data/HashMap/Strict.hs:(400,1)-(404,64)                                                                             0.0    0.0      0         0
differenceWith.go                                      Data.HashMap.Strict                            Data/HashMap/Strict.hs:(402,5)-(404,64)                                                                             0.0    0.0      0         0
differenceWith.go.\                                    Data.HashMap.Strict                            Data/HashMap/Strict.hs:404:44-55                                                                                    0.0    0.0      0         0
update                                                 Data.HashMap.Strict                            Data/HashMap/Strict.hs:239:1-24                                                                                     0.0    0.0      0         0
alter                                                  Data.HashMap.Strict                            Data/HashMap/Strict.hs:(246,1)-(249,27)                                                                             0.0    0.0      0         0
insert                                                 Data.HashMap.Strict                            Data/HashMap/Strict.hs:127:1-27                                                                                     0.0    0.0      0         0
insertWith                                             Data.HashMap.Strict                            Data/HashMap/Strict.hs:(139,1)-(167,76)                                                                             0.0    0.0      0         0
insertWith.h0                                          Data.HashMap.Strict                            Data/HashMap/Strict.hs:141:5-16                                                                                     0.0    0.0      0         0
insertWith.go                                          Data.HashMap.Strict                            Data/HashMap/Strict.hs:(142,5)-(167,76)                                                                             0.0    0.0      0         0
insertWith.go.ary'                                     Data.HashMap.Strict                            Data/HashMap/Strict.hs:162:13-40                                                                                    0.0    0.0      0         0
insertWith.go.st'                                      Data.HashMap.Strict                            Data/HashMap/Strict.hs:161:13-48                                                                                    0.0    0.0      0         0
insertWith.go.st                                       Data.HashMap.Strict                            Data/HashMap/Strict.hs:160:13-32                                                                                    0.0    0.0      0         0
insertWith.go.i                                        Data.HashMap.Strict                            Data/HashMap/Strict.hs:164:13-25                                                                                    0.0    0.0      0         0
insertWith.go.ary'                                     Data.HashMap.Strict                            Data/HashMap/Strict.hs:155:17-44                                                                                    0.0    0.0      0         0
insertWith.go.st'                                      Data.HashMap.Strict                            Data/HashMap/Strict.hs:154:17-52                                                                                    0.0    0.0      0         0
insertWith.go.st                                       Data.HashMap.Strict                            Data/HashMap/Strict.hs:153:17-36                                                                                    0.0    0.0      0         0
insertWith.go.ary'                                     Data.HashMap.Strict                            Data/HashMap/Strict.hs:150:17-51                                                                                    0.0    0.0      0         0
insertWith.go.i                                        Data.HashMap.Strict                            Data/HashMap/Strict.hs:158:13-31                                                                                    0.0    0.0      0         0
insertWith.go.m                                        Data.HashMap.Strict                            Data/HashMap/Strict.hs:157:13-24                                                                                    0.0    0.0      0         0
unsafeInsertWith                                       Data.HashMap.Strict                            Data/HashMap/Strict.hs:(173,1)-(203,76)                                                                             0.0    0.0      0         0
unsafeInsertWith.h0                                    Data.HashMap.Strict                            Data/HashMap/Strict.hs:175:5-16                                                                                     0.0    0.0      0         0
unsafeInsertWith.go                                    Data.HashMap.Strict                            Data/HashMap/Strict.hs:(176,5)-(203,76)                                                                             0.0    0.0      0         0
unsafeInsertWith.go.i                                  Data.HashMap.Strict                            Data/HashMap/Strict.hs:200:13-25                                                                                    0.0    0.0      0         0
unsafeInsertWith.go.i                                  Data.HashMap.Strict                            Data/HashMap/Strict.hs:194:13-31                                                                                    0.0    0.0      0         0
unsafeInsertWith.go.m                                  Data.HashMap.Strict                            Data/HashMap/Strict.hs:193:13-24                                                                                    0.0    0.0      0         0
unsafeInsertWith.go.l'                                 Data.HashMap.Strict                            Data/HashMap/Strict.hs:181:29-48                                                                                    0.0    0.0      0         0
adjust                                                 Data.HashMap.Strict                            Data/HashMap/Strict.hs:(209,1)-(232,23)                                                                             0.0    0.0      0         0
adjust.h0                                              Data.HashMap.Strict                            Data/HashMap/Strict.hs:211:5-16                                                                                     0.0    0.0      0         0
adjust.go                                              Data.HashMap.Strict                            Data/HashMap/Strict.hs:(212,5)-(232,23)                                                                             0.0    0.0      0         0
adjust.go.ary'                                         Data.HashMap.Strict                            Data/HashMap/Strict.hs:228:13-40                                                                                    0.0    0.0      0         0
adjust.go.st'                                          Data.HashMap.Strict                            Data/HashMap/Strict.hs:227:13-46                                                                                    0.0    0.0      0         0
adjust.go.st                                           Data.HashMap.Strict                            Data/HashMap/Strict.hs:226:13-32                                                                                    0.0    0.0      0         0
adjust.go.i                                            Data.HashMap.Strict                            Data/HashMap/Strict.hs:225:13-28                                                                                    0.0    0.0      0         0
adjust.go.ary'                                         Data.HashMap.Strict                            Data/HashMap/Strict.hs:220:27-54                                                                                    0.0    0.0      0         0
adjust.go.st'                                          Data.HashMap.Strict                            Data/HashMap/Strict.hs:219:27-60                                                                                    0.0    0.0      0         0
adjust.go.st                                           Data.HashMap.Strict                            Data/HashMap/Strict.hs:218:27-46                                                                                    0.0    0.0      0         0
adjust.go.i                                            Data.HashMap.Strict                            Data/HashMap/Strict.hs:223:13-31                                                                                    0.0    0.0      0         0
adjust.go.m                                            Data.HashMap.Strict                            Data/HashMap/Strict.hs:222:13-24                                                                                    0.0    0.0      0         0
fromList                                               Data.HashMap.Strict                            Data/HashMap/Strict.hs:438:1-64                                                                                     0.0    0.0      0         0
fromList.\                                             Data.HashMap.Strict                            Data/HashMap/Strict.hs:438:37-57                                                                                    0.0    0.0      0         0
updateWith                                             Data.HashMap.Strict                            Data/HashMap/Strict.hs:(462,1)-(468,52)                                                                             0.0    0.0      0         0
updateWith.go                                          Data.HashMap.Strict                            Data/HashMap/Strict.hs:(464,5)-(468,52)                                                                             0.0    0.0      0         0
updateWith.go.v'                                       Data.HashMap.Strict                            Data/HashMap/Strict.hs:467:41-49                                                                                    0.0    0.0      0         0
updateOrSnocWith                                       Data.HashMap.Strict                            Data/HashMap/Strict.hs:478:1-50                                                                                     0.0    0.0      0         0
updateOrSnocWithKey                                    Data.HashMap.Strict                            Data/HashMap/Strict.hs:(488,1)-(500,54)                                                                             0.0    0.0      0         0
updateOrSnocWithKey.go                                 Data.HashMap.Strict                            Data/HashMap/Strict.hs:(490,5)-(500,54)                                                                             0.0    0.0      0         0
updateOrSnocWithKey.go.v'                              Data.HashMap.Strict                            Data/HashMap/Strict.hs:499:41-53                                                                                    0.0    0.0      0         0
updateOrSnocWithKey.go.l                               Data.HashMap.Strict                            Data/HashMap/Strict.hs:495:17-36                                                                                    0.0    0.0      0         0
CAF:$fRandomCSize3                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:q_rl4I                                             System.Random                                  System/Random.hs:481:8                                                                                              0.0    0.0      0         0
CAF:int32Count_r4d1                                    System.Random                                  System/Random.hs:511:1-10                                                                                           0.0    0.0      0         0
CAF:lvl6_rl4O                                          System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomGenStdGen_$cnext                           System.Random                                  System/Random.hs:218:3-6                                                                                            0.0    0.0      0         0
CAF:$dmrandomIO3                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0        16
CAF:theStdGen                                          System.Random                                  System/Random.hs:566:1-9                                                                                            0.0    0.0      0         0
CAF:getStdGen1                                         System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:getStdGen                                          System.Random                                  System/Random.hs:563:1-9                                                                                            0.0    0.0      0         0
CAF:stdRange                                           System.Random                                  System/Random.hs:514:1-8                                                                                            0.0    0.0      0        24
CAF:ds_rl4P                                            System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:genlo_rl4Q                                         System.Random                                  System/Random.hs:472:9-13                                                                                           0.0    0.0      0         0
CAF:lvl7_rl4R                                          System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:genhi_rl4S                                         System.Random                                  System/Random.hs:472:16-20                                                                                          0.0    0.0      0         0
CAF:b_rl4T                                             System.Random                                  System/Random.hs:473:8                                                                                              0.0    0.0      0         0
CAF:$fRandomInt9                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt7                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCDouble_f                                  System.Random                                  System/Random.hs:586:14                                                                                             0.0    0.0      0         0
CAF:$fRandomCDouble1                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInteger1                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomBool1                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomChar1                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt2                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt1                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt15                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt14                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt5                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt4                                       System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt12                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomInt11                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord2                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord1                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord15                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord14                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord5                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord4                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord9                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord7                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord12                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomWord11                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCChar2                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCChar1                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCSChar2                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCSChar1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUChar2                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUChar1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCShort2                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCShort1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUShort2                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUShort1                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCInt2                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCInt1                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUInt2                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUInt1                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCLong2                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCLong1                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCULong2                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCULong1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCPtrdiff2                                  System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCPtrdiff1                                  System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCSize2                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCSize1                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCWchar2                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCWchar1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCSigAtomic2                                System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCSigAtomic1                                System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCLLong2                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCLLong1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCULLong2                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCULLong1                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCIntPtr2                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCIntPtr1                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUIntPtr2                                  System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUIntPtr1                                  System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCIntMax2                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCIntMax1                                   System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUIntMax2                                  System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCUIntMax1                                  System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:w_rl4U                                             System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadStdGen2                                      System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomDouble_twoto53                             System.Random                                  System/Random.hs:417:5-11                                                                                           0.0    0.0      0         0
CAF:$fRandomDouble1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCFloat_twoto24                             System.Random                                  System/Random.hs:434:6-12                                                                                           0.0    0.0      0         0
CAF:$fRandomFloat1                                     System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomCFloat1                                    System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomGenStdGen_$csplit                          System.Random                                  System/Random.hs:224:3-7                                                                                            0.0    0.0      0         0
CAF:newStdGen1                                         System.Random                                  <no location info>                                                                                                  0.0    0.0      0         0
CAF:newStdGen                                          System.Random                                  System/Random.hs:573:1-9                                                                                            0.0    0.0      0         0
CAF:$fRandomDouble_$s$crandomR                         System.Random                                  System/Random.hs:409:3-9                                                                                            0.0    0.0      0         0
CAF:$fRandomCFloat_$s$crandomR                         System.Random                                  System/Random.hs:438:3-9                                                                                            0.0    0.0      0         0
CAF:$fRandomFloat_$s$crandomR                          System.Random                                  System/Random.hs:421:3-9                                                                                            0.0    0.0      0         0
CAF:$fRandomCDouble_$s$crandomR                        System.Random                                  System/Random.hs:443:3-9                                                                                            0.0    0.0      0         0
split                                                  System.Random                                  System/Random.hs:224:3-18                                                                                           0.0    0.0      0         0
genRange                                               System.Random                                  System/Random.hs:219:3-23                                                                                           0.0    0.0      0         0
next                                                   System.Random                                  System/Random.hs:218:3-17                                                                                           0.0    0.0      0    720000
showsPrec                                              System.Random                                  System/Random.hs:(227,3)-(230,19)                                                                                   0.0    0.0      0         0
readsPrec                                              System.Random                                  System/Random.hs:(233,3)-(241,34)                                                                                   0.0    0.0      0         0
readsPrec.\                                            System.Random                                  System/Random.hs:(234,6)-(236,31)                                                                                   0.0    0.0      0         0
readsPrec.try_read                                     System.Random                                  System/Random.hs:(238,7)-(241,34)                                                                                   0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:343:3-83                                                                                           0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:342:3-43                                                                                           0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:345:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:345:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:346:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:346:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:347:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:347:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:348:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:348:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:349:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:349:34-61                                                                                          0.0    0.0      0    160000
random                                                 System.Random                                  System/Random.hs:353:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:353:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:355:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:355:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:356:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:356:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:357:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:357:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:358:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:358:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:360:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:360:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:361:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:361:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:362:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:362:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:363:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:363:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:364:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:364:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:365:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:365:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:366:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:366:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:367:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:367:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:368:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:368:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:369:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:369:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:370:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:370:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:371:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:371:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:372:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:372:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:373:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:373:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:374:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:374:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:375:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:375:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:376:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:376:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:377:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:377:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:378:64-85                                                                                          0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:378:34-61                                                                                          0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:384:3-49                                                                                           0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:(381,3)-(383,30)                                                                                   0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:399:3-49                                                                                           0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:(387,3)-(397,30)                                                                                   0.0    0.0      0         0
randomR.bool2Int                                       System.Random                                  System/Random.hs:(392,10)-(393,27)                                                                                  0.0    0.0      0         0
randomR.int2Bool                                       System.Random                                  System/Random.hs:(396,10)-(397,30)                                                                                  0.0    0.0      0         0
random.mask53                                          System.Random                                  System/Random.hs:418:5-24                                                                                           0.0    0.0      0         0
random.twoto53                                         System.Random                                  System/Random.hs:417:5-38                                                                                           0.0    0.0      0        16
randomR                                                System.Random                                  System/Random.hs:409:3-27                                                                                           0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:(422,3)-(434,39)                                                                                   0.0    0.0      0         0
random.mask24                                          System.Random                                  System/Random.hs:433:6-25                                                                                           0.0    0.0      0         0
random.twoto24                                         System.Random                                  System/Random.hs:434:6-39                                                                                           0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:421:3-27                                                                                           0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:(439,3)-(440,58)                                                                                   0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:438:3-27                                                                                           0.0    0.0      0         0
random                                                 System.Random                                  System/Random.hs:447:3-22                                                                                           0.0    0.0      0         0
randomR                                                System.Random                                  System/Random.hs:443:3-27                                                                                           0.0    0.0      0         0
randomIO                                               System.Random                                  System/Random.hs:326:3-40                                                                                           0.0    0.0      0         0
randomRIO                                              System.Random                                  System/Random.hs:321:3-49                                                                                           0.0    0.0      0         0
randoms                                                System.Random                                  System/Random.hs:316:3-68                                                                                           0.0    0.0      0         0
randoms.\                                              System.Random                                  System/Random.hs:316:42-67                                                                                          0.0    0.0      0    640000
randomRs                                               System.Random                                  System/Random.hs:310:3-76                                                                                           0.0    0.0      0         0
randomRs.\                                             System.Random                                  System/Random.hs:310:42-75                                                                                          0.0    0.0      0         0
genRange                                               System.Random                                  System/Random.hs:173:4-36                                                                                           0.0    0.0      0         0
getStdRandom                                           System.Random                                  System/Random.hs:(586,1)-(587,26)                                                                                   0.0    0.0      0         0
getStdRandom.swap                                      System.Random                                  System/Random.hs:587:9-26                                                                                           0.0    0.0      0         0
newStdGen                                              System.Random                                  System/Random.hs:573:1-46                                                                                           0.0    0.0      0         0
getStdGen                                              System.Random                                  System/Random.hs:563:1-32                                                                                           0.0    0.0      0        48
setStdGen                                              System.Random                                  System/Random.hs:559:1-42                                                                                           0.0    0.0      0         0
theStdGen                                              System.Random                                  System/Random.hs:(566,1)-(568,15)                                                                                   0.0    0.0      0        72
mkStdRNG                                               System.Random                                  System/Random.hs:(452,1)-(455,55)                                                                                   0.0    0.0      0       192
getTime                                                System.Random                                  System/Random.hs:(131,1)-(134,60)                                                                                   0.0    0.0      0       320
getTime.daytime                                        System.Random                                  System/Random.hs:133:7-44                                                                                           0.0    0.0      0        64
stdFromString                                          System.Random                                  System/Random.hs:(248,1)-(250,67)                                                                                   0.0    0.0      0         0
stdFromString.num                                      System.Random                                  System/Random.hs:250:15-67                                                                                          0.0    0.0      0         0
stdFromString.num.\                                    System.Random                                  System/Random.hs:250:43-51                                                                                          0.0    0.0      0         0
stdFromString.rest                                     System.Random                                  System/Random.hs:249:15-38                                                                                          0.0    0.0      0         0
stdFromString.cs                                       System.Random                                  System/Random.hs:249:15-38                                                                                          0.0    0.0      0         0
stdFromString.(...)                                    System.Random                                  System/Random.hs:249:15-38                                                                                          0.0    0.0      0         0
mkStdGen                                               System.Random                                  System/Random.hs:259:1-40                                                                                           0.0    0.0      0         0
createStdGen                                           System.Random                                  System/Random.hs:276:1-44                                                                                           0.0    0.0      0        24
mkStdGen32                                             System.Random                                  System/Random.hs:(267,1)-(273,36)                                                                                   0.0    0.0      0        16
mkStdGen32.s2                                          System.Random                                  System/Random.hs:273:9-36                                                                                           0.0    0.0      0         0
mkStdGen32.s1                                          System.Random                                  System/Random.hs:272:9-39                                                                                           0.0    0.0      0         0
mkStdGen32.q                                           System.Random                                  System/Random.hs:272:9-39                                                                                           0.0    0.0      0         0
mkStdGen32.(...)                                       System.Random                                  System/Random.hs:272:9-39                                                                                           0.0    0.0      0        32
mkStdGen32.s                                           System.Random                                  System/Random.hs:271:9-45                                                                                           0.0    0.0      0         0
randomBounded                                          System.Random                                  System/Random.hs:458:1-44                                                                                           0.0    0.0      0         0
randomFrac                                             System.Random                                  System/Random.hs:494:1-54                                                                                           0.0    0.0      0         0
randomIvalDouble                                       System.Random                                  System/Random.hs:(497,1)-(508,28)                                                                                   0.0    0.0      0         0
randomIvalDouble.scaled_x                              System.Random                                  System/Random.hs:(503,14)-(506,39)                                                                                  0.0    0.0      0         0
randomIvalInteger.f.g'                                 System.Random                                  System/Random.hs:488:25-39                                                                                          0.0    0.0      0         0
randomIvalInteger.f.x                                  System.Random                                  System/Random.hs:488:25-39                                                                                          0.0    0.0      0         0
randomIvalInteger.f.(...)                              System.Random                                  System/Random.hs:488:25-39                                                                                          0.0    0.0      0        16
randomIvalInteger.b                                    System.Random                                  System/Random.hs:473:8-54                                                                                           0.0    0.0      0        80
randomIvalInteger.genhi                                System.Random                                  System/Random.hs:472:8-36                                                                                           0.0    0.0      0         0
randomIvalInteger.genlo                                System.Random                                  System/Random.hs:472:8-36                                                                                           0.0    0.0      0        16
randomIvalInteger.(...)                                System.Random                                  System/Random.hs:472:8-36                                                                                           0.0    0.0      0        16
randomIvalInteger.q                                    System.Random                                  System/Random.hs:481:8-15                                                                                           0.0    0.0      0         0
randomIvalInteger.k                                    System.Random                                  System/Random.hs:482:8-20                                                                                           0.0    0.0      0   1040016
int32Count                                             System.Random                                  System/Random.hs:511:1-74                                                                                           0.0    0.0      0         0
stdRange                                               System.Random                                  System/Random.hs:514:1-26                                                                                           0.0    0.0      0         0
stdNext.z'                                             System.Random                                  System/Random.hs:519:17-58                                                                                          0.0    0.0      0         0
stdNext.z                                              System.Random                                  System/Random.hs:520:17-34                                                                                          0.0    0.0      0    480000
stdNext.s1''                                           System.Random                                  System/Random.hs:524:17-64                                                                                          0.0    0.0      0    480000
stdNext.s1'                                            System.Random                                  System/Random.hs:523:17-59                                                                                          0.0    0.0      0         0
stdNext.k                                              System.Random                                  System/Random.hs:522:17-38                                                                                          0.0    0.0      0         0
stdNext.s2'                                            System.Random                                  System/Random.hs:527:17-60                                                                                          0.0    0.0      0         0
stdNext.k'                                             System.Random                                  System/Random.hs:526:17-38                                                                                          0.0    0.0      0         0
stdSplit                                               System.Random                                  System/Random.hs:(531,1)-(544,53)                                                                                   0.0    0.0      0         0
stdSplit.left                                          System.Random                                  System/Random.hs:535:25-50                                                                                          0.0    0.0      0         0
stdSplit.right                                         System.Random                                  System/Random.hs:536:25-50                                                                                          0.0    0.0      0         0
stdSplit.new_s1                                        System.Random                                  System/Random.hs:(538,25)-(539,58)                                                                                  0.0    0.0      0         0
stdSplit.new_s2                                        System.Random                                  System/Random.hs:(541,25)-(542,58)                                                                                  0.0    0.0      0         0
stdSplit.t2                                            System.Random                                  System/Random.hs:544:25-53                                                                                          0.0    0.0      0         0
stdSplit.t1                                            System.Random                                  System/Random.hs:544:25-53                                                                                          0.0    0.0      0         0
stdSplit.(...)                                         System.Random                                  System/Random.hs:544:25-53                                                                                          0.0    0.0      0         0
/-/                                                    Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:70:5-17                                                                         0.0    0.0      0         0
/-/                                                    Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:(73,5)-(75,33)                                                                  0.0    0.0      0         0
/-/.b1                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:74:15-46                                                                        0.0    0.0      0         0
/-/.b2                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:75:15-33                                                                        0.0    0.0      0         0
/-/                                                    Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:(78,5)-(82,33)                                                                  0.0    0.0      0         0
/-/.b1                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:79:15-47                                                                        0.0    0.0      0         0
/-/.b2                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:80:15-47                                                                        0.0    0.0      0         0
/-/.b3                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:81:15-46                                                                        0.0    0.0      0         0
/-/.b4                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:82:15-33                                                                        0.0    0.0      0         0
/-/                                                    Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:(85,5)-(89,33)                                                                  0.0    0.0      0         0
/-/.b1                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:86:15-47                                                                        0.0    0.0      0         0
/-/.b2                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:87:15-47                                                                        0.0    0.0      0         0
/-/.b3                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:88:15-46                                                                        0.0    0.0      0         0
/-/.b4                                                 Data.UUID.Types.Internal.Builder               Data/UUID/Types/Internal/Builder.hs:89:15-33                                                                        0.0    0.0      0         0
CAF:toByteString                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:258:1-12                                                                                0.0    0.0      0         0
CAF:$dIP1_rlMX                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc4_rlN2                                          Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc5_rlN3                                          Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc6_rlN4                                          Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataUUID4                                        Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:toText                                             Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:321:1-6                                                                                 0.0    0.0      0         0
CAF:$fDataUUID_$cshow                                  Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:485:5-8                                                                                 0.0    0.0      0         0
CAF:fromText                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:317:1-8                                                                                 0.0    0.0      0         0
CAF:$fReadUUID2                                        Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:fromByteString                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:254:1-14                                                                                0.0    0.0      0         0
CAF:nil                                                Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:249:1-3                                                                                 0.0    0.0      0         0
CAF:$fRandomUUID_f                                     Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomUUID4                                      Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRandomUUID1                                      Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataUUID6                                        Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataUUID2                                        Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:uuidType                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:545:1-8                                                                                 0.0    0.0      0         0
CAF:makeFromWords                                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:198:1-13                                                                                0.0    0.0      0         0
CAF:fromWords                                          Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:109:1-9                                                                                 0.0    0.0      0         0
CAF:$fNFDataUUID_$crnf                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:471:5-7                                                                                 0.0    0.0      0         0
CAF:$fNFDataUUID                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:470:10-20                                                                               0.0    0.0      0         0
CAF:toLazyASCIIBytes                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:415:1-16                                                                                0.0    0.0      0         0
CAF:null                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:241:1-4                                                                                 0.0    0.0      0         0
CAF:lvl6_rlNx                                          Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl10_rlNB                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_rlND                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl14_rlNF                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl16_rlNH                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl18_rlNJ                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl20_rlNL                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_rlNN                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl24_rlNP                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl26_rlNR                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl30_rlNV                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl32_rlNX                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:ds1_rlO1                                           Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lexeme6_rlO3                                       Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lexeme1_rlO4                                       Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadUnpackedUUID1                                Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadUnpackedUUID_$creadListPrec                  Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:15-18                                                                               0.0    0.0      0         0
CAF:$fReadUnpackedUUID3                                Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fReadUnpackedUUID_$creadList                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:15-18                                                                               0.0    0.0      0         0
CAF:lvl48_rlOh                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl49_rlOi                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl50_rlOj                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl51_rlOk                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl52_rlOl                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl53_rlOm                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl54_rlOn                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl55_rlOo                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl56_rlOp                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl57_rlOq                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl58_rlOr                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl59_rlOs                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataUUID5                                        Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl64_rlOC                                         Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fBinaryUUID1                                      Data.UUID.Types.Internal                       <no location info>                                                                                                  0.0    0.0      0         0
random                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(439,5)-(444,32)                                                                        0.0    0.0      0         0
random.g4                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:444:15-32                                                                               0.0    0.0      0         0
random.w4                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:444:15-32                                                                               0.0    0.0      0         0
random.(...)                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:444:15-32                                                                               0.0    0.0      0         0
random.g3                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:443:15-32                                                                               0.0    0.0      0         0
random.w3                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:443:15-32                                                                               0.0    0.0      0         0
random.(...)                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:443:15-32                                                                               0.0    0.0      0         0
random.g2                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:442:15-32                                                                               0.0    0.0      0         0
random.w2                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:442:15-32                                                                               0.0    0.0      0         0
random.(...)                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:442:15-32                                                                               0.0    0.0      0         0
random.g1                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:441:15-32                                                                               0.0    0.0      0         0
random.w1                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:441:15-32                                                                               0.0    0.0      0         0
random.(...)                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:441:15-32                                                                               0.0    0.0      0         0
random.g0                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:440:15-31                                                                               0.0    0.0      0         0
random.w0                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:440:15-31                                                                               0.0    0.0      0         0
random.(...)                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:440:15-31                                                                               0.0    0.0      0         0
randomR                                                Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:445:5-22                                                                                0.0    0.0      0         0
rnf                                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:471:5-23                                                                                0.0    0.0      0         0
hash                                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(474,5)-(477,33)                                                                        0.0    0.0      0         0
hashWithSalt                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(478,5)-(482,27)                                                                        0.0    0.0      0         0
show                                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:485:5-19                                                                                0.0    0.0      0         0
readsPrec                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(488,5)-(492,43)                                                                        0.0    0.0      0         0
readsPrec.noSpaces                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:489:13-44                                                                               0.0    0.0      0         0
get                                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:534:5-69                                                                                0.0    0.0      0         0
put                                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(532,5)-(533,76)                                                                        0.0    0.0      0         0
dataTypeOf                                             Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:542:5-27                                                                                0.0    0.0      0         0
toConstr                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:540:5-66                                                                                0.0    0.0      0         0
gunfold                                                Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:541:5-34                                                                                0.0    0.0      0         0
pokeByteOff                                            Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(515,5)-(529,42)                                                                        0.0    0.0      0         0
peekByteOff                                            Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(499,5)-(513,9)                                                                         0.0    0.0      0         0
alignment                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:497:5-19                                                                                0.0    0.0      0         0
sizeOf                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:496:5-17                                                                                0.0    0.0      0         0
/-/                                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(465,5)-(468,33)                                                                        0.0    0.0      0         0
/-/.b1                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:466:15-47                                                                               0.0    0.0      0         0
/-/.b2                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:467:15-46                                                                               0.0    0.0      0         0
/-/.b3                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:468:15-33                                                                               0.0    0.0      0         0
>=                                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:31-33                                                                               0.0    0.0      0         0
>                                                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:31-33                                                                               0.0    0.0      0         0
<=                                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:31-33                                                                               0.0    0.0      0         0
<                                                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:31-33                                                                               0.0    0.0      0         0
compare                                                Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:31-33                                                                               0.0    0.0      0         0
==                                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:27-28                                                                               0.0    0.0      0         0
showsPrec                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:21-24                                                                               0.0    0.0      0         0
readListPrec                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:15-18                                                                               0.0    0.0      0         0
readPrec                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:15-18                                                                               0.0    0.0      0         0
readList                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:125:15-18                                                                               0.0    0.0      0         0
>=                                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:84:19-21                                                                                0.0    0.0      0         0
>                                                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:84:19-21                                                                                0.0    0.0      0         0
<=                                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:84:19-21                                                                                0.0    0.0      0         0
<                                                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:84:19-21                                                                                0.0    0.0      0         0
compare                                                Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:84:19-21                                                                                0.0    0.0      0         0
==                                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:84:15-16                                                                                0.0    0.0      0         0
node_5                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:123:9-14                                                                                0.0    0.0      0         0
node_4                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:122:9-14                                                                                0.0    0.0      0         0
node_3                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:121:9-14                                                                                0.0    0.0      0         0
node_2                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:120:9-14                                                                                0.0    0.0      0         0
node_1                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:119:9-14                                                                                0.0    0.0      0         0
node_0                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:118:9-14                                                                                0.0    0.0      0         0
clock_seq_low                                          Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:117:9-21                                                                                0.0    0.0      0         0
clock_seq_hi_res                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:116:9-24                                                                                0.0    0.0      0         0
time_hi_and_version                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:115:9-27                                                                                0.0    0.0      0         0
time_mid                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:114:9-16                                                                                0.0    0.0      0         0
time_low                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:113:9-16                                                                                0.0    0.0      0         0
toLazyASCIIBytes                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(415,1)-(421,18)                                                                        0.0    0.0      0         0
toASCIIBytes                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:328:1-55                                                                                0.0    0.0      0         0
pokeASCII                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(332,1)-(372,54)                                                                        0.0    0.0      0         0
pokeASCII.w3                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:342:5-35                                                                                0.0    0.0      0         0
pokeASCII.w2                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:342:5-35                                                                                0.0    0.0      0         0
pokeASCII.w1                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:342:5-35                                                                                0.0    0.0      0         0
pokeASCII.w0                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:342:5-35                                                                                0.0    0.0      0         0
pokeASCII.(...)                                        Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:342:5-35                                                                                0.0    0.0      0         0
pokeASCII.pokeDash                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:345:5-39                                                                                0.0    0.0      0         0
pokeASCII.pokeSingle                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(347,5)-(355,29)                                                                        0.0    0.0      0         0
pokeASCII.pokeDouble                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(358,5)-(366,29)                                                                        0.0    0.0      0         0
pokeASCII.pokeWord                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(368,5)-(369,76)                                                                        0.0    0.0      0         0
pokeASCII.toDigit                                      Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:372:5-54                                                                                0.0    0.0      0         0
toWords                                                Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:102:1-45                                                                                0.0    0.0      0         0
fromLazyASCIIBytes                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(425,1)-(432,22)                                                                        0.0    0.0      0         0
fromASCIIBytes                                         Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(379,1)-(411,39)                                                                        0.0    0.0      0         0
fromASCIIBytes.wellFormed                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(387,5)-(389,36)                                                                        0.0    0.0      0         0
fromASCIIBytes.dashIx                                  Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:384:5-47                                                                                0.0    0.0      0         0
fromASCIIBytes.single                                  Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(391,5)-(392,66)                                                                        0.0    0.0      0         0
fromASCIIBytes.double                                  Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(393,5)-(394,62)                                                                        0.0    0.0      0         0
fromASCIIBytes.combine                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:396:5-78                                                                                0.0    0.0      0         0
fromASCIIBytes.octet                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(398,5)-(401,29)                                                                        0.0    0.0      0         0
fromASCIIBytes.toDigit                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(404,5)-(411,39)                                                                        0.0    0.0      0         0
fromWords                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:109:1-16                                                                                0.0    0.0      0         0
unpack                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(128,1)-(145,7)                                                                         0.0    0.0      0         0
unpack.build                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(132,5)-(145,7)                                                                         0.0    0.0      0         0
pack                                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(148,1)-(156,59)                                                                        0.0    0.0      0         0
fromByteString                                         Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:254:1-37                                                                                0.0    0.0      0         0
fromList                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(230,1)-(232,20)                                                                        0.0    0.0      0         0
fromGenNext                                            Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(452,1)-(458,39)                                                                        0.0    0.0      0         0
buildFromBytes                                         Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(207,1)-(210,36)                                                                        0.0    0.0      0         0
buildFromBytes.b6'                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:209:11-46                                                                               0.0    0.0      0         0
buildFromBytes.b8'                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:210:11-36                                                                               0.0    0.0      0         0
makeFromBytes                                          Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(189,1)-(194,31)                                                                        0.0    0.0      0         0
makeFromBytes.w0                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:191:11-31                                                                               0.0    0.0      0         0
makeFromBytes.w1                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:192:11-31                                                                               0.0    0.0      0         0
makeFromBytes.w2                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:193:11-31                                                                               0.0    0.0      0         0
makeFromBytes.w3                                       Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:194:11-31                                                                               0.0    0.0      0         0
word                                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(165,1)-(168,44)                                                                        0.0    0.0      0         0
toByteString                                           Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:258:1-31                                                                                0.0    0.0      0         0
toList                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(221,1)-(225,48)                                                                        0.0    0.0      0         0
byte                                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:172:1-44                                                                                0.0    0.0      0         0
w8to16                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(176,1)-(180,25)                                                                        0.0    0.0      0         0
w8to16.w0                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:179:5-25                                                                                0.0    0.0      0         0
w8to16.w1                                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:180:5-25                                                                                0.0    0.0      0         0
buildFromWords                                         Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(214,1)-(216,48)                                                                        0.0    0.0      0         0
buildFromWords.w1'                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:215:11-68                                                                               0.0    0.0      0         0
buildFromWords.w2'                                     Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:216:11-48                                                                               0.0    0.0      0         0
makeFromWords                                          Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:198:1-20                                                                                0.0    0.0      0         0
null                                                   Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:241:1-15                                                                                0.0    0.0      0         0
nil                                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:249:1-18                                                                                0.0    0.0      0         0
fromText                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:317:1-32                                                                                0.0    0.0      0         0
fromString                                             Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(270,1)-(272,53)                                                                        0.0    0.0      0         0
fromString.validFmt                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:272:9-53                                                                                0.0    0.0      0         0
fromString'                                            Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(275,1)-(293,29)                                                                        0.0    0.0      0         0
fromString'.hexWord                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(283,11)-(284,57)                                                                       0.0    0.0      0         0
fromString'.hexByte                                    Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(287,11)-(293,29)                                                                       0.0    0.0      0         0
fromString'.hexByte.bothHex                            Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:291:21-60                                                                               0.0    0.0      0         0
fromString'.hexByte.octet                              Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:292:21-77                                                                               0.0    0.0      0         0
toText                                                 Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:321:1-26                                                                                0.0    0.0      0         0
toString                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(302,1)-(312,71)                                                                        0.0    0.0      0         0
toString.hexw                                          Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(304,11)-(305,71)                                                                       0.0    0.0      0         0
toString.hexw'                                         Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:(308,11)-(309,77)                                                                       0.0    0.0      0         0
toString.hexn                                          Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:312:11-71                                                                               0.0    0.0      0         0
uuidType                                               Data.UUID.Types.Internal                       Data/UUID/Types/Internal.hs:545:1-46                                                                                0.0    0.0      0         0
CAF:lvl1_r355i                                         Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_r355k                                         Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl7_r355o                                         Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl9_r355q                                         Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_r355t                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl16_r355x                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl19_r355A                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_r355D                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl25_r355G                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl34_r355Q                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl37_r355T                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl39_r355V                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl43_r355Z                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl48_r3564                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl51_r3567                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl54_r356a                                        Data.Vector.Generic.New                        <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl3_r1Q5u                                         Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_x_r1Q5x                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl8_r1Q5A                                         Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl12_r1Q5E                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl13_r1Q5F                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl15_r1Q5H                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl19_r1Q5L                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl20_r1Q5M                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl22_r1Q5O                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl23_r1Q5P                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl31_r1Q5X                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl34_r1Q60                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl35_r1Q61                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl38_r1Q64                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl39_r1Q65                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl40_r1Q66                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl41_r1Q67                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl42_r1Q68                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl43_r1Q69                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl45_r1Q6b                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl46_r1Q6c                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl47_r1Q6d                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl48_r1Q6e                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl49_r1Q6f                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl50_r1Q6g                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl51_r1Q6h                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl52_r1Q6i                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl53_r1Q6j                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl54_r1Q6k                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl55_r1Q6l                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl56_r1Q6m                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl70_r1Q6A                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl71_r1Q6B                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl73_r1Q6D                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl75_r1Q6F                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl76_r1Q6G                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl77_r1Q6H                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl81_r1Q6L                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl82_r1Q6M                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl86_r1Q6Q                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl91_r1Q6V                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl94_r1Q6Y                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl97_r1Q72                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl98_r1Q73                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl99_r1Q76                                        Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl100_r1Q79                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl101_r1Q7a                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl102_r1Q7d                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl103_r1Q7g                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl106_r1Q7l                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl109_r1Q7o                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl110_r1Q7r                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl111_r1Q7z                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl112_r1Q7E                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl113_r1Q7J                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl114_r1Q7O                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl115_r1Q7T                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fEq1Bundle1_r1Q82                                 Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fEq1Bundle                                        Data.Vector.Fusion.Bundle                      Data/Vector/Fusion/Bundle.hs:519:10-28                                                                              0.0    0.0      0         0
CAF:lvl116_r1Q85                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl117_r1Q86                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl118_r1Q87                                       Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fOrd1Bundle1_r1Q8a                                Data.Vector.Fusion.Bundle                      <no location info>                                                                                                  0.0    0.0      0         0
==                                                     Data.Vector.Fusion.Bundle                      Data/Vector/Fusion/Bundle.hs:512:3-11                                                                               0.0    0.0      0         0
compare                                                Data.Vector.Fusion.Bundle                      Data/Vector/Fusion/Bundle.hs:516:3-15                                                                               0.0    0.0      0         0
liftEq                                                 Data.Vector.Fusion.Bundle                      Data/Vector/Fusion/Bundle.hs:521:3-15                                                                               0.0    0.0      0         0
liftCompare                                            Data.Vector.Fusion.Bundle                      Data/Vector/Fusion/Bundle.hs:525:3-21                                                                               0.0    0.0      0         0
CAF:lvl13_r6A61                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataVector12                                     Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc_r6A62                                          Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r6A63                                         Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_r6A65                                         Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r6A6a                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataVector15                                     Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataVector17                                     Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fRead1Vector_$cliftReadsPrec                      Data.Vector                                    Data/Vector.hs:240:5-17                                                                                             0.0    0.0      0         0
CAF:$fShow1Vector_$cliftShowsPrec                      Data.Vector                                    Data/Vector.hs:237:5-17                                                                                             0.0    0.0      0         0
CAF:lvl17_r6A6k                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl19_r6A6m                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl21_r6A6o                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl24_r6A6r                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl26_r6A6u                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl28_r6A6w                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl29_r6A6x                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl30_r6A6y                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl31_r6A6z                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl32_r6A6A                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl33_r6A6B                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl34_r6A6C                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl35_r6A6F                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl36_r6A6G                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl37_r6A6H                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl38_r6A6I                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl39_r6A6J                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl40_r6A6K                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl41_r6A6L                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl42_r6A6M                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl43_r6A6N                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl44_r6A6O                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl45_r6A6P                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl46_r6A6Q                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl47_r6A6R                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl48_r6A6S                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl49_r6A6T                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl50_r6A6U                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl51_r6A6V                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl52_r6A6W                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl53_r6A6X                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl54_r6A6Y                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl55_r6A71                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl56_r6A72                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl57_r6A73                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl58_r6A74                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl59_r6A75                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl60_r6A76                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl61_r6A77                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fSemigroupVector_$csconcat                        Data.Vector                                    Data/Vector.hs:321:3-9                                                                                              0.0    0.0      0         0
CAF:x_r6A7a                                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl63_r6A7c                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl65_r6A7e                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl66_r6A7f                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl68_r6A7h                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:empty                                              Data.Vector                                    Data/Vector.hs:626:1-5                                                                                              0.0    0.0      0         0
CAF:lvl71_r6A7l                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fSemigroupVector1_r6A7m                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl72_r6A7n                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl76_r6A7r                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl79_r6A7u                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidVector1_r6A7x                              Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidVector2_r6A7y                              Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonoidVector3_r6A7z                              Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl85_r6A7E                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl87_r6A7G                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl89_r6A7I                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector1                                  Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFunctorVector_f1                                 Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFunctorVector1_r6A7N                             Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl94_r6A7O                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl95_r6A7P                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl96_r6A7Q                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl97_r6A7R                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadVector_$c>>=                                Data.Vector                                    Data/Vector.hs:342:3-7                                                                                              0.0    0.0      0         0
CAF:lvl98_r6A7S                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl99_r6A7T                                        Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl100_r6A7U                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl101_r6A7V                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl102_r6A7W                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl103_r6A7X                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl104_r6A7Y                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl105_r6A7Z                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl106_r6A80                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeVector_$c<*>                          Data.Vector                                    Data/Vector.hs:370:3-7                                                                                              0.0    0.0      0         0
CAF:lvl107_r6A81                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl108_r6A82                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl113_r6A87                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl114_r6A88                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl115_r6A89                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadVector1_r6A8a                               Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fApplicativeVector1_r6A8b                         Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_x_r6A8h                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:v1_r6A8i                                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl120_r6A8j                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl121_r6A8k                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl125_r6A8o                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:n_r6A8p                                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl128_r6A8s                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl129_r6A8t                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeVector1_r6A8A                         Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fAlternativeVector2_r6A8B                         Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadPlusVector1_r6A8C                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadPlusVector2_r6A8D                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl135_r6A8E                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl141_r6A8K                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl147_r6A8Q                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl153_r6A8W                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl159_r6A92                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadZipVector1_r6A98                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadZipVector2_r6A99                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fMonadZipVector3_r6A9a                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl165_r6A9c                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl169_r6A9g                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl170_r6A9h                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl171_r6A9i                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl172_r6A9j                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl173_r6A9k                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl174_r6A9l                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector7_r6A9u                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector8_r6A9v                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector9_r6A9w                            Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector10_r6A9x                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector11_r6A9y                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector12_r6A9z                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector13_r6A9A                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector14_r6A9B                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fFoldableVector15_r6A9C                           Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListVector1                                    Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl175_r6A9F                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl176_r6A9G                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListVector3                                    Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fIsListVector2                                    Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataVector8                                      Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:$fDataVector7                                      Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl180_r6A9Z                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl181_r6Aa0                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl182_r6Aa1                                       Data.Vector                                    <no location info>                                                                                                  0.0    0.0      0         0
rnf                                                    Data.Vector                                    Data/Vector.hs:(223,5)-(226,36)                                                                                     0.0    0.0      0         0
rnf.rnfAll                                             Data.Vector                                    Data/Vector.hs:(225,11)-(226,36)                                                                                    0.0    0.0      0         0
showsPrec                                              Data.Vector                                    Data/Vector.hs:229:3-25                                                                                             0.0    0.0      0         0
readListPrec                                           Data.Vector                                    Data/Vector.hs:233:3-36                                                                                             0.0    0.0      0         0
readPrec                                               Data.Vector                                    Data/Vector.hs:232:3-23                                                                                             0.0    0.0      0         0
liftShowsPrec                                          Data.Vector                                    Data/Vector.hs:237:5-35                                                                                             0.0    0.0      0         0
liftReadsPrec                                          Data.Vector                                    Data/Vector.hs:240:5-35                                                                                             0.0    0.0      0         0
toList                                                 Data.Vector                                    Data/Vector.hs:249:3-17                                                                                             0.0    0.0      0         0
fromListN                                              Data.Vector                                    Data/Vector.hs:248:3-35                                                                                             0.0    0.0      0         0
fromList                                               Data.Vector                                    Data/Vector.hs:247:3-33                                                                                             0.0    0.0      0         0
dataCast1                                              Data.Vector                                    Data/Vector.hs:257:3-27                                                                                             0.0    0.0      0         0
dataTypeOf                                             Data.Vector                                    Data/Vector.hs:256:3-46                                                                                             0.0    0.0      0         0
toConstr                                               Data.Vector                                    Data/Vector.hs:254:3-33                                                                                             0.0    0.0      0         0
gunfold                                                Data.Vector                                    Data/Vector.hs:255:3-32                                                                                             0.0    0.0      0         0
gfoldl                                                 Data.Vector                                    Data/Vector.hs:253:3-25                                                                                             0.0    0.0      0         0
basicUnsafeCopy                                        Data.Vector                                    Data/Vector.hs:(280,3)-(281,29)                                                                                     0.0    0.0      0         0
basicUnsafeSlice                                       Data.Vector                                    Data/Vector.hs:274:3-60                                                                                             0.0    0.0      0         0
basicLength                                            Data.Vector                                    Data/Vector.hs:271:3-32                                                                                             0.0    0.0      0         0
basicUnsafeThaw                                        Data.Vector                                    Data/Vector.hs:(267,3)-(268,45)                                                                                     0.0    0.0      0         0
/=                                                     Data.Vector                                    Data/Vector.hs:289:3-56                                                                                             0.0    0.0      0         0
==                                                     Data.Vector                                    Data/Vector.hs:286:3-50                                                                                             0.0    0.0      0         0
>=                                                     Data.Vector                                    Data/Vector.hs:306:3-57                                                                                             0.0    0.0      0         0
>                                                      Data.Vector                                    Data/Vector.hs:303:3-56                                                                                             0.0    0.0      0         0
<=                                                     Data.Vector                                    Data/Vector.hs:300:3-57                                                                                             0.0    0.0      0         0
<                                                      Data.Vector                                    Data/Vector.hs:297:3-56                                                                                             0.0    0.0      0         0
compare                                                Data.Vector                                    Data/Vector.hs:294:3-56                                                                                             0.0    0.0      0         0
liftEq                                                 Data.Vector                                    Data/Vector.hs:310:3-62                                                                                             0.0    0.0      0         0
liftCompare                                            Data.Vector                                    Data/Vector.hs:313:3-70                                                                                             0.0    0.0      0         0
sconcat                                                Data.Vector                                    Data/Vector.hs:321:3-22                                                                                             0.0    0.0      0         0
<>                                                     Data.Vector                                    Data/Vector.hs:318:3-13                                                                                             0.0    0.0      0         0
mconcat                                                Data.Vector                                    Data/Vector.hs:331:3-18                                                                                             0.0    0.0      0         0
mappend                                                Data.Vector                                    Data/Vector.hs:328:3-16                                                                                             0.0    0.0      0         0
mempty                                                 Data.Vector                                    Data/Vector.hs:325:3-16                                                                                             0.0    0.0      0         0
fmap                                                   Data.Vector                                    Data/Vector.hs:335:3-12                                                                                             0.0    0.0      0         0
fail                                                   Data.Vector                                    Data/Vector.hs:345:3-16                                                                                             0.0    0.0      0         0
return                                                 Data.Vector                                    Data/Vector.hs:339:3-27                                                                                             0.0    0.0      0         0
>>=                                                    Data.Vector                                    Data/Vector.hs:342:3-24                                                                                             0.0    0.0      0         0
mplus                                                  Data.Vector                                    Data/Vector.hs:352:3-14                                                                                             0.0    0.0      0         0
mzero                                                  Data.Vector                                    Data/Vector.hs:349:3-15                                                                                             0.0    0.0      0         0
munzip                                                 Data.Vector                                    Data/Vector.hs:362:3-16                                                                                             0.0    0.0      0         0
mzipWith                                               Data.Vector                                    Data/Vector.hs:359:3-20                                                                                             0.0    0.0      0         0
mzip                                                   Data.Vector                                    Data/Vector.hs:356:3-12                                                                                             0.0    0.0      0         0
<*>                                                    Data.Vector                                    Data/Vector.hs:370:3-12                                                                                             0.0    0.0      0         0
pure                                                   Data.Vector                                    Data/Vector.hs:367:3-18                                                                                             0.0    0.0      0         0
<|>                                                    Data.Vector                                    Data/Vector.hs:377:3-14                                                                                             0.0    0.0      0         0
empty                                                  Data.Vector                                    Data/Vector.hs:374:3-15                                                                                             0.0    0.0      0         0
product                                                Data.Vector                                    Data/Vector.hs:423:3-19                                                                                             0.0    0.0      0         0
sum                                                    Data.Vector                                    Data/Vector.hs:420:3-11                                                                                             0.0    0.0      0         0
minimum                                                Data.Vector                                    Data/Vector.hs:417:3-19                                                                                             0.0    0.0      0         0
maximum                                                Data.Vector                                    Data/Vector.hs:414:3-19                                                                                             0.0    0.0      0         0
elem                                                   Data.Vector                                    Data/Vector.hs:411:3-13                                                                                             0.0    0.0      0         0
length                                                 Data.Vector                                    Data/Vector.hs:405:3-17                                                                                             0.0    0.0      0         0
null                                                   Data.Vector                                    Data/Vector.hs:408:3-13                                                                                             0.0    0.0      0         0
toList                                                 Data.Vector                                    Data/Vector.hs:402:3-17                                                                                             0.0    0.0      0         0
foldl1                                                 Data.Vector                                    Data/Vector.hs:390:3-17                                                                                             0.0    0.0      0         0
foldr1                                                 Data.Vector                                    Data/Vector.hs:387:3-17                                                                                             0.0    0.0      0         0
foldl'                                                 Data.Vector                                    Data/Vector.hs:397:3-17                                                                                             0.0    0.0      0         0
foldl                                                  Data.Vector                                    Data/Vector.hs:384:3-15                                                                                             0.0    0.0      0         0
foldr'                                                 Data.Vector                                    Data/Vector.hs:394:3-17                                                                                             0.0    0.0      0         0
foldr                                                  Data.Vector                                    Data/Vector.hs:381:3-15                                                                                             0.0    0.0      0         0
sequence                                               Data.Vector                                    Data/Vector.hs:434:3-21                                                                                             0.0    0.0      0         0
mapM                                                   Data.Vector                                    Data/Vector.hs:431:3-13                                                                                             0.0    0.0      0         0
traverse                                               Data.Vector                                    Data/Vector.hs:428:3-89                                                                                             0.0    0.0      0         0
CAF:loc_r65I5                                          Data.Vector.Mutable                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r65I6                                         Data.Vector.Mutable                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc3_r65I8                                         Data.Vector.Mutable                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r65Id                                        Data.Vector.Mutable                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:uninitialised                                      Data.Vector.Mutable                            Data/Vector/Mutable.hs:188:1-13                                                                                     0.0    0.0      0         0
CAF:lvl3_r65Ij                                         Data.Vector.Mutable                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl5_r65Il                                         Data.Vector.Mutable                            <no location info>                                                                                                  0.0    0.0      0         0
basicUnsafeMove                                        Data.Vector.Mutable                            Data/Vector/Mutable.hs:(124,3)-(142,50)                                                                             0.0    0.0      0         0
basicUnsafeCopy                                        Data.Vector.Mutable                            Data/Vector/Mutable.hs:(121,3)-(122,36)                                                                             0.0    0.0      0         0
basicClear                                             Data.Vector.Mutable                            Data/Vector/Mutable.hs:145:3-38                                                                                     0.0    0.0      0         0
basicUnsafeRead                                        Data.Vector.Mutable                            Data/Vector/Mutable.hs:115:3-59                                                                                     0.0    0.0      0         0
basicUnsafeReplicate                                   Data.Vector.Mutable                            Data/Vector/Mutable.hs:(109,3)-(112,32)                                                                             0.0    0.0      0         0
basicInitialize                                        Data.Vector.Mutable                            Data/Vector/Mutable.hs:106:3-31                                                                                     0.0    0.0      0         0
basicOverlaps                                          Data.Vector.Mutable                            Data/Vector/Mutable.hs:(92,3)-(96,37)                                                                               0.0    0.0      0         0
basicOverlaps.between                                  Data.Vector.Mutable                            Data/Vector/Mutable.hs:96:7-37                                                                                      0.0    0.0      0         0
basicLength                                            Data.Vector.Mutable                            Data/Vector/Mutable.hs:86:3-33                                                                                      0.0    0.0      0         0
moveForwardsLargeOverlap                               Data.Vector.Mutable                            Data/Vector/Mutable.hs:(167,1)-(179,36)                                                                             0.0    0.0      0         0
moveForwardsLargeOverlap.mov                           Data.Vector.Mutable                            Data/Vector/Mutable.hs:(172,11)-(177,70)                                                                            0.0    0.0      0         0
moveForwardsLargeOverlap.\                             Data.Vector.Mutable                            Data/Vector/Mutable.hs:171:33-81                                                                                    0.0    0.0      0         0
moveForwardsLargeOverlap.nonOverlap                    Data.Vector.Mutable                            Data/Vector/Mutable.hs:179:9-36                                                                                     0.0    0.0      0         0
uninitialised                                          Data.Vector.Mutable                            Data/Vector/Mutable.hs:188:1-66                                                                                     0.0    0.0      0         0
CAF:lvl6_r9Uhq                                         Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl26_r9UhK                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl28_r9UhM                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl31_r9UhP                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl34_r9UhS                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl37_r9UhV                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl40_r9UhY                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl43_r9Ui1                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl47_r9Ui5                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc1_r9Uib                                         Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc2_r9Uid                                         Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:loc24_r9Uie                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:$dIP1_r9Uih                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl55_r9Uiu                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl56_r9Uiv                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl57_r9Uiw                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl58_r9Uix                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl59_r9Uiy                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl60_r9Uiz                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl61_r9UiA                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl62_r9UiB                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl63_r9UiC                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl64_r9UiD                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl65_r9UiE                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl66_r9UiF                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl67_r9UiG                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl68_r9UiH                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl69_r9UiI                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl70_r9UiJ                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl71_r9UiK                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl72_r9UiL                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl73_r9UiM                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl74_r9UiN                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl75_r9UiO                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl76_r9UiP                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl77_r9UiQ                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl78_r9UiR                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl79_r9UiS                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl80_r9UiT                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl81_r9UiX                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl83_r9UiZ                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl86_r9Uj2                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl91_r9Uj7                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl95_r9Ujb                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl99_r9Ujf                                        Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:poly_x_r9Ujj                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl104_r9Ujl                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl105_r9Ujm                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl107_r9Ujo                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl109_r9Ujq                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl115_r9Ujw                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl121_r9UjC                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl125_r9UjG                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl128_r9UjJ                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl129_r9UjK                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl131_r9UjM                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl134_r9UjP                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl142_r9UjX                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl146_r9Uk1                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl152_r9Uk7                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl155_r9Uka                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl156_r9Ukb                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl157_r9Ukc                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl161_r9Ukg                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl162_r9Ukh                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl166_r9Ukl                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl168_r9Uko                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl171_r9Ukr                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl173_r9Ukt                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl174_r9Uku                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl175_r9Ukv                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl177_r9Ukx                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0    0.0      0         0
CAF:lvl180_r9UkA                                       Data.Vector.Unboxed                            <no location info>                                                                                                  0.0