Skip to content

Instantly share code, notes, and snippets.

@manofstick
Last active August 4, 2018 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manofstick/686c76695e4d020c254a644968b3989e to your computer and use it in GitHub Desktop.
Save manofstick/686c76695e4d020c254a644968b3989e to your computer and use it in GitHub Desktop.
Battle Royale - 1: Adding elements
$platforms = @("--platform:x86","--platform:x64")
$containers = @("", "--define:IMMUTABLESORTEDDICTIONARY")
$types = @("", "--define:FASTCOMPARER")
$orders = @("--define:STRIPES", "--define:RANDOM")
For ($cIdx=0; $cIdx -lt $containers.Length; $cIdx++) {
$container = $containers[$cIdx]
For ($pIdx=0; $pIdx -lt $platforms.Length; $pIdx++) {
$platform = $platforms[$pIdx]
For ($tIdx=0; $tIdx -lt $types.Length; $tIdx++) {
$type = $types[$tIdx]
For ($oIdx=0; $oIdx -lt $orders.Length; $oIdx++) {
$order = $orders[$oIdx]
C:\src\manofstick\visualfsharp-nobox\release\net40\bin\fsc.exe -r System.Collections.Immutable.dll -O $container $type $order $platform test.fs > $null
For ($n=1; $n -le 33; $n++) {
For ($seed=0; $seed -le 9; $seed++) {
.\test.exe $seed $n
}
}
}
}
}
}
open System
#if FASTCOMPARER
let comparisonType = "Fast"
let TheType = int
let Multiplier = 100
#else
type Slow(x:int) =
member __.X = x
override lhs.Equals rhs =
lhs.X = (rhs :?> Slow).X
interface IComparable<Slow> with
member this.CompareTo other =
let mutable i = this.X
for j = 1 to 10000 do
i <- i * j
if i = this.X then
this.X - other.X
else
this.X.CompareTo other.X
interface System.IComparable with
member this.CompareTo other =
failwith "Expecting call to generic version (needs FSharp.Core update)"
override lhs.GetHashCode () = lhs.X.GetHashCode ()
let comparisonType = "Slow"
type TheType = Slow
let Multiplier = 1
#endif
#if RANDOM
let shape = "Random"
let createData seed n =
let r = System.Random seed
Seq.initInfinite (fun _ -> r.Next ())
|> Seq.distinct
|> Seq.take n
|> Seq.toArray
#else
#if STRIPES
let shape = "Stripes"
let createData seed n =
let length = int (pown (float 1.5) (int seed))
Array.init n (fun i ->
let div, rem = (i/length), (i%length)
System.Int32.MaxValue - ((div+1)*length) + rem)
#else // SEQUENTIAL
let shape = "Sequential"
let createData seed n =
Array.init n id
#endif
#endif
#if IMMUTABLESORTEDDICTIONARY
let impl = "ImmutableSortedDictionary"
let empty = System.Collections.Immutable.ImmutableSortedDictionary.Empty
let add k v (m:System.Collections.Immutable.ImmutableSortedDictionary<_,_>) = m.Add (k, v)
let find k (m:System.Collections.Immutable.ImmutableSortedDictionary<_,_>) = m.[k]
#else
let impl = "Map"
let empty = Map.empty
let add k v m = Map.add k v m
let find k m = Map.find k m
#endif
[<EntryPoint>]
let main argv =
let seed = int argv.[0]
let n = int (pown (float 1.5) (int argv.[1]))
let iterations = max 1 ((25000*Multiplier) / n)
let data = createData seed n
let sw = System.Diagnostics.Stopwatch.StartNew ()
for i = 1 to iterations do
let mutable m = empty
for idx = 0 to data.Length-1 do
m <- add (TheType data.[idx]) true m
if not m.[TheType data.[0]] then failwith "bad"
let t = sw.ElapsedMilliseconds
let bittage = if System.Environment.Is64BitProcess then "64-bit" else "32-bit"
printf "%s,%s,%s,%s,%d,%d,%d" impl comparisonType shape bittage seed n t
for i = 0 to System.GC.MaxGeneration do
printf ",%d" (System.GC.CollectionCount i)
printfn ""
0
Map,Slow,Stripes,32-bit,0,1,37,0,0,0
Map,Slow,Stripes,32-bit,1,1,35,0,0,0
Map,Slow,Stripes,32-bit,2,1,37,0,0,0
Map,Slow,Stripes,32-bit,3,1,35,0,0,0
Map,Slow,Stripes,32-bit,4,1,35,0,0,0
Map,Slow,Stripes,32-bit,5,1,37,0,0,0
Map,Slow,Stripes,32-bit,6,1,40,0,0,0
Map,Slow,Stripes,32-bit,7,1,38,0,0,0
Map,Slow,Stripes,32-bit,8,1,36,0,0,0
Map,Slow,Stripes,32-bit,9,1,37,0,0,0
Map,Slow,Stripes,32-bit,0,2,37,0,0,0
Map,Slow,Stripes,32-bit,1,2,36,0,0,0
Map,Slow,Stripes,32-bit,2,2,36,0,0,0
Map,Slow,Stripes,32-bit,3,2,36,0,0,0
Map,Slow,Stripes,32-bit,4,2,36,0,0,0
Map,Slow,Stripes,32-bit,5,2,36,0,0,0
Map,Slow,Stripes,32-bit,6,2,37,0,0,0
Map,Slow,Stripes,32-bit,7,2,38,0,0,0
Map,Slow,Stripes,32-bit,8,2,36,0,0,0
Map,Slow,Stripes,32-bit,9,2,36,0,0,0
Map,Slow,Stripes,32-bit,0,3,60,0,0,0
Map,Slow,Stripes,32-bit,1,3,64,0,0,0
Map,Slow,Stripes,32-bit,2,3,36,0,0,0
Map,Slow,Stripes,32-bit,3,3,59,0,0,0
Map,Slow,Stripes,32-bit,4,3,57,0,0,0
Map,Slow,Stripes,32-bit,5,3,59,0,0,0
Map,Slow,Stripes,32-bit,6,3,67,0,0,0
Map,Slow,Stripes,32-bit,7,3,61,0,0,0
Map,Slow,Stripes,32-bit,8,3,59,0,0,0
Map,Slow,Stripes,32-bit,9,3,58,0,0,0
Map,Slow,Stripes,32-bit,0,5,71,0,0,0
Map,Slow,Stripes,32-bit,1,5,73,0,0,0
Map,Slow,Stripes,32-bit,2,5,50,0,0,0
Map,Slow,Stripes,32-bit,3,5,78,0,0,0
Map,Slow,Stripes,32-bit,4,5,68,0,0,0
Map,Slow,Stripes,32-bit,5,5,71,0,0,0
Map,Slow,Stripes,32-bit,6,5,76,0,0,0
Map,Slow,Stripes,32-bit,7,5,71,0,0,0
Map,Slow,Stripes,32-bit,8,5,70,0,0,0
Map,Slow,Stripes,32-bit,9,5,69,0,0,0
Map,Slow,Stripes,32-bit,0,7,84,1,0,0
Map,Slow,Stripes,32-bit,1,7,100,1,0,0
Map,Slow,Stripes,32-bit,2,7,66,0,0,0
Map,Slow,Stripes,32-bit,3,7,75,1,0,0
Map,Slow,Stripes,32-bit,4,7,81,1,0,0
Map,Slow,Stripes,32-bit,5,7,84,1,0,0
Map,Slow,Stripes,32-bit,6,7,84,1,0,0
Map,Slow,Stripes,32-bit,7,7,84,1,0,0
Map,Slow,Stripes,32-bit,8,7,82,1,0,0
Map,Slow,Stripes,32-bit,9,7,86,1,0,0
Map,Slow,Stripes,32-bit,0,11,99,1,0,0
Map,Slow,Stripes,32-bit,1,11,100,1,0,0
Map,Slow,Stripes,32-bit,2,11,83,1,0,0
Map,Slow,Stripes,32-bit,3,11,97,1,0,0
Map,Slow,Stripes,32-bit,4,11,99,1,0,0
Map,Slow,Stripes,32-bit,5,11,97,1,0,0
Map,Slow,Stripes,32-bit,6,11,98,1,0,0
Map,Slow,Stripes,32-bit,7,11,99,1,0,0
Map,Slow,Stripes,32-bit,8,11,100,1,0,0
Map,Slow,Stripes,32-bit,9,11,100,1,0,0
Map,Slow,Stripes,32-bit,0,17,113,1,0,0
Map,Slow,Stripes,32-bit,1,17,118,1,0,0
Map,Slow,Stripes,32-bit,2,17,100,1,0,0
Map,Slow,Stripes,32-bit,3,17,116,1,0,0
Map,Slow,Stripes,32-bit,4,17,117,1,0,0
Map,Slow,Stripes,32-bit,5,17,113,1,0,0
Map,Slow,Stripes,32-bit,6,17,112,1,0,0
Map,Slow,Stripes,32-bit,7,17,118,1,0,0
Map,Slow,Stripes,32-bit,8,17,114,1,0,0
Map,Slow,Stripes,32-bit,9,17,116,1,0,0
Map,Slow,Stripes,32-bit,0,25,131,1,0,0
Map,Slow,Stripes,32-bit,1,25,138,1,0,0
Map,Slow,Stripes,32-bit,2,25,113,1,0,0
Map,Slow,Stripes,32-bit,3,25,131,1,0,0
Map,Slow,Stripes,32-bit,4,25,144,1,0,0
Map,Slow,Stripes,32-bit,5,25,132,1,0,0
Map,Slow,Stripes,32-bit,6,25,131,1,0,0
Map,Slow,Stripes,32-bit,7,25,128,1,0,0
Map,Slow,Stripes,32-bit,8,25,151,1,0,0
Map,Slow,Stripes,32-bit,9,25,130,1,0,0
Map,Slow,Stripes,32-bit,0,38,152,1,0,0
Map,Slow,Stripes,32-bit,1,38,144,1,0,0
Map,Slow,Stripes,32-bit,2,38,154,1,0,0
Map,Slow,Stripes,32-bit,3,38,150,1,0,0
Map,Slow,Stripes,32-bit,4,38,158,1,0,0
Map,Slow,Stripes,32-bit,5,38,152,1,0,0
Map,Slow,Stripes,32-bit,6,38,161,1,0,0
Map,Slow,Stripes,32-bit,7,38,151,1,0,0
Map,Slow,Stripes,32-bit,8,38,151,1,0,0
Map,Slow,Stripes,32-bit,9,38,147,1,0,0
Map,Slow,Stripes,32-bit,0,57,172,1,0,0
Map,Slow,Stripes,32-bit,1,57,166,1,0,0
Map,Slow,Stripes,32-bit,2,57,146,1,0,0
Map,Slow,Stripes,32-bit,3,57,165,1,0,0
Map,Slow,Stripes,32-bit,4,57,171,1,0,0
Map,Slow,Stripes,32-bit,5,57,167,1,0,0
Map,Slow,Stripes,32-bit,6,57,171,1,0,0
Map,Slow,Stripes,32-bit,7,57,178,1,0,0
Map,Slow,Stripes,32-bit,8,57,170,1,0,0
Map,Slow,Stripes,32-bit,9,57,169,1,0,0
Map,Slow,Stripes,32-bit,0,86,182,1,0,0
Map,Slow,Stripes,32-bit,1,86,184,1,0,0
Map,Slow,Stripes,32-bit,2,86,176,1,0,0
Map,Slow,Stripes,32-bit,3,86,187,2,0,0
Map,Slow,Stripes,32-bit,4,86,201,2,0,0
Map,Slow,Stripes,32-bit,5,86,192,2,0,0
Map,Slow,Stripes,32-bit,6,86,193,2,0,0
Map,Slow,Stripes,32-bit,7,86,208,1,0,0
Map,Slow,Stripes,32-bit,8,86,192,2,0,0
Map,Slow,Stripes,32-bit,9,86,188,1,0,0
Map,Slow,Stripes,32-bit,0,129,211,2,0,0
Map,Slow,Stripes,32-bit,1,129,198,2,0,0
Map,Slow,Stripes,32-bit,2,129,186,1,0,0
Map,Slow,Stripes,32-bit,3,129,206,2,0,0
Map,Slow,Stripes,32-bit,4,129,216,2,0,0
Map,Slow,Stripes,32-bit,5,129,213,2,0,0
Map,Slow,Stripes,32-bit,6,129,211,2,0,0
Map,Slow,Stripes,32-bit,7,129,222,2,0,0
Map,Slow,Stripes,32-bit,8,129,224,2,0,0
Map,Slow,Stripes,32-bit,9,129,208,2,0,0
Map,Slow,Stripes,32-bit,0,194,229,2,0,0
Map,Slow,Stripes,32-bit,1,194,221,2,0,0
Map,Slow,Stripes,32-bit,2,194,206,1,0,0
Map,Slow,Stripes,32-bit,3,194,220,2,0,0
Map,Slow,Stripes,32-bit,4,194,225,2,0,0
Map,Slow,Stripes,32-bit,5,194,229,2,0,0
Map,Slow,Stripes,32-bit,6,194,226,2,0,0
Map,Slow,Stripes,32-bit,7,194,233,2,0,0
Map,Slow,Stripes,32-bit,8,194,233,2,0,0
Map,Slow,Stripes,32-bit,9,194,240,2,0,0
Map,Slow,Stripes,32-bit,0,291,239,2,0,0
Map,Slow,Stripes,32-bit,1,291,235,2,0,0
Map,Slow,Stripes,32-bit,2,291,222,2,0,0
Map,Slow,Stripes,32-bit,3,291,240,2,0,0
Map,Slow,Stripes,32-bit,4,291,247,2,0,0
Map,Slow,Stripes,32-bit,5,291,246,2,0,0
Map,Slow,Stripes,32-bit,6,291,248,2,0,0
Map,Slow,Stripes,32-bit,7,291,261,2,0,0
Map,Slow,Stripes,32-bit,8,291,260,2,0,0
Map,Slow,Stripes,32-bit,9,291,244,2,0,0
Map,Slow,Stripes,32-bit,0,437,274,2,0,0
Map,Slow,Stripes,32-bit,1,437,257,2,0,0
Map,Slow,Stripes,32-bit,2,437,240,2,0,0
Map,Slow,Stripes,32-bit,3,437,273,2,0,0
Map,Slow,Stripes,32-bit,4,437,261,2,0,0
Map,Slow,Stripes,32-bit,5,437,265,2,0,0
Map,Slow,Stripes,32-bit,6,437,285,2,0,0
Map,Slow,Stripes,32-bit,7,437,268,2,0,0
Map,Slow,Stripes,32-bit,8,437,280,2,0,0
Map,Slow,Stripes,32-bit,9,437,269,2,0,0
Map,Slow,Stripes,32-bit,0,656,274,2,0,0
Map,Slow,Stripes,32-bit,1,656,282,2,0,0
Map,Slow,Stripes,32-bit,2,656,257,2,0,0
Map,Slow,Stripes,32-bit,3,656,290,2,0,0
Map,Slow,Stripes,32-bit,4,656,283,2,0,0
Map,Slow,Stripes,32-bit,5,656,286,2,0,0
Map,Slow,Stripes,32-bit,6,656,281,2,0,0
Map,Slow,Stripes,32-bit,7,656,295,2,0,0
Map,Slow,Stripes,32-bit,8,656,298,2,0,0
Map,Slow,Stripes,32-bit,9,656,295,2,0,0
Map,Slow,Stripes,32-bit,0,985,288,2,0,0
Map,Slow,Stripes,32-bit,1,985,293,2,0,0
Map,Slow,Stripes,32-bit,2,985,288,2,0,0
Map,Slow,Stripes,32-bit,3,985,294,2,0,0
Map,Slow,Stripes,32-bit,4,985,301,2,0,0
Map,Slow,Stripes,32-bit,5,985,294,2,0,0
Map,Slow,Stripes,32-bit,6,985,302,2,0,0
Map,Slow,Stripes,32-bit,7,985,318,2,0,0
Map,Slow,Stripes,32-bit,8,985,319,2,0,0
Map,Slow,Stripes,32-bit,9,985,323,2,0,0
Map,Slow,Stripes,32-bit,0,1477,297,2,0,0
Map,Slow,Stripes,32-bit,1,1477,297,2,0,0
Map,Slow,Stripes,32-bit,2,1477,313,2,0,0
Map,Slow,Stripes,32-bit,3,1477,305,2,0,0
Map,Slow,Stripes,32-bit,4,1477,300,2,0,0
Map,Slow,Stripes,32-bit,5,1477,309,2,0,0
Map,Slow,Stripes,32-bit,6,1477,297,2,0,0
Map,Slow,Stripes,32-bit,7,1477,333,2,0,0
Map,Slow,Stripes,32-bit,8,1477,318,2,0,0
Map,Slow,Stripes,32-bit,9,1477,321,2,0,0
Map,Slow,Stripes,32-bit,0,2216,323,2,0,0
Map,Slow,Stripes,32-bit,1,2216,327,2,0,0
Map,Slow,Stripes,32-bit,2,2216,304,2,0,0
Map,Slow,Stripes,32-bit,3,2216,331,3,0,0
Map,Slow,Stripes,32-bit,4,2216,327,3,0,0
Map,Slow,Stripes,32-bit,5,2216,345,3,0,0
Map,Slow,Stripes,32-bit,6,2216,333,3,0,0
Map,Slow,Stripes,32-bit,7,2216,328,2,0,0
Map,Slow,Stripes,32-bit,8,2216,343,3,0,0
Map,Slow,Stripes,32-bit,9,2216,334,2,0,0
Map,Slow,Stripes,32-bit,0,3325,348,2,0,0
Map,Slow,Stripes,32-bit,1,3325,334,2,0,0
Map,Slow,Stripes,32-bit,2,3325,331,2,0,0
Map,Slow,Stripes,32-bit,3,3325,333,3,0,0
Map,Slow,Stripes,32-bit,4,3325,347,3,0,0
Map,Slow,Stripes,32-bit,5,3325,335,2,0,0
Map,Slow,Stripes,32-bit,6,3325,338,3,0,0
Map,Slow,Stripes,32-bit,7,3325,350,2,0,0
Map,Slow,Stripes,32-bit,8,3325,356,3,0,0
Map,Slow,Stripes,32-bit,9,3325,350,2,0,0
Map,Slow,Stripes,32-bit,0,4987,369,3,0,0
Map,Slow,Stripes,32-bit,1,4987,391,3,0,0
Map,Slow,Stripes,32-bit,2,4987,360,3,0,0
Map,Slow,Stripes,32-bit,3,4987,392,3,1,0
Map,Slow,Stripes,32-bit,4,4987,371,3,1,0
Map,Slow,Stripes,32-bit,5,4987,398,3,1,0
Map,Slow,Stripes,32-bit,6,4987,381,3,1,0
Map,Slow,Stripes,32-bit,7,4987,384,3,0,0
Map,Slow,Stripes,32-bit,8,4987,395,3,0,0
Map,Slow,Stripes,32-bit,9,4987,384,3,0,0
Map,Slow,Stripes,32-bit,0,7481,355,2,1,0
Map,Slow,Stripes,32-bit,1,7481,354,2,1,0
Map,Slow,Stripes,32-bit,2,7481,335,2,0,0
Map,Slow,Stripes,32-bit,3,7481,357,2,1,0
Map,Slow,Stripes,32-bit,4,7481,378,2,1,0
Map,Slow,Stripes,32-bit,5,7481,359,2,1,0
Map,Slow,Stripes,32-bit,6,7481,383,2,1,0
Map,Slow,Stripes,32-bit,7,7481,368,2,1,0
Map,Slow,Stripes,32-bit,8,7481,385,2,1,0
Map,Slow,Stripes,32-bit,9,7481,364,2,1,0
Map,Slow,Stripes,32-bit,0,11222,369,2,1,0
Map,Slow,Stripes,32-bit,1,11222,376,2,1,0
Map,Slow,Stripes,32-bit,2,11222,357,1,0,0
Map,Slow,Stripes,32-bit,3,11222,377,2,1,0
Map,Slow,Stripes,32-bit,4,11222,371,2,1,0
Map,Slow,Stripes,32-bit,5,11222,380,2,1,0
Map,Slow,Stripes,32-bit,6,11222,373,2,1,0
Map,Slow,Stripes,32-bit,7,11222,385,2,1,0
Map,Slow,Stripes,32-bit,8,11222,388,2,1,0
Map,Slow,Stripes,32-bit,9,11222,382,2,1,0
Map,Slow,Stripes,32-bit,0,16834,293,1,0,0
Map,Slow,Stripes,32-bit,1,16834,311,1,0,0
Map,Slow,Stripes,32-bit,2,16834,281,1,0,0
Map,Slow,Stripes,32-bit,3,16834,288,1,0,0
Map,Slow,Stripes,32-bit,4,16834,298,1,0,0
Map,Slow,Stripes,32-bit,5,16834,292,1,0,0
Map,Slow,Stripes,32-bit,6,16834,304,1,0,0
Map,Slow,Stripes,32-bit,7,16834,294,1,0,0
Map,Slow,Stripes,32-bit,8,16834,326,1,0,0
Map,Slow,Stripes,32-bit,9,16834,303,1,0,0
Map,Slow,Stripes,32-bit,0,25251,478,2,1,0
Map,Slow,Stripes,32-bit,1,25251,462,2,1,0
Map,Slow,Stripes,32-bit,2,25251,460,2,1,0
Map,Slow,Stripes,32-bit,3,25251,463,2,1,0
Map,Slow,Stripes,32-bit,4,25251,480,2,1,0
Map,Slow,Stripes,32-bit,5,25251,468,2,1,0
Map,Slow,Stripes,32-bit,6,25251,474,2,0,0
Map,Slow,Stripes,32-bit,7,25251,467,2,1,0
Map,Slow,Stripes,32-bit,8,25251,506,2,0,0
Map,Slow,Stripes,32-bit,9,25251,463,2,1,0
Map,Slow,Stripes,32-bit,0,37876,716,3,1,0
Map,Slow,Stripes,32-bit,1,37876,735,3,1,0
Map,Slow,Stripes,32-bit,2,37876,709,3,1,0
Map,Slow,Stripes,32-bit,3,37876,733,3,1,0
Map,Slow,Stripes,32-bit,4,37876,699,3,1,0
Map,Slow,Stripes,32-bit,5,37876,741,3,1,0
Map,Slow,Stripes,32-bit,6,37876,738,3,1,0
Map,Slow,Stripes,32-bit,7,37876,747,3,1,0
Map,Slow,Stripes,32-bit,8,37876,778,3,1,0
Map,Slow,Stripes,32-bit,9,37876,733,3,1,0
Map,Slow,Stripes,32-bit,0,56815,1135,5,1,0
Map,Slow,Stripes,32-bit,1,56815,1116,5,1,0
Map,Slow,Stripes,32-bit,2,56815,1089,4,1,0
Map,Slow,Stripes,32-bit,3,56815,1131,5,1,0
Map,Slow,Stripes,32-bit,4,56815,1134,5,1,0
Map,Slow,Stripes,32-bit,5,56815,1147,5,1,0
Map,Slow,Stripes,32-bit,6,56815,1145,5,1,0
Map,Slow,Stripes,32-bit,7,56815,1150,5,1,0
Map,Slow,Stripes,32-bit,8,56815,1172,5,1,0
Map,Slow,Stripes,32-bit,9,56815,1157,5,1,0
Map,Slow,Stripes,32-bit,0,85222,1769,7,1,0
Map,Slow,Stripes,32-bit,1,85222,1743,7,1,0
Map,Slow,Stripes,32-bit,2,85222,1686,7,1,0
Map,Slow,Stripes,32-bit,3,85222,1773,7,1,0
Map,Slow,Stripes,32-bit,4,85222,1743,7,1,0
Map,Slow,Stripes,32-bit,5,85222,1762,7,1,0
Map,Slow,Stripes,32-bit,6,85222,1754,7,1,0
Map,Slow,Stripes,32-bit,7,85222,1824,7,1,0
Map,Slow,Stripes,32-bit,8,85222,1848,8,1,0
Map,Slow,Stripes,32-bit,9,85222,1772,7,1,0
Map,Slow,Stripes,32-bit,0,127834,2689,11,3,1
Map,Slow,Stripes,32-bit,1,127834,2742,11,3,1
Map,Slow,Stripes,32-bit,2,127834,2628,10,3,1
Map,Slow,Stripes,32-bit,3,127834,2751,11,3,1
Map,Slow,Stripes,32-bit,4,127834,2771,11,3,1
Map,Slow,Stripes,32-bit,5,127834,2744,11,3,1
Map,Slow,Stripes,32-bit,6,127834,2776,11,2,1
Map,Slow,Stripes,32-bit,7,127834,2772,11,3,1
Map,Slow,Stripes,32-bit,8,127834,2885,12,3,1
Map,Slow,Stripes,32-bit,9,127834,2775,11,3,1
Map,Slow,Stripes,32-bit,0,191751,4226,18,9,2
Map,Slow,Stripes,32-bit,1,191751,4243,18,9,2
Map,Slow,Stripes,32-bit,2,191751,4132,17,9,2
Map,Slow,Stripes,32-bit,3,191751,4253,19,10,2
Map,Slow,Stripes,32-bit,4,191751,4283,19,10,2
Map,Slow,Stripes,32-bit,5,191751,4282,18,9,2
Map,Slow,Stripes,32-bit,6,191751,4276,18,9,1
Map,Slow,Stripes,32-bit,7,191751,4296,18,9,2
Map,Slow,Stripes,32-bit,8,191751,4454,18,9,1
Map,Slow,Stripes,32-bit,9,191751,4346,18,9,2
Map,Slow,Stripes,32-bit,0,287626,6553,27,16,2
Map,Slow,Stripes,32-bit,1,287626,6584,27,16,2
Map,Slow,Stripes,32-bit,2,287626,6380,26,16,2
Map,Slow,Stripes,32-bit,3,287626,6631,28,17,2
Map,Slow,Stripes,32-bit,4,287626,6611,28,17,2
Map,Slow,Stripes,32-bit,5,287626,6719,28,17,2
Map,Slow,Stripes,32-bit,6,287626,6772,28,16,2
Map,Slow,Stripes,32-bit,7,287626,6822,27,17,2
Map,Slow,Stripes,32-bit,8,287626,7035,29,17,2
Map,Slow,Stripes,32-bit,9,287626,6881,28,17,2
Map,Slow,Stripes,32-bit,0,431439,10416,41,17,2
Map,Slow,Stripes,32-bit,1,431439,10424,41,17,2
Map,Slow,Stripes,32-bit,2,431439,10129,39,17,2
Map,Slow,Stripes,32-bit,3,431439,10462,44,19,3
Map,Slow,Stripes,32-bit,4,431439,10523,44,19,3
Map,Slow,Stripes,32-bit,5,431439,10499,43,19,3
Map,Slow,Stripes,32-bit,6,431439,10546,43,17,2
Map,Slow,Stripes,32-bit,7,431439,10538,43,19,3
Map,Slow,Stripes,32-bit,8,431439,10867,44,18,2
Map,Slow,Stripes,32-bit,9,431439,10650,43,19,3
Map,Slow,Stripes,32-bit,0,647159,16083,64,31,3
Map,Slow,Stripes,32-bit,1,647159,16138,64,31,3
Map,Slow,Stripes,32-bit,2,647159,15614,61,31,3
Map,Slow,Stripes,32-bit,3,647159,16190,67,32,4
Map,Slow,Stripes,32-bit,4,647159,16160,67,33,4
Map,Slow,Stripes,32-bit,5,647159,16345,66,32,4
Map,Slow,Stripes,32-bit,6,647159,16261,66,30,3
Map,Slow,Stripes,32-bit,7,647159,16452,66,32,4
Map,Slow,Stripes,32-bit,8,647159,16856,68,33,3
Map,Slow,Stripes,32-bit,9,647159,16380,66,32,4
Map,Slow,Random,32-bit,0,1,37,0,0,0
Map,Slow,Random,32-bit,1,1,36,0,0,0
Map,Slow,Random,32-bit,2,1,37,0,0,0
Map,Slow,Random,32-bit,3,1,37,0,0,0
Map,Slow,Random,32-bit,4,1,38,0,0,0
Map,Slow,Random,32-bit,5,1,36,0,0,0
Map,Slow,Random,32-bit,6,1,38,0,0,0
Map,Slow,Random,32-bit,7,1,37,0,0,0
Map,Slow,Random,32-bit,8,1,39,0,0,0
Map,Slow,Random,32-bit,9,1,37,0,0,0
Map,Slow,Random,32-bit,0,2,38,0,0,0
Map,Slow,Random,32-bit,1,2,38,0,0,0
Map,Slow,Random,32-bit,2,2,37,0,0,0
Map,Slow,Random,32-bit,3,2,38,0,0,0
Map,Slow,Random,32-bit,4,2,37,0,0,0
Map,Slow,Random,32-bit,5,2,37,0,0,0
Map,Slow,Random,32-bit,6,2,38,0,0,0
Map,Slow,Random,32-bit,7,2,38,0,0,0
Map,Slow,Random,32-bit,8,2,38,0,0,0
Map,Slow,Random,32-bit,9,2,39,0,0,0
Map,Slow,Random,32-bit,0,3,58,0,0,0
Map,Slow,Random,32-bit,1,3,38,0,0,0
Map,Slow,Random,32-bit,2,3,60,0,0,0
Map,Slow,Random,32-bit,3,3,60,0,0,0
Map,Slow,Random,32-bit,4,3,37,0,0,0
Map,Slow,Random,32-bit,5,3,74,0,0,0
Map,Slow,Random,32-bit,6,3,37,0,0,0
Map,Slow,Random,32-bit,7,3,61,0,0,0
Map,Slow,Random,32-bit,8,3,59,0,0,0
Map,Slow,Random,32-bit,9,3,34,0,0,0
Map,Slow,Random,32-bit,0,5,74,0,0,0
Map,Slow,Random,32-bit,1,5,56,0,0,0
Map,Slow,Random,32-bit,2,5,65,0,0,0
Map,Slow,Random,32-bit,3,5,66,0,0,0
Map,Slow,Random,32-bit,4,5,58,0,0,0
Map,Slow,Random,32-bit,5,5,79,0,0,0
Map,Slow,Random,32-bit,6,5,53,0,0,0
Map,Slow,Random,32-bit,7,5,79,1,0,0
Map,Slow,Random,32-bit,8,5,66,0,0,0
Map,Slow,Random,32-bit,9,5,51,0,0,0
Map,Slow,Random,32-bit,0,7,77,1,0,0
Map,Slow,Random,32-bit,1,7,77,1,0,0
Map,Slow,Random,32-bit,2,7,79,0,0,0
Map,Slow,Random,32-bit,3,7,69,0,0,0
Map,Slow,Random,32-bit,4,7,77,0,0,0
Map,Slow,Random,32-bit,5,7,88,1,0,0
Map,Slow,Random,32-bit,6,7,66,0,0,0
Map,Slow,Random,32-bit,7,7,85,1,0,0
Map,Slow,Random,32-bit,8,7,84,1,0,0
Map,Slow,Random,32-bit,9,7,68,0,0,0
Map,Slow,Random,32-bit,0,11,94,1,0,0
Map,Slow,Random,32-bit,1,11,92,1,0,0
Map,Slow,Random,32-bit,2,11,106,1,0,0
Map,Slow,Random,32-bit,3,11,89,1,0,0
Map,Slow,Random,32-bit,4,11,98,1,0,0
Map,Slow,Random,32-bit,5,11,96,1,0,0
Map,Slow,Random,32-bit,6,11,93,1,0,0
Map,Slow,Random,32-bit,7,11,90,1,0,0
Map,Slow,Random,32-bit,8,11,102,1,0,0
Map,Slow,Random,32-bit,9,11,84,1,0,0
Map,Slow,Random,32-bit,0,17,109,1,0,0
Map,Slow,Random,32-bit,1,17,102,1,0,0
Map,Slow,Random,32-bit,2,17,109,1,0,0
Map,Slow,Random,32-bit,3,17,107,1,0,0
Map,Slow,Random,32-bit,4,17,114,1,0,0
Map,Slow,Random,32-bit,5,17,113,1,0,0
Map,Slow,Random,32-bit,6,17,110,1,0,0
Map,Slow,Random,32-bit,7,17,104,1,0,0
Map,Slow,Random,32-bit,8,17,110,1,0,0
Map,Slow,Random,32-bit,9,17,106,1,0,0
Map,Slow,Random,32-bit,0,25,123,1,0,0
Map,Slow,Random,32-bit,1,25,120,1,0,0
Map,Slow,Random,32-bit,2,25,122,1,0,0
Map,Slow,Random,32-bit,3,25,115,1,0,0
Map,Slow,Random,32-bit,4,25,126,1,0,0
Map,Slow,Random,32-bit,5,25,128,1,0,0
Map,Slow,Random,32-bit,6,25,123,1,0,0
Map,Slow,Random,32-bit,7,25,121,1,0,0
Map,Slow,Random,32-bit,8,25,125,1,0,0
Map,Slow,Random,32-bit,9,25,120,1,0,0
Map,Slow,Random,32-bit,0,38,140,1,0,0
Map,Slow,Random,32-bit,1,38,140,1,0,0
Map,Slow,Random,32-bit,2,38,145,1,0,0
Map,Slow,Random,32-bit,3,38,138,1,0,0
Map,Slow,Random,32-bit,4,38,150,1,0,0
Map,Slow,Random,32-bit,5,38,144,1,0,0
Map,Slow,Random,32-bit,6,38,140,1,0,0
Map,Slow,Random,32-bit,7,38,144,1,0,0
Map,Slow,Random,32-bit,8,38,142,1,0,0
Map,Slow,Random,32-bit,9,38,144,1,0,0
Map,Slow,Random,32-bit,0,57,161,1,0,0
Map,Slow,Random,32-bit,1,57,154,1,0,0
Map,Slow,Random,32-bit,2,57,164,1,0,0
Map,Slow,Random,32-bit,3,57,170,1,0,0
Map,Slow,Random,32-bit,4,57,169,1,0,0
Map,Slow,Random,32-bit,5,57,165,1,0,0
Map,Slow,Random,32-bit,6,57,165,1,0,0
Map,Slow,Random,32-bit,7,57,162,1,0,0
Map,Slow,Random,32-bit,8,57,158,1,0,0
Map,Slow,Random,32-bit,9,57,169,1,0,0
Map,Slow,Random,32-bit,0,86,179,1,0,0
Map,Slow,Random,32-bit,1,86,174,1,0,0
Map,Slow,Random,32-bit,2,86,185,1,0,0
Map,Slow,Random,32-bit,3,86,175,1,0,0
Map,Slow,Random,32-bit,4,86,183,1,0,0
Map,Slow,Random,32-bit,5,86,181,1,0,0
Map,Slow,Random,32-bit,6,86,175,1,0,0
Map,Slow,Random,32-bit,7,86,185,1,0,0
Map,Slow,Random,32-bit,8,86,182,1,0,0
Map,Slow,Random,32-bit,9,86,175,1,0,0
Map,Slow,Random,32-bit,0,129,206,1,0,0
Map,Slow,Random,32-bit,1,129,193,1,0,0
Map,Slow,Random,32-bit,2,129,203,1,0,0
Map,Slow,Random,32-bit,3,129,196,1,0,0
Map,Slow,Random,32-bit,4,129,197,1,0,0
Map,Slow,Random,32-bit,5,129,197,1,0,0
Map,Slow,Random,32-bit,6,129,192,1,0,0
Map,Slow,Random,32-bit,7,129,199,1,0,0
Map,Slow,Random,32-bit,8,129,192,1,0,0
Map,Slow,Random,32-bit,9,129,201,1,0,0
Map,Slow,Random,32-bit,0,194,218,2,0,0
Map,Slow,Random,32-bit,1,194,212,2,0,0
Map,Slow,Random,32-bit,2,194,216,2,0,0
Map,Slow,Random,32-bit,3,194,217,2,0,0
Map,Slow,Random,32-bit,4,194,217,2,0,0
Map,Slow,Random,32-bit,5,194,211,2,0,0
Map,Slow,Random,32-bit,6,194,220,2,0,0
Map,Slow,Random,32-bit,7,194,234,2,0,0
Map,Slow,Random,32-bit,8,194,212,2,0,0
Map,Slow,Random,32-bit,9,194,211,2,0,0
Map,Slow,Random,32-bit,0,291,237,2,0,0
Map,Slow,Random,32-bit,1,291,231,2,0,0
Map,Slow,Random,32-bit,2,291,230,2,0,0
Map,Slow,Random,32-bit,3,291,227,2,0,0
Map,Slow,Random,32-bit,4,291,229,2,0,0
Map,Slow,Random,32-bit,5,291,233,2,0,0
Map,Slow,Random,32-bit,6,291,238,2,0,0
Map,Slow,Random,32-bit,7,291,236,2,0,0
Map,Slow,Random,32-bit,8,291,234,2,0,0
Map,Slow,Random,32-bit,9,291,236,2,0,0
Map,Slow,Random,32-bit,0,437,256,2,0,0
Map,Slow,Random,32-bit,1,437,253,2,0,0
Map,Slow,Random,32-bit,2,437,257,2,0,0
Map,Slow,Random,32-bit,3,437,268,2,0,0
Map,Slow,Random,32-bit,4,437,254,2,0,0
Map,Slow,Random,32-bit,5,437,257,2,0,0
Map,Slow,Random,32-bit,6,437,256,2,0,0
Map,Slow,Random,32-bit,7,437,258,2,0,0
Map,Slow,Random,32-bit,8,437,268,2,0,0
Map,Slow,Random,32-bit,9,437,257,2,0,0
Map,Slow,Random,32-bit,0,656,270,2,0,0
Map,Slow,Random,32-bit,1,656,272,2,0,0
Map,Slow,Random,32-bit,2,656,277,2,0,0
Map,Slow,Random,32-bit,3,656,299,2,0,0
Map,Slow,Random,32-bit,4,656,272,2,0,0
Map,Slow,Random,32-bit,5,656,269,2,0,0
Map,Slow,Random,32-bit,6,656,276,2,0,0
Map,Slow,Random,32-bit,7,656,276,2,0,0
Map,Slow,Random,32-bit,8,656,291,2,0,0
Map,Slow,Random,32-bit,9,656,276,2,0,0
Map,Slow,Random,32-bit,0,985,290,2,0,0
Map,Slow,Random,32-bit,1,985,282,2,0,0
Map,Slow,Random,32-bit,2,985,292,2,0,0
Map,Slow,Random,32-bit,3,985,310,2,0,0
Map,Slow,Random,32-bit,4,985,291,2,0,0
Map,Slow,Random,32-bit,5,985,289,2,0,0
Map,Slow,Random,32-bit,6,985,288,2,0,0
Map,Slow,Random,32-bit,7,985,283,2,0,0
Map,Slow,Random,32-bit,8,985,289,2,0,0
Map,Slow,Random,32-bit,9,985,290,2,0,0
Map,Slow,Random,32-bit,0,1477,293,2,0,0
Map,Slow,Random,32-bit,1,1477,289,2,0,0
Map,Slow,Random,32-bit,2,1477,294,2,0,0
Map,Slow,Random,32-bit,3,1477,294,2,0,0
Map,Slow,Random,32-bit,4,1477,297,2,0,0
Map,Slow,Random,32-bit,5,1477,291,2,0,0
Map,Slow,Random,32-bit,6,1477,300,2,0,0
Map,Slow,Random,32-bit,7,1477,301,2,0,0
Map,Slow,Random,32-bit,8,1477,292,2,0,0
Map,Slow,Random,32-bit,9,1477,297,2,0,0
Map,Slow,Random,32-bit,0,2216,344,2,0,0
Map,Slow,Random,32-bit,1,2216,324,2,0,0
Map,Slow,Random,32-bit,2,2216,337,2,0,0
Map,Slow,Random,32-bit,3,2216,324,2,0,0
Map,Slow,Random,32-bit,4,2216,321,2,0,0
Map,Slow,Random,32-bit,5,2216,321,2,0,0
Map,Slow,Random,32-bit,6,2216,327,2,0,0
Map,Slow,Random,32-bit,7,2216,329,2,0,0
Map,Slow,Random,32-bit,8,2216,326,2,0,0
Map,Slow,Random,32-bit,9,2216,327,2,0,0
Map,Slow,Random,32-bit,0,3325,330,2,0,0
Map,Slow,Random,32-bit,1,3325,330,2,0,0
Map,Slow,Random,32-bit,2,3325,326,2,0,0
Map,Slow,Random,32-bit,3,3325,328,2,0,0
Map,Slow,Random,32-bit,4,3325,324,2,0,0
Map,Slow,Random,32-bit,5,3325,330,2,0,0
Map,Slow,Random,32-bit,6,3325,328,2,0,0
Map,Slow,Random,32-bit,7,3325,347,2,0,0
Map,Slow,Random,32-bit,8,3325,324,2,0,0
Map,Slow,Random,32-bit,9,3325,336,2,0,0
Map,Slow,Random,32-bit,0,4987,370,3,0,0
Map,Slow,Random,32-bit,1,4987,390,3,0,0
Map,Slow,Random,32-bit,2,4987,368,3,0,0
Map,Slow,Random,32-bit,3,4987,396,3,0,0
Map,Slow,Random,32-bit,4,4987,376,3,0,0
Map,Slow,Random,32-bit,5,4987,390,3,0,0
Map,Slow,Random,32-bit,6,4987,378,3,0,0
Map,Slow,Random,32-bit,7,4987,396,3,0,0
Map,Slow,Random,32-bit,8,4987,373,3,0,0
Map,Slow,Random,32-bit,9,4987,387,3,0,0
Map,Slow,Random,32-bit,0,7481,357,2,0,0
Map,Slow,Random,32-bit,1,7481,351,2,0,0
Map,Slow,Random,32-bit,2,7481,357,2,0,0
Map,Slow,Random,32-bit,3,7481,355,2,0,0
Map,Slow,Random,32-bit,4,7481,354,2,0,0
Map,Slow,Random,32-bit,5,7481,357,2,0,0
Map,Slow,Random,32-bit,6,7481,355,2,0,0
Map,Slow,Random,32-bit,7,7481,359,2,0,0
Map,Slow,Random,32-bit,8,7481,367,2,0,0
Map,Slow,Random,32-bit,9,7481,358,2,0,0
Map,Slow,Random,32-bit,0,11222,393,3,0,0
Map,Slow,Random,32-bit,1,11222,376,3,0,0
Map,Slow,Random,32-bit,2,11222,397,3,0,0
Map,Slow,Random,32-bit,3,11222,376,3,0,0
Map,Slow,Random,32-bit,4,11222,394,3,0,0
Map,Slow,Random,32-bit,5,11222,378,3,0,0
Map,Slow,Random,32-bit,6,11222,388,3,0,0
Map,Slow,Random,32-bit,7,11222,379,3,0,0
Map,Slow,Random,32-bit,8,11222,388,3,0,0
Map,Slow,Random,32-bit,9,11222,374,3,0,0
Map,Slow,Random,32-bit,0,16834,296,2,0,0
Map,Slow,Random,32-bit,1,16834,296,2,0,0
Map,Slow,Random,32-bit,2,16834,292,2,0,0
Map,Slow,Random,32-bit,3,16834,297,2,0,0
Map,Slow,Random,32-bit,4,16834,296,2,0,0
Map,Slow,Random,32-bit,5,16834,310,2,0,0
Map,Slow,Random,32-bit,6,16834,297,2,0,0
Map,Slow,Random,32-bit,7,16834,318,2,0,0
Map,Slow,Random,32-bit,8,16834,297,2,0,0
Map,Slow,Random,32-bit,9,16834,296,2,0,0
Map,Slow,Random,32-bit,0,25251,461,3,1,0
Map,Slow,Random,32-bit,1,25251,493,3,1,0
Map,Slow,Random,32-bit,2,25251,468,3,1,0
Map,Slow,Random,32-bit,3,25251,481,3,1,0
Map,Slow,Random,32-bit,4,25251,469,3,1,0
Map,Slow,Random,32-bit,5,25251,487,3,1,0
Map,Slow,Random,32-bit,6,25251,463,3,1,0
Map,Slow,Random,32-bit,7,25251,465,3,1,0
Map,Slow,Random,32-bit,8,25251,476,3,1,0
Map,Slow,Random,32-bit,9,25251,470,3,1,0
Map,Slow,Random,32-bit,0,37876,740,4,1,0
Map,Slow,Random,32-bit,1,37876,740,4,1,0
Map,Slow,Random,32-bit,2,37876,746,4,1,0
Map,Slow,Random,32-bit,3,37876,733,4,1,0
Map,Slow,Random,32-bit,4,37876,720,4,1,0
Map,Slow,Random,32-bit,5,37876,743,4,1,0
Map,Slow,Random,32-bit,6,37876,745,4,1,0
Map,Slow,Random,32-bit,7,37876,751,4,1,0
Map,Slow,Random,32-bit,8,37876,743,4,1,0
Map,Slow,Random,32-bit,9,37876,726,4,1,0
Map,Slow,Random,32-bit,0,56815,1164,6,2,0
Map,Slow,Random,32-bit,1,56815,1155,6,2,0
Map,Slow,Random,32-bit,2,56815,1159,6,2,0
Map,Slow,Random,32-bit,3,56815,1163,6,2,0
Map,Slow,Random,32-bit,4,56815,1144,6,2,0
Map,Slow,Random,32-bit,5,56815,1166,6,2,0
Map,Slow,Random,32-bit,6,56815,1164,6,2,0
Map,Slow,Random,32-bit,7,56815,1166,6,2,0
Map,Slow,Random,32-bit,8,56815,1150,6,2,0
Map,Slow,Random,32-bit,9,56815,1147,6,2,0
Map,Slow,Random,32-bit,0,85222,1783,12,4,2
Map,Slow,Random,32-bit,1,85222,1816,12,4,2
Map,Slow,Random,32-bit,2,85222,1820,12,4,2
Map,Slow,Random,32-bit,3,85222,1837,12,4,2
Map,Slow,Random,32-bit,4,85222,1799,12,4,2
Map,Slow,Random,32-bit,5,85222,1808,12,4,2
Map,Slow,Random,32-bit,6,85222,1814,12,4,2
Map,Slow,Random,32-bit,7,85222,1811,12,4,2
Map,Slow,Random,32-bit,8,85222,1821,12,4,2
Map,Slow,Random,32-bit,9,85222,1798,12,4,2
Map,Slow,Random,32-bit,0,127834,2831,17,7,3
Map,Slow,Random,32-bit,1,127834,2860,17,7,3
Map,Slow,Random,32-bit,2,127834,2899,17,7,3
Map,Slow,Random,32-bit,3,127834,2874,17,7,3
Map,Slow,Random,32-bit,4,127834,2872,17,7,3
Map,Slow,Random,32-bit,5,127834,2875,17,7,3
Map,Slow,Random,32-bit,6,127834,2870,17,7,3
Map,Slow,Random,32-bit,7,127834,2881,17,7,3
Map,Slow,Random,32-bit,8,127834,2864,17,7,3
Map,Slow,Random,32-bit,9,127834,2879,17,7,3
Map,Slow,Random,32-bit,0,191751,4467,26,13,4
Map,Slow,Random,32-bit,1,191751,4499,26,13,4
Map,Slow,Random,32-bit,2,191751,4504,26,13,4
Map,Slow,Random,32-bit,3,191751,4464,26,13,4
Map,Slow,Random,32-bit,4,191751,4452,26,13,4
Map,Slow,Random,32-bit,5,191751,4484,26,13,4
Map,Slow,Random,32-bit,6,191751,4505,26,13,4
Map,Slow,Random,32-bit,7,191751,4500,26,13,4
Map,Slow,Random,32-bit,8,191751,4468,26,13,4
Map,Slow,Random,32-bit,9,191751,4464,26,13,4
Map,Slow,Random,32-bit,0,287626,6999,39,15,5
Map,Slow,Random,32-bit,1,287626,6946,39,15,5
Map,Slow,Random,32-bit,2,287626,7026,39,15,5
Map,Slow,Random,32-bit,3,287626,6983,39,15,5
Map,Slow,Random,32-bit,4,287626,7001,39,15,5
Map,Slow,Random,32-bit,5,287626,7019,39,15,5
Map,Slow,Random,32-bit,6,287626,7037,39,15,5
Map,Slow,Random,32-bit,7,287626,7046,39,15,5
Map,Slow,Random,32-bit,8,287626,6986,39,15,5
Map,Slow,Random,32-bit,9,287626,6994,39,15,5
Map,Slow,Random,32-bit,0,431439,10947,64,27,11
Map,Slow,Random,32-bit,1,431439,10906,64,27,11
Map,Slow,Random,32-bit,2,431439,10953,64,27,11
Map,Slow,Random,32-bit,3,431439,11001,64,27,11
Map,Slow,Random,32-bit,4,431439,10985,64,27,11
Map,Slow,Random,32-bit,5,431439,10968,64,27,11
Map,Slow,Random,32-bit,6,431439,10968,64,27,11
Map,Slow,Random,32-bit,7,431439,11004,64,27,11
Map,Slow,Random,32-bit,8,431439,10943,64,27,11
Map,Slow,Random,32-bit,9,431439,10988,64,27,11
Map,Slow,Random,32-bit,0,647159,17185,93,41,13
Map,Slow,Random,32-bit,1,647159,17208,95,43,14
Map,Slow,Random,32-bit,2,647159,17320,94,41,13
Map,Slow,Random,32-bit,3,647159,17212,93,41,13
Map,Slow,Random,32-bit,4,647159,17325,95,42,14
Map,Slow,Random,32-bit,5,647159,17250,94,41,13
Map,Slow,Random,32-bit,6,647159,17235,94,42,13
Map,Slow,Random,32-bit,7,647159,17181,94,41,13
Map,Slow,Random,32-bit,8,647159,17262,94,42,13
Map,Slow,Random,32-bit,9,647159,17247,94,42,13
Map,Fast,Stripes,32-bit,0,1,77,38,0,0
Map,Fast,Stripes,32-bit,1,1,76,38,0,0
Map,Fast,Stripes,32-bit,2,1,78,38,0,0
Map,Fast,Stripes,32-bit,3,1,81,38,0,0
Map,Fast,Stripes,32-bit,4,1,77,38,0,0
Map,Fast,Stripes,32-bit,5,1,74,38,0,0
Map,Fast,Stripes,32-bit,6,1,76,38,0,0
Map,Fast,Stripes,32-bit,7,1,75,38,0,0
Map,Fast,Stripes,32-bit,8,1,76,38,0,0
Map,Fast,Stripes,32-bit,9,1,76,38,0,0
Map,Fast,Stripes,32-bit,0,2,78,49,0,0
Map,Fast,Stripes,32-bit,1,2,78,49,0,0
Map,Fast,Stripes,32-bit,2,2,92,49,0,0
Map,Fast,Stripes,32-bit,3,2,79,49,0,0
Map,Fast,Stripes,32-bit,4,2,81,49,0,0
Map,Fast,Stripes,32-bit,5,2,90,49,0,0
Map,Fast,Stripes,32-bit,6,2,81,49,0,0
Map,Fast,Stripes,32-bit,7,2,82,49,0,0
Map,Fast,Stripes,32-bit,8,2,79,49,0,0
Map,Fast,Stripes,32-bit,9,2,78,49,0,0
Map,Fast,Stripes,32-bit,0,3,104,67,0,0
Map,Fast,Stripes,32-bit,1,3,104,67,0,0
Map,Fast,Stripes,32-bit,2,3,81,52,0,0
Map,Fast,Stripes,32-bit,3,3,106,67,0,0
Map,Fast,Stripes,32-bit,4,3,108,67,0,0
Map,Fast,Stripes,32-bit,5,3,109,67,0,0
Map,Fast,Stripes,32-bit,6,3,112,67,0,0
Map,Fast,Stripes,32-bit,7,3,108,67,0,0
Map,Fast,Stripes,32-bit,8,3,106,67,0,0
Map,Fast,Stripes,32-bit,9,3,106,67,0,0
Map,Fast,Stripes,32-bit,0,5,128,82,0,0
Map,Fast,Stripes,32-bit,1,5,121,82,0,0
Map,Fast,Stripes,32-bit,2,5,103,64,0,0
Map,Fast,Stripes,32-bit,3,5,131,87,0,0
Map,Fast,Stripes,32-bit,4,5,123,82,0,0
Map,Fast,Stripes,32-bit,5,5,127,82,0,0
Map,Fast,Stripes,32-bit,6,5,123,82,0,0
Map,Fast,Stripes,32-bit,7,5,123,82,0,0
Map,Fast,Stripes,32-bit,8,5,123,82,0,0
Map,Fast,Stripes,32-bit,9,5,129,82,0,0
Map,Fast,Stripes,32-bit,0,7,137,95,0,0
Map,Fast,Stripes,32-bit,1,7,140,95,0,0
Map,Fast,Stripes,32-bit,2,7,114,76,0,0
Map,Fast,Stripes,32-bit,3,7,140,98,0,0
Map,Fast,Stripes,32-bit,4,7,140,92,0,0
Map,Fast,Stripes,32-bit,5,7,142,95,0,0
Map,Fast,Stripes,32-bit,6,7,140,95,0,0
Map,Fast,Stripes,32-bit,7,7,139,95,0,0
Map,Fast,Stripes,32-bit,8,7,143,95,0,0
Map,Fast,Stripes,32-bit,9,7,142,95,0,0
Map,Fast,Stripes,32-bit,0,11,172,110,0,0
Map,Fast,Stripes,32-bit,1,11,167,110,0,0
Map,Fast,Stripes,32-bit,2,11,138,90,0,0
Map,Fast,Stripes,32-bit,3,11,209,121,0,0
Map,Fast,Stripes,32-bit,4,11,163,108,0,0
Map,Fast,Stripes,32-bit,5,11,181,113,0,0
Map,Fast,Stripes,32-bit,6,11,172,110,0,0
Map,Fast,Stripes,32-bit,7,11,178,110,0,0
Map,Fast,Stripes,32-bit,8,11,175,110,0,0
Map,Fast,Stripes,32-bit,9,11,169,110,0,0
Map,Fast,Stripes,32-bit,0,17,219,124,0,0
Map,Fast,Stripes,32-bit,1,17,193,124,0,0
Map,Fast,Stripes,32-bit,2,17,165,103,0,0
Map,Fast,Stripes,32-bit,3,17,202,138,0,0
Map,Fast,Stripes,32-bit,4,17,193,132,0,0
Map,Fast,Stripes,32-bit,5,17,196,132,0,0
Map,Fast,Stripes,32-bit,6,17,197,127,0,0
Map,Fast,Stripes,32-bit,7,17,192,124,0,0
Map,Fast,Stripes,32-bit,8,17,195,124,0,0
Map,Fast,Stripes,32-bit,9,17,196,124,0,0
Map,Fast,Stripes,32-bit,0,25,224,139,0,0
Map,Fast,Stripes,32-bit,1,25,214,139,0,0
Map,Fast,Stripes,32-bit,2,25,190,118,0,0
Map,Fast,Stripes,32-bit,3,25,226,151,0,0
Map,Fast,Stripes,32-bit,4,25,234,149,0,0
Map,Fast,Stripes,32-bit,5,25,221,145,0,0
Map,Fast,Stripes,32-bit,6,25,224,144,0,0
Map,Fast,Stripes,32-bit,7,25,216,139,0,0
Map,Fast,Stripes,32-bit,8,25,220,139,0,0
Map,Fast,Stripes,32-bit,9,25,229,139,0,0
Map,Fast,Stripes,32-bit,0,38,244,153,0,0
Map,Fast,Stripes,32-bit,1,38,242,153,0,0
Map,Fast,Stripes,32-bit,2,38,210,132,0,0
Map,Fast,Stripes,32-bit,3,38,253,168,0,0
Map,Fast,Stripes,32-bit,4,38,253,168,0,0
Map,Fast,Stripes,32-bit,5,38,252,162,0,0
Map,Fast,Stripes,32-bit,6,38,253,163,0,0
Map,Fast,Stripes,32-bit,7,38,245,155,0,0
Map,Fast,Stripes,32-bit,8,38,251,157,0,0
Map,Fast,Stripes,32-bit,9,38,251,153,0,0
Map,Fast,Stripes,32-bit,0,57,277,166,0,0
Map,Fast,Stripes,32-bit,1,57,276,166,0,0
Map,Fast,Stripes,32-bit,2,57,231,145,0,0
Map,Fast,Stripes,32-bit,3,57,309,183,0,0
Map,Fast,Stripes,32-bit,4,57,278,182,0,0
Map,Fast,Stripes,32-bit,5,57,269,174,0,0
Map,Fast,Stripes,32-bit,6,57,290,181,0,0
Map,Fast,Stripes,32-bit,7,57,281,172,0,0
Map,Fast,Stripes,32-bit,8,57,317,174,0,0
Map,Fast,Stripes,32-bit,9,57,280,168,0,0
Map,Fast,Stripes,32-bit,0,86,308,181,0,0
Map,Fast,Stripes,32-bit,1,86,310,181,0,0
Map,Fast,Stripes,32-bit,2,86,253,159,0,0
Map,Fast,Stripes,32-bit,3,86,328,196,0,0
Map,Fast,Stripes,32-bit,4,86,299,194,0,0
Map,Fast,Stripes,32-bit,5,86,311,191,0,0
Map,Fast,Stripes,32-bit,6,86,319,198,0,0
Map,Fast,Stripes,32-bit,7,86,324,186,0,0
Map,Fast,Stripes,32-bit,8,86,322,193,0,0
Map,Fast,Stripes,32-bit,9,86,318,185,0,0
Map,Fast,Stripes,32-bit,0,129,326,193,0,0
Map,Fast,Stripes,32-bit,1,129,335,193,0,0
Map,Fast,Stripes,32-bit,2,129,285,170,0,0
Map,Fast,Stripes,32-bit,3,129,342,211,0,0
Map,Fast,Stripes,32-bit,4,129,336,210,0,0
Map,Fast,Stripes,32-bit,5,129,328,204,0,0
Map,Fast,Stripes,32-bit,6,129,353,213,0,0
Map,Fast,Stripes,32-bit,7,129,336,199,0,0
Map,Fast,Stripes,32-bit,8,129,383,213,0,0
Map,Fast,Stripes,32-bit,9,129,340,199,0,0
Map,Fast,Stripes,32-bit,0,194,374,208,0,0
Map,Fast,Stripes,32-bit,1,194,361,208,0,0
Map,Fast,Stripes,32-bit,2,194,324,186,0,0
Map,Fast,Stripes,32-bit,3,194,361,222,0,0
Map,Fast,Stripes,32-bit,4,194,411,223,0,0
Map,Fast,Stripes,32-bit,5,194,360,217,0,0
Map,Fast,Stripes,32-bit,6,194,365,226,0,0
Map,Fast,Stripes,32-bit,7,194,367,214,0,0
Map,Fast,Stripes,32-bit,8,194,438,229,0,0
Map,Fast,Stripes,32-bit,9,194,381,215,0,0
Map,Fast,Stripes,32-bit,0,291,399,220,0,0
Map,Fast,Stripes,32-bit,1,291,382,220,0,0
Map,Fast,Stripes,32-bit,2,291,368,198,0,0
Map,Fast,Stripes,32-bit,3,291,405,238,0,0
Map,Fast,Stripes,32-bit,4,291,426,235,0,0
Map,Fast,Stripes,32-bit,5,291,411,231,0,0
Map,Fast,Stripes,32-bit,6,291,430,241,0,0
Map,Fast,Stripes,32-bit,7,291,399,227,0,0
Map,Fast,Stripes,32-bit,8,291,438,246,0,0
Map,Fast,Stripes,32-bit,9,291,407,227,0,0
Map,Fast,Stripes,32-bit,0,437,404,234,0,0
Map,Fast,Stripes,32-bit,1,437,431,234,0,0
Map,Fast,Stripes,32-bit,2,437,362,211,0,0
Map,Fast,Stripes,32-bit,3,437,445,250,0,0
Map,Fast,Stripes,32-bit,4,437,445,250,0,0
Map,Fast,Stripes,32-bit,5,437,441,243,0,0
Map,Fast,Stripes,32-bit,6,437,433,253,0,0
Map,Fast,Stripes,32-bit,7,437,448,241,0,0
Map,Fast,Stripes,32-bit,8,437,488,258,0,0
Map,Fast,Stripes,32-bit,9,437,451,242,0,0
Map,Fast,Stripes,32-bit,0,656,429,247,0,0
Map,Fast,Stripes,32-bit,1,656,427,247,0,0
Map,Fast,Stripes,32-bit,2,656,393,225,0,0
Map,Fast,Stripes,32-bit,3,656,443,263,0,0
Map,Fast,Stripes,32-bit,4,656,483,261,0,0
Map,Fast,Stripes,32-bit,5,656,449,258,0,0
Map,Fast,Stripes,32-bit,6,656,462,266,0,0
Map,Fast,Stripes,32-bit,7,656,492,254,0,0
Map,Fast,Stripes,32-bit,8,656,508,274,0,0
Map,Fast,Stripes,32-bit,9,656,479,255,0,0
Map,Fast,Stripes,32-bit,0,985,451,259,0,0
Map,Fast,Stripes,32-bit,1,985,480,259,0,0
Map,Fast,Stripes,32-bit,2,985,416,237,0,0
Map,Fast,Stripes,32-bit,3,985,498,277,0,0
Map,Fast,Stripes,32-bit,4,985,507,276,0,0
Map,Fast,Stripes,32-bit,5,985,488,270,0,0
Map,Fast,Stripes,32-bit,6,985,497,279,0,0
Map,Fast,Stripes,32-bit,7,985,525,267,0,0
Map,Fast,Stripes,32-bit,8,985,552,289,0,0
Map,Fast,Stripes,32-bit,9,985,519,269,0,0
Map,Fast,Stripes,32-bit,0,1477,494,274,0,0
Map,Fast,Stripes,32-bit,1,1477,482,274,0,0
Map,Fast,Stripes,32-bit,2,1477,488,251,0,0
Map,Fast,Stripes,32-bit,3,1477,523,289,0,0
Map,Fast,Stripes,32-bit,4,1477,565,288,0,0
Map,Fast,Stripes,32-bit,5,1477,522,284,0,0
Map,Fast,Stripes,32-bit,6,1477,526,291,0,0
Map,Fast,Stripes,32-bit,7,1477,531,281,0,0
Map,Fast,Stripes,32-bit,8,1477,625,301,0,0
Map,Fast,Stripes,32-bit,9,1477,529,282,0,0
Map,Fast,Stripes,32-bit,0,2216,568,286,0,0
Map,Fast,Stripes,32-bit,1,2216,540,286,0,0
Map,Fast,Stripes,32-bit,2,2216,482,263,0,0
Map,Fast,Stripes,32-bit,3,2216,571,303,0,0
Map,Fast,Stripes,32-bit,4,2216,567,301,0,0
Map,Fast,Stripes,32-bit,5,2216,557,297,0,0
Map,Fast,Stripes,32-bit,6,2216,603,305,0,0
Map,Fast,Stripes,32-bit,7,2216,566,292,0,0
Map,Fast,Stripes,32-bit,8,2216,636,315,0,0
Map,Fast,Stripes,32-bit,9,2216,587,295,0,0
Map,Fast,Stripes,32-bit,0,3325,593,299,0,0
Map,Fast,Stripes,32-bit,1,3325,571,299,0,0
Map,Fast,Stripes,32-bit,2,3325,555,277,0,0
Map,Fast,Stripes,32-bit,3,3325,650,315,0,0
Map,Fast,Stripes,32-bit,4,3325,627,315,0,0
Map,Fast,Stripes,32-bit,5,3325,615,309,0,0
Map,Fast,Stripes,32-bit,6,3325,629,317,0,0
Map,Fast,Stripes,32-bit,7,3325,626,306,0,0
Map,Fast,Stripes,32-bit,8,3325,707,329,0,0
Map,Fast,Stripes,32-bit,9,3325,636,308,0,0
Map,Fast,Stripes,32-bit,0,4987,646,312,0,0
Map,Fast,Stripes,32-bit,1,4987,639,312,0,0
Map,Fast,Stripes,32-bit,2,4987,630,290,0,0
Map,Fast,Stripes,32-bit,3,4987,716,329,0,0
Map,Fast,Stripes,32-bit,4,4987,693,326,0,0
Map,Fast,Stripes,32-bit,5,4987,675,323,0,0
Map,Fast,Stripes,32-bit,6,4987,701,330,0,0
Map,Fast,Stripes,32-bit,7,4987,733,319,0,0
Map,Fast,Stripes,32-bit,8,4987,771,341,0,0
Map,Fast,Stripes,32-bit,9,4987,687,320,0,0
Map,Fast,Stripes,32-bit,0,7481,756,323,8,0
Map,Fast,Stripes,32-bit,1,7481,758,323,8,0
Map,Fast,Stripes,32-bit,2,7481,700,298,30,0
Map,Fast,Stripes,32-bit,3,7481,667,333,26,0
Map,Fast,Stripes,32-bit,4,7481,646,333,22,0
Map,Fast,Stripes,32-bit,5,7481,686,333,3,0
Map,Fast,Stripes,32-bit,6,7481,688,333,32,0
Map,Fast,Stripes,32-bit,7,7481,807,331,2,0
Map,Fast,Stripes,32-bit,8,7481,773,333,49,0
Map,Fast,Stripes,32-bit,9,7481,708,333,2,0
Map,Fast,Stripes,32-bit,0,11222,855,281,72,0
Map,Fast,Stripes,32-bit,1,11222,883,281,72,0
Map,Fast,Stripes,32-bit,2,11222,826,237,66,0
Map,Fast,Stripes,32-bit,3,11222,927,295,65,0
Map,Fast,Stripes,32-bit,4,11222,941,290,66,0
Map,Fast,Stripes,32-bit,5,11222,904,291,69,0
Map,Fast,Stripes,32-bit,6,11222,900,297,65,0
Map,Fast,Stripes,32-bit,7,11222,911,288,68,0
Map,Fast,Stripes,32-bit,8,11222,952,313,67,0
Map,Fast,Stripes,32-bit,9,11222,929,283,69,0
Map,Fast,Stripes,32-bit,0,16834,881,271,67,2
Map,Fast,Stripes,32-bit,1,16834,903,271,67,2
Map,Fast,Stripes,32-bit,2,16834,914,227,72,2
Map,Fast,Stripes,32-bit,3,16834,1028,288,68,7
Map,Fast,Stripes,32-bit,4,16834,992,287,67,6
Map,Fast,Stripes,32-bit,5,16834,978,277,65,6
Map,Fast,Stripes,32-bit,6,16834,1001,290,71,6
Map,Fast,Stripes,32-bit,7,16834,971,267,66,4
Map,Fast,Stripes,32-bit,8,16834,1109,298,64,3
Map,Fast,Stripes,32-bit,9,16834,958,282,65,3
Map,Fast,Stripes,32-bit,0,25251,923,296,98,0
Map,Fast,Stripes,32-bit,1,25251,930,296,98,0
Map,Fast,Stripes,32-bit,2,25251,1013,219,54,9
Map,Fast,Stripes,32-bit,3,25251,1142,269,42,12
Map,Fast,Stripes,32-bit,4,25251,1125,272,41,11
Map,Fast,Stripes,32-bit,5,25251,1085,262,45,11
Map,Fast,Stripes,32-bit,6,25251,1134,260,56,10
Map,Fast,Stripes,32-bit,7,25251,1101,266,44,12
Map,Fast,Stripes,32-bit,8,25251,1247,290,77,7
Map,Fast,Stripes,32-bit,9,25251,1126,264,39,12
Map,Fast,Stripes,32-bit,0,37876,1135,255,32,12
Map,Fast,Stripes,32-bit,1,37876,1134,255,32,12
Map,Fast,Stripes,32-bit,2,37876,1076,213,31,10
Map,Fast,Stripes,32-bit,3,37876,1229,288,29,13
Map,Fast,Stripes,32-bit,4,37876,1210,275,26,13
Map,Fast,Stripes,32-bit,5,37876,1185,268,27,11
Map,Fast,Stripes,32-bit,6,37876,1177,301,40,15
Map,Fast,Stripes,32-bit,7,37876,1248,250,29,12
Map,Fast,Stripes,32-bit,8,37876,1366,269,26,13
Map,Fast,Stripes,32-bit,9,37876,1223,270,30,11
Map,Fast,Stripes,32-bit,0,56815,1201,268,25,11
Map,Fast,Stripes,32-bit,1,56815,1190,268,25,11
Map,Fast,Stripes,32-bit,2,56815,1141,254,21,9
Map,Fast,Stripes,32-bit,3,56815,1250,299,24,10
Map,Fast,Stripes,32-bit,4,56815,1283,298,26,12
Map,Fast,Stripes,32-bit,5,56815,1183,291,28,12
Map,Fast,Stripes,32-bit,6,56815,1208,303,25,11
Map,Fast,Stripes,32-bit,7,56815,1215,284,25,10
Map,Fast,Stripes,32-bit,8,56815,1385,306,26,11
Map,Fast,Stripes,32-bit,9,56815,1252,283,27,11
Map,Fast,Stripes,32-bit,0,85222,1225,290,25,12
Map,Fast,Stripes,32-bit,1,85222,1232,290,25,12
Map,Fast,Stripes,32-bit,2,85222,1233,218,23,10
Map,Fast,Stripes,32-bit,3,85222,1292,301,22,10
Map,Fast,Stripes,32-bit,4,85222,1279,295,22,10
Map,Fast,Stripes,32-bit,5,85222,1305,286,26,13
Map,Fast,Stripes,32-bit,6,85222,1249,306,22,9
Map,Fast,Stripes,32-bit,7,85222,1270,284,23,9
Map,Fast,Stripes,32-bit,8,85222,1401,313,22,9
Map,Fast,Stripes,32-bit,9,85222,1283,295,23,10
Map,Fast,Stripes,32-bit,0,127834,1324,289,27,13
Map,Fast,Stripes,32-bit,1,127834,1311,288,28,14
Map,Fast,Stripes,32-bit,2,127834,1197,254,20,10
Map,Fast,Stripes,32-bit,3,127834,1343,311,29,14
Map,Fast,Stripes,32-bit,4,127834,1366,308,36,16
Map,Fast,Stripes,32-bit,5,127834,1313,307,31,15
Map,Fast,Stripes,32-bit,6,127834,1340,313,30,14
Map,Fast,Stripes,32-bit,7,127834,1388,297,38,17
Map,Fast,Stripes,32-bit,8,127834,1433,320,27,13
Map,Fast,Stripes,32-bit,9,127834,1369,297,33,15
Map,Fast,Stripes,32-bit,0,191751,1633,344,150,30
Map,Fast,Stripes,32-bit,1,191751,1530,321,71,26
Map,Fast,Stripes,32-bit,2,191751,1515,298,100,26
Map,Fast,Stripes,32-bit,3,191751,1548,338,58,25
Map,Fast,Stripes,32-bit,4,191751,1536,337,66,26
Map,Fast,Stripes,32-bit,5,191751,1536,349,107,27
Map,Fast,Stripes,32-bit,6,191751,1560,355,104,27
Map,Fast,Stripes,32-bit,7,191751,1576,343,129,28
Map,Fast,Stripes,32-bit,8,191751,1736,383,172,29
Map,Fast,Stripes,32-bit,9,191751,1627,336,100,28
Map,Fast,Stripes,32-bit,0,287626,1463,323,117,18
Map,Fast,Stripes,32-bit,1,287626,1484,321,101,16
Map,Fast,Stripes,32-bit,2,287626,1448,285,115,22
Map,Fast,Stripes,32-bit,3,287626,1435,322,42,8
Map,Fast,Stripes,32-bit,4,287626,1422,322,42,9
Map,Fast,Stripes,32-bit,5,287626,1485,356,149,22
Map,Fast,Stripes,32-bit,6,287626,1450,328,41,8
Map,Fast,Stripes,32-bit,7,287626,1443,313,40,8
Map,Fast,Stripes,32-bit,8,287626,1540,324,42,7
Map,Fast,Stripes,32-bit,9,287626,1418,318,42,8
Map,Fast,Stripes,32-bit,0,431439,1321,300,44,7
Map,Fast,Stripes,32-bit,1,431439,1322,300,45,7
Map,Fast,Stripes,32-bit,2,431439,1293,273,40,8
Map,Fast,Stripes,32-bit,3,431439,1387,313,44,9
Map,Fast,Stripes,32-bit,4,431439,1411,307,42,8
Map,Fast,Stripes,32-bit,5,431439,1309,307,41,7
Map,Fast,Stripes,32-bit,6,431439,1368,316,45,8
Map,Fast,Stripes,32-bit,7,431439,1407,301,43,8
Map,Fast,Stripes,32-bit,8,431439,1484,318,43,7
Map,Fast,Stripes,32-bit,9,431439,1403,306,43,7
Map,Fast,Stripes,32-bit,0,647159,1311,291,94,8
Map,Fast,Stripes,32-bit,1,647159,1293,292,97,8
Map,Fast,Stripes,32-bit,2,647159,1298,262,67,10
Map,Fast,Stripes,32-bit,3,647159,1312,304,95,8
Map,Fast,Stripes,32-bit,4,647159,1345,290,63,11
Map,Fast,Stripes,32-bit,5,647159,1301,285,45,7
Map,Fast,Stripes,32-bit,6,647159,1292,294,65,8
Map,Fast,Stripes,32-bit,7,647159,1285,293,93,6
Map,Fast,Stripes,32-bit,8,647159,1362,300,40,6
Map,Fast,Stripes,32-bit,9,647159,1346,288,67,11
Map,Fast,Random,32-bit,0,1,77,38,0,0
Map,Fast,Random,32-bit,1,1,74,38,0,0
Map,Fast,Random,32-bit,2,1,72,38,0,0
Map,Fast,Random,32-bit,3,1,72,38,0,0
Map,Fast,Random,32-bit,4,1,75,38,0,0
Map,Fast,Random,32-bit,5,1,73,38,0,0
Map,Fast,Random,32-bit,6,1,77,38,0,0
Map,Fast,Random,32-bit,7,1,74,38,0,0
Map,Fast,Random,32-bit,8,1,73,38,0,0
Map,Fast,Random,32-bit,9,1,72,38,0,0
Map,Fast,Random,32-bit,0,2,79,49,0,0
Map,Fast,Random,32-bit,1,2,84,49,0,0
Map,Fast,Random,32-bit,2,2,81,49,0,0
Map,Fast,Random,32-bit,3,2,87,49,0,0
Map,Fast,Random,32-bit,4,2,81,49,0,0
Map,Fast,Random,32-bit,5,2,77,49,0,0
Map,Fast,Random,32-bit,6,2,77,49,0,0
Map,Fast,Random,32-bit,7,2,77,49,0,0
Map,Fast,Random,32-bit,8,2,91,49,0,0
Map,Fast,Random,32-bit,9,2,77,49,0,0
Map,Fast,Random,32-bit,0,3,117,75,0,0
Map,Fast,Random,32-bit,1,3,82,52,0,0
Map,Fast,Random,32-bit,2,3,102,67,0,0
Map,Fast,Random,32-bit,3,3,101,67,0,0
Map,Fast,Random,32-bit,4,3,80,52,0,0
Map,Fast,Random,32-bit,5,3,103,67,0,0
Map,Fast,Random,32-bit,6,3,80,52,0,0
Map,Fast,Random,32-bit,7,3,111,75,0,0
Map,Fast,Random,32-bit,8,3,114,75,0,0
Map,Fast,Random,32-bit,9,3,79,52,0,0
Map,Fast,Random,32-bit,0,5,130,87,0,0
Map,Fast,Random,32-bit,1,5,118,78,0,0
Map,Fast,Random,32-bit,2,5,109,73,0,0
Map,Fast,Random,32-bit,3,5,108,73,0,0
Map,Fast,Random,32-bit,4,5,105,73,0,0
Map,Fast,Random,32-bit,5,5,127,87,0,0
Map,Fast,Random,32-bit,6,5,95,64,0,0
Map,Fast,Random,32-bit,7,5,134,91,0,0
Map,Fast,Random,32-bit,8,5,115,78,0,0
Map,Fast,Random,32-bit,9,5,96,64,0,0
Map,Fast,Random,32-bit,0,7,147,101,0,0
Map,Fast,Random,32-bit,1,7,132,92,0,0
Map,Fast,Random,32-bit,2,7,123,85,0,0
Map,Fast,Random,32-bit,3,7,121,82,0,0
Map,Fast,Random,32-bit,4,7,123,85,0,0
Map,Fast,Random,32-bit,5,7,140,95,0,0
Map,Fast,Random,32-bit,6,7,119,82,0,0
Map,Fast,Random,32-bit,7,7,134,92,0,0
Map,Fast,Random,32-bit,8,7,132,89,0,0
Map,Fast,Random,32-bit,9,7,126,82,0,0
Map,Fast,Random,32-bit,0,11,163,115,0,0
Map,Fast,Random,32-bit,1,11,147,102,0,0
Map,Fast,Random,32-bit,2,11,146,98,0,0
Map,Fast,Random,32-bit,3,11,146,98,0,0
Map,Fast,Random,32-bit,4,11,147,102,0,0
Map,Fast,Random,32-bit,5,11,180,104,0,0
Map,Fast,Random,32-bit,6,11,148,106,0,0
Map,Fast,Random,32-bit,7,11,144,98,0,0
Map,Fast,Random,32-bit,8,11,160,113,0,0
Map,Fast,Random,32-bit,9,11,142,96,0,0
Map,Fast,Random,32-bit,0,17,180,121,0,0
Map,Fast,Random,32-bit,1,17,157,110,0,0
Map,Fast,Random,32-bit,2,17,187,112,0,0
Map,Fast,Random,32-bit,3,17,163,112,0,0
Map,Fast,Random,32-bit,4,17,174,118,0,0
Map,Fast,Random,32-bit,5,17,185,120,0,0
Map,Fast,Random,32-bit,6,17,168,118,0,0
Map,Fast,Random,32-bit,7,17,160,110,0,0
Map,Fast,Random,32-bit,8,17,168,118,0,0
Map,Fast,Random,32-bit,9,17,171,111,0,0
Map,Fast,Random,32-bit,0,25,192,129,0,0
Map,Fast,Random,32-bit,1,25,185,126,0,0
Map,Fast,Random,32-bit,2,25,213,126,0,0
Map,Fast,Random,32-bit,3,25,175,120,0,0
Map,Fast,Random,32-bit,4,25,200,135,0,0
Map,Fast,Random,32-bit,5,25,207,130,0,0
Map,Fast,Random,32-bit,6,25,187,128,0,0
Map,Fast,Random,32-bit,7,25,185,126,0,0
Map,Fast,Random,32-bit,8,25,185,126,0,0
Map,Fast,Random,32-bit,9,25,187,125,0,0
Map,Fast,Random,32-bit,0,38,211,142,0,0
Map,Fast,Random,32-bit,1,38,203,138,0,0
Map,Fast,Random,32-bit,2,38,214,141,0,0
Map,Fast,Random,32-bit,3,38,202,135,0,0
Map,Fast,Random,32-bit,4,38,224,151,0,0
Map,Fast,Random,32-bit,5,38,215,145,0,0
Map,Fast,Random,32-bit,6,38,205,140,0,0
Map,Fast,Random,32-bit,7,38,207,140,0,0
Map,Fast,Random,32-bit,8,38,211,137,0,0
Map,Fast,Random,32-bit,9,38,206,139,0,0
Map,Fast,Random,32-bit,0,57,239,158,0,0
Map,Fast,Random,32-bit,1,57,230,152,0,0
Map,Fast,Random,32-bit,2,57,245,158,0,0
Map,Fast,Random,32-bit,3,57,226,152,0,0
Map,Fast,Random,32-bit,4,57,247,163,0,0
Map,Fast,Random,32-bit,5,57,252,158,0,0
Map,Fast,Random,32-bit,6,57,236,153,0,0
Map,Fast,Random,32-bit,7,57,234,152,0,0
Map,Fast,Random,32-bit,8,57,232,154,0,0
Map,Fast,Random,32-bit,9,57,236,155,0,0
Map,Fast,Random,32-bit,0,86,272,169,0,0
Map,Fast,Random,32-bit,1,86,275,164,0,0
Map,Fast,Random,32-bit,2,86,268,172,0,0
Map,Fast,Random,32-bit,3,86,271,164,0,0
Map,Fast,Random,32-bit,4,86,283,173,0,0
Map,Fast,Random,32-bit,5,86,277,171,0,0
Map,Fast,Random,32-bit,6,86,281,164,0,0
Map,Fast,Random,32-bit,7,86,258,164,0,0
Map,Fast,Random,32-bit,8,86,277,168,0,0
Map,Fast,Random,32-bit,9,86,283,171,0,0
Map,Fast,Random,32-bit,0,129,326,182,0,0
Map,Fast,Random,32-bit,1,129,317,178,0,0
Map,Fast,Random,32-bit,2,129,330,183,0,0
Map,Fast,Random,32-bit,3,129,314,180,0,0
Map,Fast,Random,32-bit,4,129,328,185,0,0
Map,Fast,Random,32-bit,5,129,321,182,0,0
Map,Fast,Random,32-bit,6,129,309,178,0,0
Map,Fast,Random,32-bit,7,129,318,179,0,0
Map,Fast,Random,32-bit,8,129,309,177,0,0
Map,Fast,Random,32-bit,9,129,347,182,0,0
Map,Fast,Random,32-bit,0,194,388,197,0,0
Map,Fast,Random,32-bit,1,194,398,193,0,0
Map,Fast,Random,32-bit,2,194,382,196,0,0
Map,Fast,Random,32-bit,3,194,402,193,0,0
Map,Fast,Random,32-bit,4,194,373,196,0,0
Map,Fast,Random,32-bit,5,194,378,193,0,0
Map,Fast,Random,32-bit,6,194,371,195,0,0
Map,Fast,Random,32-bit,7,194,414,196,0,0
Map,Fast,Random,32-bit,8,194,367,190,0,0
Map,Fast,Random,32-bit,9,194,374,192,0,0
Map,Fast,Random,32-bit,0,291,445,210,0,0
Map,Fast,Random,32-bit,1,291,453,205,0,0
Map,Fast,Random,32-bit,2,291,428,207,0,0
Map,Fast,Random,32-bit,3,291,446,206,0,0
Map,Fast,Random,32-bit,4,291,434,207,0,0
Map,Fast,Random,32-bit,5,291,446,205,0,0
Map,Fast,Random,32-bit,6,291,441,209,0,0
Map,Fast,Random,32-bit,7,291,463,210,0,0
Map,Fast,Random,32-bit,8,291,429,204,0,0
Map,Fast,Random,32-bit,9,291,452,207,0,0
Map,Fast,Random,32-bit,0,437,487,221,0,0
Map,Fast,Random,32-bit,1,437,496,220,0,0
Map,Fast,Random,32-bit,2,437,484,221,0,0
Map,Fast,Random,32-bit,3,437,487,218,0,0
Map,Fast,Random,32-bit,4,437,500,220,0,0
Map,Fast,Random,32-bit,5,437,486,219,0,0
Map,Fast,Random,32-bit,6,437,513,221,0,0
Map,Fast,Random,32-bit,7,437,490,223,0,0
Map,Fast,Random,32-bit,8,437,490,220,0,0
Map,Fast,Random,32-bit,9,437,504,221,0,0
Map,Fast,Random,32-bit,0,656,534,235,0,0
Map,Fast,Random,32-bit,1,656,550,232,0,0
Map,Fast,Random,32-bit,2,656,541,233,0,0
Map,Fast,Random,32-bit,3,656,530,233,0,0
Map,Fast,Random,32-bit,4,656,560,233,0,0
Map,Fast,Random,32-bit,5,656,548,232,0,0
Map,Fast,Random,32-bit,6,656,541,234,0,0
Map,Fast,Random,32-bit,7,656,568,235,0,0
Map,Fast,Random,32-bit,8,656,534,233,0,0
Map,Fast,Random,32-bit,9,656,543,235,0,0
Map,Fast,Random,32-bit,0,985,629,247,0,0
Map,Fast,Random,32-bit,1,985,589,246,0,0
Map,Fast,Random,32-bit,2,985,573,247,0,0
Map,Fast,Random,32-bit,3,985,592,247,0,0
Map,Fast,Random,32-bit,4,985,584,246,0,0
Map,Fast,Random,32-bit,5,985,567,245,0,0
Map,Fast,Random,32-bit,6,985,590,247,0,0
Map,Fast,Random,32-bit,7,985,579,248,0,0
Map,Fast,Random,32-bit,8,985,576,246,0,0
Map,Fast,Random,32-bit,9,985,594,248,0,0
Map,Fast,Random,32-bit,0,1477,620,259,0,0
Map,Fast,Random,32-bit,1,1477,620,258,0,0
Map,Fast,Random,32-bit,2,1477,636,259,0,0
Map,Fast,Random,32-bit,3,1477,647,261,0,0
Map,Fast,Random,32-bit,4,1477,640,259,0,0
Map,Fast,Random,32-bit,5,1477,634,259,0,0
Map,Fast,Random,32-bit,6,1477,651,261,0,0
Map,Fast,Random,32-bit,7,1477,634,262,0,0
Map,Fast,Random,32-bit,8,1477,639,259,0,0
Map,Fast,Random,32-bit,9,1477,642,260,0,0
Map,Fast,Random,32-bit,0,2216,696,273,0,0
Map,Fast,Random,32-bit,1,2216,682,272,0,0
Map,Fast,Random,32-bit,2,2216,686,273,0,0
Map,Fast,Random,32-bit,3,2216,702,274,0,0
Map,Fast,Random,32-bit,4,2216,699,273,0,0
Map,Fast,Random,32-bit,5,2216,669,274,0,0
Map,Fast,Random,32-bit,6,2216,685,275,0,0
Map,Fast,Random,32-bit,7,2216,693,275,0,0
Map,Fast,Random,32-bit,8,2216,697,272,0,0
Map,Fast,Random,32-bit,9,2216,676,273,0,0
Map,Fast,Random,32-bit,0,3325,735,286,0,0
Map,Fast,Random,32-bit,1,3325,757,286,0,0
Map,Fast,Random,32-bit,2,3325,748,286,0,0
Map,Fast,Random,32-bit,3,3325,765,287,0,0
Map,Fast,Random,32-bit,4,3325,760,286,0,0
Map,Fast,Random,32-bit,5,3325,754,287,0,0
Map,Fast,Random,32-bit,6,3325,750,287,0,0
Map,Fast,Random,32-bit,7,3325,769,288,0,0
Map,Fast,Random,32-bit,8,3325,760,285,0,0
Map,Fast,Random,32-bit,9,3325,763,286,0,0
Map,Fast,Random,32-bit,0,4987,848,299,0,0
Map,Fast,Random,32-bit,1,4987,859,299,0,0
Map,Fast,Random,32-bit,2,4987,851,300,0,0
Map,Fast,Random,32-bit,3,4987,850,300,0,0
Map,Fast,Random,32-bit,4,4987,841,300,0,0
Map,Fast,Random,32-bit,5,4987,828,300,0,0
Map,Fast,Random,32-bit,6,4987,837,301,0,0
Map,Fast,Random,32-bit,7,4987,851,301,0,0
Map,Fast,Random,32-bit,8,4987,866,299,0,0
Map,Fast,Random,32-bit,9,4987,857,300,0,0
Map,Fast,Random,32-bit,0,7481,966,310,22,0
Map,Fast,Random,32-bit,1,7481,966,310,22,0
Map,Fast,Random,32-bit,2,7481,981,310,24,0
Map,Fast,Random,32-bit,3,7481,974,311,23,0
Map,Fast,Random,32-bit,4,7481,988,311,22,0
Map,Fast,Random,32-bit,5,7481,986,310,23,0
Map,Fast,Random,32-bit,6,7481,981,311,23,0
Map,Fast,Random,32-bit,7,7481,961,312,22,0
Map,Fast,Random,32-bit,8,7481,977,309,23,0
Map,Fast,Random,32-bit,9,7481,977,310,23,0
Map,Fast,Random,32-bit,0,11222,1129,246,67,0
Map,Fast,Random,32-bit,1,11222,1103,247,67,0
Map,Fast,Random,32-bit,2,11222,1116,252,67,0
Map,Fast,Random,32-bit,3,11222,1134,243,70,0
Map,Fast,Random,32-bit,4,11222,1121,249,69,0
Map,Fast,Random,32-bit,5,11222,1122,255,66,0
Map,Fast,Random,32-bit,6,11222,1133,255,62,0
Map,Fast,Random,32-bit,7,11222,1117,249,72,0
Map,Fast,Random,32-bit,8,11222,1113,250,64,0
Map,Fast,Random,32-bit,9,11222,1128,247,65,0
Map,Fast,Random,32-bit,0,16834,1258,227,79,0
Map,Fast,Random,32-bit,1,16834,1242,228,76,0
Map,Fast,Random,32-bit,2,16834,1270,228,77,0
Map,Fast,Random,32-bit,3,16834,1270,225,84,0
Map,Fast,Random,32-bit,4,16834,1270,227,77,0
Map,Fast,Random,32-bit,5,16834,1293,225,77,0
Map,Fast,Random,32-bit,6,16834,1272,228,80,0
Map,Fast,Random,32-bit,7,16834,1263,228,78,0
Map,Fast,Random,32-bit,8,16834,1288,227,78,0
Map,Fast,Random,32-bit,9,16834,1278,227,73,0
Map,Fast,Random,32-bit,0,25251,1400,215,91,1
Map,Fast,Random,32-bit,1,25251,1406,218,92,1
Map,Fast,Random,32-bit,2,25251,1408,217,89,1
Map,Fast,Random,32-bit,3,25251,1408,216,90,1
Map,Fast,Random,32-bit,4,25251,1417,214,87,0
Map,Fast,Random,32-bit,5,25251,1378,219,91,1
Map,Fast,Random,32-bit,6,25251,1407,216,88,0
Map,Fast,Random,32-bit,7,25251,1394,220,90,0
Map,Fast,Random,32-bit,8,25251,1412,218,93,1
Map,Fast,Random,32-bit,9,25251,1389,219,90,0
Map,Fast,Random,32-bit,0,37876,1676,210,79,11
Map,Fast,Random,32-bit,1,37876,1682,212,76,12
Map,Fast,Random,32-bit,2,37876,1680,211,76,13
Map,Fast,Random,32-bit,3,37876,1694,211,74,13
Map,Fast,Random,32-bit,4,37876,1693,209,78,12
Map,Fast,Random,32-bit,5,37876,1655,211,72,12
Map,Fast,Random,32-bit,6,37876,1687,212,77,12
Map,Fast,Random,32-bit,7,37876,1689,212,77,12
Map,Fast,Random,32-bit,8,37876,1693,209,78,12
Map,Fast,Random,32-bit,9,37876,1654,210,77,12
Map,Fast,Random,32-bit,0,56815,2016,206,76,22
Map,Fast,Random,32-bit,1,56815,2022,206,77,21
Map,Fast,Random,32-bit,2,56815,2041,206,77,21
Map,Fast,Random,32-bit,3,56815,2013,208,77,20
Map,Fast,Random,32-bit,4,56815,1991,210,80,20
Map,Fast,Random,32-bit,5,56815,2022,208,78,21
Map,Fast,Random,32-bit,6,56815,2064,209,78,20
Map,Fast,Random,32-bit,7,56815,2007,208,78,20
Map,Fast,Random,32-bit,8,56815,2056,207,73,22
Map,Fast,Random,32-bit,9,56815,2056,203,78,22
Map,Fast,Random,32-bit,0,85222,2295,209,79,29
Map,Fast,Random,32-bit,1,85222,2313,210,85,29
Map,Fast,Random,32-bit,2,85222,2313,211,81,29
Map,Fast,Random,32-bit,3,85222,2291,211,79,29
Map,Fast,Random,32-bit,4,85222,2295,212,81,29
Map,Fast,Random,32-bit,5,85222,2285,211,83,29
Map,Fast,Random,32-bit,6,85222,2306,211,76,29
Map,Fast,Random,32-bit,7,85222,2275,212,83,29
Map,Fast,Random,32-bit,8,85222,2299,209,82,29
Map,Fast,Random,32-bit,9,85222,2273,212,83,29
Map,Fast,Random,32-bit,0,127834,2811,211,69,29
Map,Fast,Random,32-bit,1,127834,2793,210,70,29
Map,Fast,Random,32-bit,2,127834,2778,212,72,28
Map,Fast,Random,32-bit,3,127834,2839,211,71,29
Map,Fast,Random,32-bit,4,127834,2831,211,69,29
Map,Fast,Random,32-bit,5,127834,2789,212,69,28
Map,Fast,Random,32-bit,6,127834,2832,211,72,29
Map,Fast,Random,32-bit,7,127834,2802,211,72,28
Map,Fast,Random,32-bit,8,127834,2800,211,70,28
Map,Fast,Random,32-bit,9,127834,2825,211,69,28
Map,Fast,Random,32-bit,0,191751,3707,234,160,49
Map,Fast,Random,32-bit,1,191751,3689,233,161,49
Map,Fast,Random,32-bit,2,191751,3694,235,160,49
Map,Fast,Random,32-bit,3,191751,3719,233,158,51
Map,Fast,Random,32-bit,4,191751,3701,235,162,48
Map,Fast,Random,32-bit,5,191751,3728,234,158,50
Map,Fast,Random,32-bit,6,191751,3688,237,162,49
Map,Fast,Random,32-bit,7,191751,3656,235,161,49
Map,Fast,Random,32-bit,8,191751,3717,234,160,49
Map,Fast,Random,32-bit,9,191751,3706,234,158,49
Map,Fast,Random,32-bit,0,287626,3824,234,86,35
Map,Fast,Random,32-bit,1,287626,3827,235,86,35
Map,Fast,Random,32-bit,2,287626,3866,235,84,36
Map,Fast,Random,32-bit,3,287626,3887,235,88,37
Map,Fast,Random,32-bit,4,287626,3828,236,87,37
Map,Fast,Random,32-bit,5,287626,3805,233,86,35
Map,Fast,Random,32-bit,6,287626,3811,236,86,36
Map,Fast,Random,32-bit,7,287626,3854,233,85,34
Map,Fast,Random,32-bit,8,287626,3843,235,88,35
Map,Fast,Random,32-bit,9,287626,3838,236,89,36
Map,Fast,Random,32-bit,0,431439,4351,242,115,43
Map,Fast,Random,32-bit,1,431439,4246,238,113,39
Map,Fast,Random,32-bit,2,431439,4310,240,113,41
Map,Fast,Random,32-bit,3,431439,4338,237,116,35
Map,Fast,Random,32-bit,4,431439,4303,240,118,39
Map,Fast,Random,32-bit,5,431439,4360,240,118,39
Map,Fast,Random,32-bit,6,431439,4308,240,117,40
Map,Fast,Random,32-bit,7,431439,4339,240,116,40
Map,Fast,Random,32-bit,8,431439,4353,240,117,39
Map,Fast,Random,32-bit,9,431439,4320,241,115,41
Map,Fast,Random,32-bit,0,647159,4552,229,96,33
Map,Fast,Random,32-bit,1,647159,4564,228,95,30
Map,Fast,Random,32-bit,2,647159,4565,228,94,31
Map,Fast,Random,32-bit,3,647159,4516,227,94,29
Map,Fast,Random,32-bit,4,647159,4495,228,96,31
Map,Fast,Random,32-bit,5,647159,4526,227,94,31
Map,Fast,Random,32-bit,6,647159,4519,227,97,31
Map,Fast,Random,32-bit,7,647159,4862,227,95,31
Map,Fast,Random,32-bit,8,647159,4699,227,96,30
Map,Fast,Random,32-bit,9,647159,4562,227,94,30
Map,Slow,Stripes,64-bit,0,1,35,1,0,0
Map,Slow,Stripes,64-bit,1,1,39,1,0,0
Map,Slow,Stripes,64-bit,2,1,32,1,0,0
Map,Slow,Stripes,64-bit,3,1,33,1,0,0
Map,Slow,Stripes,64-bit,4,1,33,1,0,0
Map,Slow,Stripes,64-bit,5,1,34,1,0,0
Map,Slow,Stripes,64-bit,6,1,32,1,0,0
Map,Slow,Stripes,64-bit,7,1,32,1,0,0
Map,Slow,Stripes,64-bit,8,1,33,1,0,0
Map,Slow,Stripes,64-bit,9,1,31,1,0,0
Map,Slow,Stripes,64-bit,0,2,32,1,0,0
Map,Slow,Stripes,64-bit,1,2,34,1,0,0
Map,Slow,Stripes,64-bit,2,2,33,1,0,0
Map,Slow,Stripes,64-bit,3,2,32,1,0,0
Map,Slow,Stripes,64-bit,4,2,33,1,0,0
Map,Slow,Stripes,64-bit,5,2,31,1,0,0
Map,Slow,Stripes,64-bit,6,2,35,1,0,0
Map,Slow,Stripes,64-bit,7,2,33,1,0,0
Map,Slow,Stripes,64-bit,8,2,32,1,0,0
Map,Slow,Stripes,64-bit,9,2,32,1,0,0
Map,Slow,Stripes,64-bit,0,3,51,1,0,0
Map,Slow,Stripes,64-bit,1,3,52,1,0,0
Map,Slow,Stripes,64-bit,2,3,34,1,0,0
Map,Slow,Stripes,64-bit,3,3,52,1,0,0
Map,Slow,Stripes,64-bit,4,3,61,1,0,0
Map,Slow,Stripes,64-bit,5,3,50,1,0,0
Map,Slow,Stripes,64-bit,6,3,50,1,0,0
Map,Slow,Stripes,64-bit,7,3,52,1,0,0
Map,Slow,Stripes,64-bit,8,3,51,1,0,0
Map,Slow,Stripes,64-bit,9,3,51,1,0,0
Map,Slow,Stripes,64-bit,0,5,69,1,0,0
Map,Slow,Stripes,64-bit,1,5,63,1,0,0
Map,Slow,Stripes,64-bit,2,5,44,1,0,0
Map,Slow,Stripes,64-bit,3,5,65,1,0,0
Map,Slow,Stripes,64-bit,4,5,60,1,0,0
Map,Slow,Stripes,64-bit,5,5,68,1,0,0
Map,Slow,Stripes,64-bit,6,5,61,1,0,0
Map,Slow,Stripes,64-bit,7,5,60,1,0,0
Map,Slow,Stripes,64-bit,8,5,59,1,0,0
Map,Slow,Stripes,64-bit,9,5,60,1,0,0
Map,Slow,Stripes,64-bit,0,7,80,1,0,0
Map,Slow,Stripes,64-bit,1,7,75,1,0,0
Map,Slow,Stripes,64-bit,2,7,55,1,0,0
Map,Slow,Stripes,64-bit,3,7,66,1,0,0
Map,Slow,Stripes,64-bit,4,7,70,1,0,0
Map,Slow,Stripes,64-bit,5,7,77,1,0,0
Map,Slow,Stripes,64-bit,6,7,69,1,0,0
Map,Slow,Stripes,64-bit,7,7,70,1,0,0
Map,Slow,Stripes,64-bit,8,7,69,1,0,0
Map,Slow,Stripes,64-bit,9,7,73,1,0,0
Map,Slow,Stripes,64-bit,0,11,92,2,0,0
Map,Slow,Stripes,64-bit,1,11,89,2,0,0
Map,Slow,Stripes,64-bit,2,11,69,1,0,0
Map,Slow,Stripes,64-bit,3,11,82,2,0,0
Map,Slow,Stripes,64-bit,4,11,82,2,0,0
Map,Slow,Stripes,64-bit,5,11,92,2,0,0
Map,Slow,Stripes,64-bit,6,11,87,2,0,0
Map,Slow,Stripes,64-bit,7,11,83,2,0,0
Map,Slow,Stripes,64-bit,8,11,85,2,0,0
Map,Slow,Stripes,64-bit,9,11,87,2,0,0
Map,Slow,Stripes,64-bit,0,17,105,2,0,0
Map,Slow,Stripes,64-bit,1,17,98,2,0,0
Map,Slow,Stripes,64-bit,2,17,82,2,0,0
Map,Slow,Stripes,64-bit,3,17,97,2,0,0
Map,Slow,Stripes,64-bit,4,17,110,2,0,0
Map,Slow,Stripes,64-bit,5,17,99,2,0,0
Map,Slow,Stripes,64-bit,6,17,100,2,0,0
Map,Slow,Stripes,64-bit,7,17,98,2,0,0
Map,Slow,Stripes,64-bit,8,17,107,2,0,0
Map,Slow,Stripes,64-bit,9,17,97,2,0,0
Map,Slow,Stripes,64-bit,0,25,109,2,0,0
Map,Slow,Stripes,64-bit,1,25,116,2,0,0
Map,Slow,Stripes,64-bit,2,25,98,2,0,0
Map,Slow,Stripes,64-bit,3,25,127,2,0,0
Map,Slow,Stripes,64-bit,4,25,117,2,0,0
Map,Slow,Stripes,64-bit,5,25,112,2,0,0
Map,Slow,Stripes,64-bit,6,25,122,2,0,0
Map,Slow,Stripes,64-bit,7,25,109,2,0,0
Map,Slow,Stripes,64-bit,8,25,114,2,0,0
Map,Slow,Stripes,64-bit,9,25,123,2,0,0
Map,Slow,Stripes,64-bit,0,38,125,2,0,0
Map,Slow,Stripes,64-bit,1,38,128,2,0,0
Map,Slow,Stripes,64-bit,2,38,122,2,0,0
Map,Slow,Stripes,64-bit,3,38,130,3,0,0
Map,Slow,Stripes,64-bit,4,38,130,3,0,0
Map,Slow,Stripes,64-bit,5,38,129,3,0,0
Map,Slow,Stripes,64-bit,6,38,129,3,0,0
Map,Slow,Stripes,64-bit,7,38,132,2,0,0
Map,Slow,Stripes,64-bit,8,38,129,2,0,0
Map,Slow,Stripes,64-bit,9,38,127,2,0,0
Map,Slow,Stripes,64-bit,0,57,135,3,0,0
Map,Slow,Stripes,64-bit,1,57,154,3,0,0
Map,Slow,Stripes,64-bit,2,57,125,2,0,0
Map,Slow,Stripes,64-bit,3,57,141,3,0,0
Map,Slow,Stripes,64-bit,4,57,143,3,0,0
Map,Slow,Stripes,64-bit,5,57,141,3,0,0
Map,Slow,Stripes,64-bit,6,57,152,3,0,0
Map,Slow,Stripes,64-bit,7,57,143,3,0,0
Map,Slow,Stripes,64-bit,8,57,147,3,0,0
Map,Slow,Stripes,64-bit,9,57,140,3,0,0
Map,Slow,Stripes,64-bit,0,86,164,3,0,0
Map,Slow,Stripes,64-bit,1,86,153,3,0,0
Map,Slow,Stripes,64-bit,2,86,139,2,0,0
Map,Slow,Stripes,64-bit,3,86,164,3,0,0
Map,Slow,Stripes,64-bit,4,86,154,3,0,0
Map,Slow,Stripes,64-bit,5,86,158,3,0,0
Map,Slow,Stripes,64-bit,6,86,169,3,0,0
Map,Slow,Stripes,64-bit,7,86,161,3,0,0
Map,Slow,Stripes,64-bit,8,86,166,3,0,0
Map,Slow,Stripes,64-bit,9,86,170,3,0,0
Map,Slow,Stripes,64-bit,0,129,168,3,0,0
Map,Slow,Stripes,64-bit,1,129,167,3,0,0
Map,Slow,Stripes,64-bit,2,129,164,3,0,0
Map,Slow,Stripes,64-bit,3,129,173,3,0,0
Map,Slow,Stripes,64-bit,4,129,176,3,0,0
Map,Slow,Stripes,64-bit,5,129,178,3,0,0
Map,Slow,Stripes,64-bit,6,129,177,3,0,0
Map,Slow,Stripes,64-bit,7,129,175,3,0,0
Map,Slow,Stripes,64-bit,8,129,183,3,0,0
Map,Slow,Stripes,64-bit,9,129,179,3,0,0
Map,Slow,Stripes,64-bit,0,194,186,3,0,0
Map,Slow,Stripes,64-bit,1,194,185,3,0,0
Map,Slow,Stripes,64-bit,2,194,183,3,0,0
Map,Slow,Stripes,64-bit,3,194,184,4,0,0
Map,Slow,Stripes,64-bit,4,194,189,4,0,0
Map,Slow,Stripes,64-bit,5,194,202,3,0,0
Map,Slow,Stripes,64-bit,6,194,191,4,0,0
Map,Slow,Stripes,64-bit,7,194,192,3,0,0
Map,Slow,Stripes,64-bit,8,194,193,4,0,0
Map,Slow,Stripes,64-bit,9,194,198,3,0,0
Map,Slow,Stripes,64-bit,0,291,199,3,0,0
Map,Slow,Stripes,64-bit,1,291,200,3,0,0
Map,Slow,Stripes,64-bit,2,291,188,3,0,0
Map,Slow,Stripes,64-bit,3,291,203,4,0,0
Map,Slow,Stripes,64-bit,4,291,201,4,0,0
Map,Slow,Stripes,64-bit,5,291,203,4,0,0
Map,Slow,Stripes,64-bit,6,291,219,4,0,0
Map,Slow,Stripes,64-bit,7,291,208,4,0,0
Map,Slow,Stripes,64-bit,8,291,215,4,0,0
Map,Slow,Stripes,64-bit,9,291,215,4,0,0
Map,Slow,Stripes,64-bit,0,437,214,4,0,0
Map,Slow,Stripes,64-bit,1,437,212,4,0,0
Map,Slow,Stripes,64-bit,2,437,213,3,0,0
Map,Slow,Stripes,64-bit,3,437,213,4,0,0
Map,Slow,Stripes,64-bit,4,437,221,4,0,0
Map,Slow,Stripes,64-bit,5,437,227,4,0,0
Map,Slow,Stripes,64-bit,6,437,223,4,0,0
Map,Slow,Stripes,64-bit,7,437,225,4,0,0
Map,Slow,Stripes,64-bit,8,437,252,4,0,0
Map,Slow,Stripes,64-bit,9,437,220,4,0,0
Map,Slow,Stripes,64-bit,0,656,227,4,0,0
Map,Slow,Stripes,64-bit,1,656,237,4,0,0
Map,Slow,Stripes,64-bit,2,656,221,4,0,0
Map,Slow,Stripes,64-bit,3,656,245,4,0,0
Map,Slow,Stripes,64-bit,4,656,233,4,0,0
Map,Slow,Stripes,64-bit,5,656,246,4,0,0
Map,Slow,Stripes,64-bit,6,656,236,4,0,0
Map,Slow,Stripes,64-bit,7,656,238,4,0,0
Map,Slow,Stripes,64-bit,8,656,261,4,0,0
Map,Slow,Stripes,64-bit,9,656,243,4,0,0
Map,Slow,Stripes,64-bit,0,985,237,4,0,0
Map,Slow,Stripes,64-bit,1,985,252,4,0,0
Map,Slow,Stripes,64-bit,2,985,232,4,0,0
Map,Slow,Stripes,64-bit,3,985,244,4,0,0
Map,Slow,Stripes,64-bit,4,985,253,4,0,0
Map,Slow,Stripes,64-bit,5,985,251,4,0,0
Map,Slow,Stripes,64-bit,6,985,250,4,0,0
Map,Slow,Stripes,64-bit,7,985,265,4,0,0
Map,Slow,Stripes,64-bit,8,985,264,5,0,0
Map,Slow,Stripes,64-bit,9,985,256,4,0,0
Map,Slow,Stripes,64-bit,0,1477,257,4,0,0
Map,Slow,Stripes,64-bit,1,1477,249,4,0,0
Map,Slow,Stripes,64-bit,2,1477,247,4,0,0
Map,Slow,Stripes,64-bit,3,1477,250,4,0,0
Map,Slow,Stripes,64-bit,4,1477,260,4,0,0
Map,Slow,Stripes,64-bit,5,1477,257,4,0,0
Map,Slow,Stripes,64-bit,6,1477,265,4,0,0
Map,Slow,Stripes,64-bit,7,1477,259,4,0,0
Map,Slow,Stripes,64-bit,8,1477,279,5,0,0
Map,Slow,Stripes,64-bit,9,1477,259,4,0,0
Map,Slow,Stripes,64-bit,0,2216,287,5,0,0
Map,Slow,Stripes,64-bit,1,2216,270,5,0,0
Map,Slow,Stripes,64-bit,2,2216,258,4,0,0
Map,Slow,Stripes,64-bit,3,2216,295,5,0,0
Map,Slow,Stripes,64-bit,4,2216,277,5,0,0
Map,Slow,Stripes,64-bit,5,2216,274,5,0,0
Map,Slow,Stripes,64-bit,6,2216,295,5,0,0
Map,Slow,Stripes,64-bit,7,2216,276,5,0,0
Map,Slow,Stripes,64-bit,8,2216,292,5,0,0
Map,Slow,Stripes,64-bit,9,2216,281,5,0,0
Map,Slow,Stripes,64-bit,0,3325,272,4,1,0
Map,Slow,Stripes,64-bit,1,3325,296,4,1,0
Map,Slow,Stripes,64-bit,2,3325,263,4,1,0
Map,Slow,Stripes,64-bit,3,3325,280,4,1,0
Map,Slow,Stripes,64-bit,4,3325,293,4,1,0
Map,Slow,Stripes,64-bit,5,3325,283,5,0,0
Map,Slow,Stripes,64-bit,6,3325,282,4,1,0
Map,Slow,Stripes,64-bit,7,3325,285,5,1,0
Map,Slow,Stripes,64-bit,8,3325,298,5,1,0
Map,Slow,Stripes,64-bit,9,3325,297,5,1,0
Map,Slow,Stripes,64-bit,0,4987,320,4,1,0
Map,Slow,Stripes,64-bit,1,4987,315,4,1,0
Map,Slow,Stripes,64-bit,2,4987,298,3,1,0
Map,Slow,Stripes,64-bit,3,4987,314,4,1,0
Map,Slow,Stripes,64-bit,4,4987,329,4,1,0
Map,Slow,Stripes,64-bit,5,4987,318,4,1,0
Map,Slow,Stripes,64-bit,6,4987,313,4,1,0
Map,Slow,Stripes,64-bit,7,4987,323,4,1,0
Map,Slow,Stripes,64-bit,8,4987,335,5,1,0
Map,Slow,Stripes,64-bit,9,4987,322,4,1,0
Map,Slow,Stripes,64-bit,0,7481,301,3,1,0
Map,Slow,Stripes,64-bit,1,7481,295,3,1,0
Map,Slow,Stripes,64-bit,2,7481,302,2,1,0
Map,Slow,Stripes,64-bit,3,7481,303,3,1,0
Map,Slow,Stripes,64-bit,4,7481,298,3,1,0
Map,Slow,Stripes,64-bit,5,7481,321,3,1,0
Map,Slow,Stripes,64-bit,6,7481,306,3,1,0
Map,Slow,Stripes,64-bit,7,7481,319,3,1,0
Map,Slow,Stripes,64-bit,8,7481,314,3,1,0
Map,Slow,Stripes,64-bit,9,7481,306,3,1,0
Map,Slow,Stripes,64-bit,0,11222,322,3,1,0
Map,Slow,Stripes,64-bit,1,11222,313,3,1,0
Map,Slow,Stripes,64-bit,2,11222,299,3,1,0
Map,Slow,Stripes,64-bit,3,11222,320,3,1,0
Map,Slow,Stripes,64-bit,4,11222,309,3,1,0
Map,Slow,Stripes,64-bit,5,11222,323,3,1,0
Map,Slow,Stripes,64-bit,6,11222,307,3,1,0
Map,Slow,Stripes,64-bit,7,11222,332,3,1,0
Map,Slow,Stripes,64-bit,8,11222,334,4,1,0
Map,Slow,Stripes,64-bit,9,11222,321,3,1,0
Map,Slow,Stripes,64-bit,0,16834,258,2,1,0
Map,Slow,Stripes,64-bit,1,16834,250,2,1,0
Map,Slow,Stripes,64-bit,2,16834,231,2,1,0
Map,Slow,Stripes,64-bit,3,16834,254,2,1,0
Map,Slow,Stripes,64-bit,4,16834,252,2,1,0
Map,Slow,Stripes,64-bit,5,16834,255,2,1,0
Map,Slow,Stripes,64-bit,6,16834,247,2,1,0
Map,Slow,Stripes,64-bit,7,16834,256,2,1,0
Map,Slow,Stripes,64-bit,8,16834,258,2,1,0
Map,Slow,Stripes,64-bit,9,16834,255,2,1,0
Map,Slow,Stripes,64-bit,0,25251,375,3,1,0
Map,Slow,Stripes,64-bit,1,25251,396,3,1,0
Map,Slow,Stripes,64-bit,2,25251,372,3,1,0
Map,Slow,Stripes,64-bit,3,25251,401,3,1,0
Map,Slow,Stripes,64-bit,4,25251,383,3,1,0
Map,Slow,Stripes,64-bit,5,25251,406,3,1,0
Map,Slow,Stripes,64-bit,6,25251,386,3,1,0
Map,Slow,Stripes,64-bit,7,25251,392,3,1,0
Map,Slow,Stripes,64-bit,8,25251,403,4,1,0
Map,Slow,Stripes,64-bit,9,25251,393,3,1,0
Map,Slow,Stripes,64-bit,0,37876,599,5,1,0
Map,Slow,Stripes,64-bit,1,37876,604,5,1,0
Map,Slow,Stripes,64-bit,2,37876,568,5,1,0
Map,Slow,Stripes,64-bit,3,37876,611,5,1,0
Map,Slow,Stripes,64-bit,4,37876,615,5,1,0
Map,Slow,Stripes,64-bit,5,37876,605,5,1,0
Map,Slow,Stripes,64-bit,6,37876,617,5,1,0
Map,Slow,Stripes,64-bit,7,37876,620,5,1,0
Map,Slow,Stripes,64-bit,8,37876,628,5,1,0
Map,Slow,Stripes,64-bit,9,37876,611,5,1,0
Map,Slow,Stripes,64-bit,0,56815,946,8,2,1
Map,Slow,Stripes,64-bit,1,56815,944,8,2,1
Map,Slow,Stripes,64-bit,2,56815,906,7,1,0
Map,Slow,Stripes,64-bit,3,56815,941,8,2,1
Map,Slow,Stripes,64-bit,4,56815,946,8,2,1
Map,Slow,Stripes,64-bit,5,56815,964,8,2,1
Map,Slow,Stripes,64-bit,6,56815,969,8,2,1
Map,Slow,Stripes,64-bit,7,56815,962,8,2,1
Map,Slow,Stripes,64-bit,8,56815,997,8,2,1
Map,Slow,Stripes,64-bit,9,56815,969,8,2,1
Map,Slow,Stripes,64-bit,0,85222,1454,12,2,1
Map,Slow,Stripes,64-bit,1,85222,1461,12,2,1
Map,Slow,Stripes,64-bit,2,85222,1420,12,2,1
Map,Slow,Stripes,64-bit,3,85222,1485,13,2,1
Map,Slow,Stripes,64-bit,4,85222,1482,13,2,1
Map,Slow,Stripes,64-bit,5,85222,1483,13,2,1
Map,Slow,Stripes,64-bit,6,85222,1474,13,2,1
Map,Slow,Stripes,64-bit,7,85222,1506,12,2,1
Map,Slow,Stripes,64-bit,8,85222,1534,13,2,1
Map,Slow,Stripes,64-bit,9,85222,1507,12,2,1
Map,Slow,Stripes,64-bit,0,127834,2278,19,2,1
Map,Slow,Stripes,64-bit,1,127834,2271,19,2,1
Map,Slow,Stripes,64-bit,2,127834,2196,18,2,1
Map,Slow,Stripes,64-bit,3,127834,2269,20,2,1
Map,Slow,Stripes,64-bit,4,127834,2282,20,2,1
Map,Slow,Stripes,64-bit,5,127834,2289,19,2,1
Map,Slow,Stripes,64-bit,6,127834,2303,20,2,1
Map,Slow,Stripes,64-bit,7,127834,2298,19,2,1
Map,Slow,Stripes,64-bit,8,127834,2382,20,2,1
Map,Slow,Stripes,64-bit,9,127834,2299,19,2,1
Map,Slow,Stripes,64-bit,0,191751,3539,30,5,2
Map,Slow,Stripes,64-bit,1,191751,3520,30,5,2
Map,Slow,Stripes,64-bit,2,191751,3415,29,5,2
Map,Slow,Stripes,64-bit,3,191751,3516,31,5,2
Map,Slow,Stripes,64-bit,4,191751,3569,31,5,2
Map,Slow,Stripes,64-bit,5,191751,3534,31,5,2
Map,Slow,Stripes,64-bit,6,191751,3528,31,5,2
Map,Slow,Stripes,64-bit,7,191751,3563,31,5,2
Map,Slow,Stripes,64-bit,8,191751,3698,32,5,2
Map,Slow,Stripes,64-bit,9,191751,3607,31,5,2
Map,Slow,Stripes,64-bit,0,287626,5498,46,7,2
Map,Slow,Stripes,64-bit,1,287626,5460,46,7,2
Map,Slow,Stripes,64-bit,2,287626,5322,44,7,2
Map,Slow,Stripes,64-bit,3,287626,5503,48,7,2
Map,Slow,Stripes,64-bit,4,287626,5489,48,7,2
Map,Slow,Stripes,64-bit,5,287626,5508,47,7,2
Map,Slow,Stripes,64-bit,6,287626,5523,48,7,2
Map,Slow,Stripes,64-bit,7,287626,5522,47,7,2
Map,Slow,Stripes,64-bit,8,287626,5700,49,7,2
Map,Slow,Stripes,64-bit,9,287626,5565,47,7,2
Map,Slow,Stripes,64-bit,0,431439,8481,72,10,3
Map,Slow,Stripes,64-bit,1,431439,8483,72,10,3
Map,Slow,Stripes,64-bit,2,431439,8257,68,10,3
Map,Slow,Stripes,64-bit,3,431439,8480,74,10,3
Map,Slow,Stripes,64-bit,4,431439,8534,74,10,3
Map,Slow,Stripes,64-bit,5,431439,8555,73,10,3
Map,Slow,Stripes,64-bit,6,431439,8566,74,10,3
Map,Slow,Stripes,64-bit,7,431439,8610,73,10,3
Map,Slow,Stripes,64-bit,8,431439,8882,76,10,3
Map,Slow,Stripes,64-bit,9,431439,8651,73,10,3
Map,Slow,Stripes,64-bit,0,647159,13104,109,14,3
Map,Slow,Stripes,64-bit,1,647159,13124,109,14,3
Map,Slow,Stripes,64-bit,2,647159,12771,104,14,3
Map,Slow,Stripes,64-bit,3,647159,13149,113,14,3
Map,Slow,Stripes,64-bit,4,647159,13127,113,16,4
Map,Slow,Stripes,64-bit,5,647159,13225,112,14,3
Map,Slow,Stripes,64-bit,6,647159,13242,113,14,3
Map,Slow,Stripes,64-bit,7,647159,13271,111,14,3
Map,Slow,Stripes,64-bit,8,647159,13608,116,15,3
Map,Slow,Stripes,64-bit,9,647159,13313,111,15,3
Map,Slow,Random,64-bit,0,1,32,1,0,0
Map,Slow,Random,64-bit,1,1,34,1,0,0
Map,Slow,Random,64-bit,2,1,34,1,0,0
Map,Slow,Random,64-bit,3,1,32,1,0,0
Map,Slow,Random,64-bit,4,1,33,1,0,0
Map,Slow,Random,64-bit,5,1,34,1,0,0
Map,Slow,Random,64-bit,6,1,34,1,0,0
Map,Slow,Random,64-bit,7,1,33,1,0,0
Map,Slow,Random,64-bit,8,1,31,1,0,0
Map,Slow,Random,64-bit,9,1,35,1,0,0
Map,Slow,Random,64-bit,0,2,31,1,0,0
Map,Slow,Random,64-bit,1,2,33,1,0,0
Map,Slow,Random,64-bit,2,2,34,1,0,0
Map,Slow,Random,64-bit,3,2,32,1,0,0
Map,Slow,Random,64-bit,4,2,33,1,0,0
Map,Slow,Random,64-bit,5,2,35,1,0,0
Map,Slow,Random,64-bit,6,2,34,1,0,0
Map,Slow,Random,64-bit,7,2,33,1,0,0
Map,Slow,Random,64-bit,8,2,34,1,0,0
Map,Slow,Random,64-bit,9,2,33,1,0,0
Map,Slow,Random,64-bit,0,3,51,1,0,0
Map,Slow,Random,64-bit,1,3,33,1,0,0
Map,Slow,Random,64-bit,2,3,51,1,0,0
Map,Slow,Random,64-bit,3,3,53,1,0,0
Map,Slow,Random,64-bit,4,3,34,1,0,0
Map,Slow,Random,64-bit,5,3,51,1,0,0
Map,Slow,Random,64-bit,6,3,34,1,0,0
Map,Slow,Random,64-bit,7,3,52,1,0,0
Map,Slow,Random,64-bit,8,3,52,1,0,0
Map,Slow,Random,64-bit,9,3,36,1,0,0
Map,Slow,Random,64-bit,0,5,70,1,0,0
Map,Slow,Random,64-bit,1,5,50,1,0,0
Map,Slow,Random,64-bit,2,5,55,1,0,0
Map,Slow,Random,64-bit,3,5,54,1,0,0
Map,Slow,Random,64-bit,4,5,51,1,0,0
Map,Slow,Random,64-bit,5,5,64,1,0,0
Map,Slow,Random,64-bit,6,5,43,1,0,0
Map,Slow,Random,64-bit,7,5,66,1,0,0
Map,Slow,Random,64-bit,8,5,55,1,0,0
Map,Slow,Random,64-bit,9,5,43,1,0,0
Map,Slow,Random,64-bit,0,7,64,2,0,0
Map,Slow,Random,64-bit,1,7,79,1,0,0
Map,Slow,Random,64-bit,2,7,65,1,0,0
Map,Slow,Random,64-bit,3,7,57,1,0,0
Map,Slow,Random,64-bit,4,7,65,1,0,0
Map,Slow,Random,64-bit,5,7,71,1,0,0
Map,Slow,Random,64-bit,6,7,56,1,0,0
Map,Slow,Random,64-bit,7,7,72,1,0,0
Map,Slow,Random,64-bit,8,7,68,1,0,0
Map,Slow,Random,64-bit,9,7,55,1,0,0
Map,Slow,Random,64-bit,0,11,77,2,0,0
Map,Slow,Random,64-bit,1,11,78,2,0,0
Map,Slow,Random,64-bit,2,11,99,1,0,0
Map,Slow,Random,64-bit,3,11,72,1,0,0
Map,Slow,Random,64-bit,4,11,77,2,0,0
Map,Slow,Random,64-bit,5,11,82,2,0,0
Map,Slow,Random,64-bit,6,11,76,2,0,0
Map,Slow,Random,64-bit,7,11,83,1,0,0
Map,Slow,Random,64-bit,8,11,82,2,0,0
Map,Slow,Random,64-bit,9,11,69,1,0,0
Map,Slow,Random,64-bit,0,17,91,2,0,0
Map,Slow,Random,64-bit,1,17,86,2,0,0
Map,Slow,Random,64-bit,2,17,86,2,0,0
Map,Slow,Random,64-bit,3,17,87,2,0,0
Map,Slow,Random,64-bit,4,17,92,2,0,0
Map,Slow,Random,64-bit,5,17,95,2,0,0
Map,Slow,Random,64-bit,6,17,89,2,0,0
Map,Slow,Random,64-bit,7,17,88,2,0,0
Map,Slow,Random,64-bit,8,17,88,2,0,0
Map,Slow,Random,64-bit,9,17,89,2,0,0
Map,Slow,Random,64-bit,0,25,98,2,0,0
Map,Slow,Random,64-bit,1,25,99,2,0,0
Map,Slow,Random,64-bit,2,25,100,2,0,0
Map,Slow,Random,64-bit,3,25,97,2,0,0
Map,Slow,Random,64-bit,4,25,106,2,0,0
Map,Slow,Random,64-bit,5,25,104,2,0,0
Map,Slow,Random,64-bit,6,25,101,2,0,0
Map,Slow,Random,64-bit,7,25,99,2,0,0
Map,Slow,Random,64-bit,8,25,103,2,0,0
Map,Slow,Random,64-bit,9,25,100,2,0,0
Map,Slow,Random,64-bit,0,38,115,2,0,0
Map,Slow,Random,64-bit,1,38,111,2,0,0
Map,Slow,Random,64-bit,2,38,121,2,0,0
Map,Slow,Random,64-bit,3,38,117,2,0,0
Map,Slow,Random,64-bit,4,38,120,2,0,0
Map,Slow,Random,64-bit,5,38,121,2,0,0
Map,Slow,Random,64-bit,6,38,113,2,0,0
Map,Slow,Random,64-bit,7,38,128,2,0,0
Map,Slow,Random,64-bit,8,38,115,2,0,0
Map,Slow,Random,64-bit,9,38,113,2,0,0
Map,Slow,Random,64-bit,0,57,131,2,0,0
Map,Slow,Random,64-bit,1,57,129,2,0,0
Map,Slow,Random,64-bit,2,57,134,2,0,0
Map,Slow,Random,64-bit,3,57,129,2,0,0
Map,Slow,Random,64-bit,4,57,137,3,0,0
Map,Slow,Random,64-bit,5,57,136,2,0,0
Map,Slow,Random,64-bit,6,57,129,2,0,0
Map,Slow,Random,64-bit,7,57,131,2,0,0
Map,Slow,Random,64-bit,8,57,131,2,0,0
Map,Slow,Random,64-bit,9,57,132,2,0,0
Map,Slow,Random,64-bit,0,86,149,3,0,0
Map,Slow,Random,64-bit,1,86,143,3,0,0
Map,Slow,Random,64-bit,2,86,147,3,0,0
Map,Slow,Random,64-bit,3,86,146,3,0,0
Map,Slow,Random,64-bit,4,86,150,3,0,0
Map,Slow,Random,64-bit,5,86,146,3,0,0
Map,Slow,Random,64-bit,6,86,142,3,0,0
Map,Slow,Random,64-bit,7,86,146,3,0,0
Map,Slow,Random,64-bit,8,86,149,3,0,0
Map,Slow,Random,64-bit,9,86,145,3,0,0
Map,Slow,Random,64-bit,0,129,158,3,0,0
Map,Slow,Random,64-bit,1,129,161,3,0,0
Map,Slow,Random,64-bit,2,129,161,3,0,0
Map,Slow,Random,64-bit,3,129,159,3,0,0
Map,Slow,Random,64-bit,4,129,165,3,0,0
Map,Slow,Random,64-bit,5,129,162,3,0,0
Map,Slow,Random,64-bit,6,129,157,3,0,0
Map,Slow,Random,64-bit,7,129,164,3,0,0
Map,Slow,Random,64-bit,8,129,156,3,0,0
Map,Slow,Random,64-bit,9,129,159,3,0,0
Map,Slow,Random,64-bit,0,194,180,3,0,0
Map,Slow,Random,64-bit,1,194,175,3,0,0
Map,Slow,Random,64-bit,2,194,175,3,0,0
Map,Slow,Random,64-bit,3,194,180,3,0,0
Map,Slow,Random,64-bit,4,194,178,3,0,0
Map,Slow,Random,64-bit,5,194,179,3,0,0
Map,Slow,Random,64-bit,6,194,176,3,0,0
Map,Slow,Random,64-bit,7,194,173,3,0,0
Map,Slow,Random,64-bit,8,194,192,3,0,0
Map,Slow,Random,64-bit,9,194,173,3,0,0
Map,Slow,Random,64-bit,0,291,190,3,0,0
Map,Slow,Random,64-bit,1,291,197,3,0,0
Map,Slow,Random,64-bit,2,291,190,3,0,0
Map,Slow,Random,64-bit,3,291,190,3,0,0
Map,Slow,Random,64-bit,4,291,191,3,0,0
Map,Slow,Random,64-bit,5,291,189,3,0,0
Map,Slow,Random,64-bit,6,291,194,3,0,0
Map,Slow,Random,64-bit,7,291,193,3,0,0
Map,Slow,Random,64-bit,8,291,206,3,0,0
Map,Slow,Random,64-bit,9,291,191,3,0,0
Map,Slow,Random,64-bit,0,437,206,4,0,0
Map,Slow,Random,64-bit,1,437,225,4,0,0
Map,Slow,Random,64-bit,2,437,211,4,0,0
Map,Slow,Random,64-bit,3,437,202,4,0,0
Map,Slow,Random,64-bit,4,437,205,4,0,0
Map,Slow,Random,64-bit,5,437,209,4,0,0
Map,Slow,Random,64-bit,6,437,203,4,0,0
Map,Slow,Random,64-bit,7,437,208,4,0,0
Map,Slow,Random,64-bit,8,437,223,4,0,0
Map,Slow,Random,64-bit,9,437,207,4,0,0
Map,Slow,Random,64-bit,0,656,226,4,0,0
Map,Slow,Random,64-bit,1,656,239,4,0,0
Map,Slow,Random,64-bit,2,656,228,4,0,0
Map,Slow,Random,64-bit,3,656,223,4,0,0
Map,Slow,Random,64-bit,4,656,225,4,0,0
Map,Slow,Random,64-bit,5,656,221,4,0,0
Map,Slow,Random,64-bit,6,656,224,4,0,0
Map,Slow,Random,64-bit,7,656,225,4,0,0
Map,Slow,Random,64-bit,8,656,217,4,0,0
Map,Slow,Random,64-bit,9,656,221,4,0,0
Map,Slow,Random,64-bit,0,985,235,4,0,0
Map,Slow,Random,64-bit,1,985,239,4,0,0
Map,Slow,Random,64-bit,2,985,235,4,0,0
Map,Slow,Random,64-bit,3,985,235,4,0,0
Map,Slow,Random,64-bit,4,985,234,4,0,0
Map,Slow,Random,64-bit,5,985,239,4,0,0
Map,Slow,Random,64-bit,6,985,238,4,0,0
Map,Slow,Random,64-bit,7,985,236,4,0,0
Map,Slow,Random,64-bit,8,985,240,4,0,0
Map,Slow,Random,64-bit,9,985,237,4,0,0
Map,Slow,Random,64-bit,0,1477,244,4,0,0
Map,Slow,Random,64-bit,1,1477,239,4,0,0
Map,Slow,Random,64-bit,2,1477,238,4,0,0
Map,Slow,Random,64-bit,3,1477,246,4,0,0
Map,Slow,Random,64-bit,4,1477,239,4,0,0
Map,Slow,Random,64-bit,5,1477,242,4,0,0
Map,Slow,Random,64-bit,6,1477,243,4,0,0
Map,Slow,Random,64-bit,7,1477,244,4,0,0
Map,Slow,Random,64-bit,8,1477,244,4,0,0
Map,Slow,Random,64-bit,9,1477,243,4,0,0
Map,Slow,Random,64-bit,0,2216,271,5,0,0
Map,Slow,Random,64-bit,1,2216,262,4,0,0
Map,Slow,Random,64-bit,2,2216,284,5,0,0
Map,Slow,Random,64-bit,3,2216,266,5,0,0
Map,Slow,Random,64-bit,4,2216,265,5,0,0
Map,Slow,Random,64-bit,5,2216,283,5,0,0
Map,Slow,Random,64-bit,6,2216,266,5,0,0
Map,Slow,Random,64-bit,7,2216,269,5,0,0
Map,Slow,Random,64-bit,8,2216,266,5,0,0
Map,Slow,Random,64-bit,9,2216,267,5,0,0
Map,Slow,Random,64-bit,0,3325,273,4,1,0
Map,Slow,Random,64-bit,1,3325,270,4,1,0
Map,Slow,Random,64-bit,2,3325,271,4,1,0
Map,Slow,Random,64-bit,3,3325,268,4,1,0
Map,Slow,Random,64-bit,4,3325,266,4,1,0
Map,Slow,Random,64-bit,5,3325,272,4,1,0
Map,Slow,Random,64-bit,6,3325,272,4,1,0
Map,Slow,Random,64-bit,7,3325,288,4,1,0
Map,Slow,Random,64-bit,8,3325,267,4,1,0
Map,Slow,Random,64-bit,9,3325,271,4,1,0
Map,Slow,Random,64-bit,0,4987,323,4,1,0
Map,Slow,Random,64-bit,1,4987,307,4,1,0
Map,Slow,Random,64-bit,2,4987,328,4,1,0
Map,Slow,Random,64-bit,3,4987,307,4,1,0
Map,Slow,Random,64-bit,4,4987,306,4,1,0
Map,Slow,Random,64-bit,5,4987,304,4,1,0
Map,Slow,Random,64-bit,6,4987,304,4,1,0
Map,Slow,Random,64-bit,7,4987,329,3,1,0
Map,Slow,Random,64-bit,8,4987,306,4,1,0
Map,Slow,Random,64-bit,9,4987,307,4,1,0
Map,Slow,Random,64-bit,0,7481,295,4,1,0
Map,Slow,Random,64-bit,1,7481,294,4,1,0
Map,Slow,Random,64-bit,2,7481,290,4,1,0
Map,Slow,Random,64-bit,3,7481,296,4,1,0
Map,Slow,Random,64-bit,4,7481,290,4,1,0
Map,Slow,Random,64-bit,5,7481,292,4,1,0
Map,Slow,Random,64-bit,6,7481,312,4,1,0
Map,Slow,Random,64-bit,7,7481,296,4,1,0
Map,Slow,Random,64-bit,8,7481,296,4,1,0
Map,Slow,Random,64-bit,9,7481,289,4,1,0
Map,Slow,Random,64-bit,0,11222,307,4,1,0
Map,Slow,Random,64-bit,1,11222,307,4,1,0
Map,Slow,Random,64-bit,2,11222,312,4,1,0
Map,Slow,Random,64-bit,3,11222,302,4,1,0
Map,Slow,Random,64-bit,4,11222,308,4,1,0
Map,Slow,Random,64-bit,5,11222,305,4,1,0
Map,Slow,Random,64-bit,6,11222,309,4,1,0
Map,Slow,Random,64-bit,7,11222,306,4,1,0
Map,Slow,Random,64-bit,8,11222,321,4,1,0
Map,Slow,Random,64-bit,9,11222,308,4,1,0
Map,Slow,Random,64-bit,0,16834,250,3,1,0
Map,Slow,Random,64-bit,1,16834,241,3,1,0
Map,Slow,Random,64-bit,2,16834,248,3,1,0
Map,Slow,Random,64-bit,3,16834,265,3,1,0
Map,Slow,Random,64-bit,4,16834,246,3,1,0
Map,Slow,Random,64-bit,5,16834,245,3,1,0
Map,Slow,Random,64-bit,6,16834,261,3,1,0
Map,Slow,Random,64-bit,7,16834,248,3,1,0
Map,Slow,Random,64-bit,8,16834,247,3,1,0
Map,Slow,Random,64-bit,9,16834,244,3,1,0
Map,Slow,Random,64-bit,0,25251,383,5,1,0
Map,Slow,Random,64-bit,1,25251,390,5,1,0
Map,Slow,Random,64-bit,2,25251,391,5,1,0
Map,Slow,Random,64-bit,3,25251,385,5,1,0
Map,Slow,Random,64-bit,4,25251,382,5,1,0
Map,Slow,Random,64-bit,5,25251,388,5,1,0
Map,Slow,Random,64-bit,6,25251,383,5,1,0
Map,Slow,Random,64-bit,7,25251,388,5,1,0
Map,Slow,Random,64-bit,8,25251,386,5,1,0
Map,Slow,Random,64-bit,9,25251,388,5,1,0
Map,Slow,Random,64-bit,0,37876,615,8,2,0
Map,Slow,Random,64-bit,1,37876,605,8,2,0
Map,Slow,Random,64-bit,2,37876,620,8,2,0
Map,Slow,Random,64-bit,3,37876,626,8,2,0
Map,Slow,Random,64-bit,4,37876,610,8,2,0
Map,Slow,Random,64-bit,5,37876,600,8,2,0
Map,Slow,Random,64-bit,6,37876,620,8,2,0
Map,Slow,Random,64-bit,7,37876,634,8,2,0
Map,Slow,Random,64-bit,8,37876,610,8,2,0
Map,Slow,Random,64-bit,9,37876,624,8,2,0
Map,Slow,Random,64-bit,0,56815,972,12,3,1
Map,Slow,Random,64-bit,1,56815,971,12,3,1
Map,Slow,Random,64-bit,2,56815,974,12,3,1
Map,Slow,Random,64-bit,3,56815,976,12,3,1
Map,Slow,Random,64-bit,4,56815,967,12,3,1
Map,Slow,Random,64-bit,5,56815,974,12,3,1
Map,Slow,Random,64-bit,6,56815,990,12,3,1
Map,Slow,Random,64-bit,7,56815,972,12,3,1
Map,Slow,Random,64-bit,8,56815,981,12,3,1
Map,Slow,Random,64-bit,9,56815,972,12,3,1
Map,Slow,Random,64-bit,0,85222,1503,20,6,2
Map,Slow,Random,64-bit,1,85222,1518,20,6,2
Map,Slow,Random,64-bit,2,85222,1527,20,6,2
Map,Slow,Random,64-bit,3,85222,1523,20,6,2
Map,Slow,Random,64-bit,4,85222,1509,20,6,2
Map,Slow,Random,64-bit,5,85222,1520,20,6,2
Map,Slow,Random,64-bit,6,85222,1501,20,6,2
Map,Slow,Random,64-bit,7,85222,1512,20,6,2
Map,Slow,Random,64-bit,8,85222,1508,20,6,2
Map,Slow,Random,64-bit,9,85222,1497,20,6,2
Map,Slow,Random,64-bit,0,127834,2389,30,9,3
Map,Slow,Random,64-bit,1,127834,2406,30,9,3
Map,Slow,Random,64-bit,2,127834,2396,30,9,3
Map,Slow,Random,64-bit,3,127834,2400,30,9,3
Map,Slow,Random,64-bit,4,127834,2386,30,9,3
Map,Slow,Random,64-bit,5,127834,2392,30,9,3
Map,Slow,Random,64-bit,6,127834,2380,30,9,3
Map,Slow,Random,64-bit,7,127834,2373,30,9,3
Map,Slow,Random,64-bit,8,127834,2413,30,9,3
Map,Slow,Random,64-bit,9,127834,2362,30,9,3
Map,Slow,Random,64-bit,0,191751,3739,44,11,3
Map,Slow,Random,64-bit,1,191751,3719,44,11,3
Map,Slow,Random,64-bit,2,191751,3736,44,11,3
Map,Slow,Random,64-bit,3,191751,3737,44,11,3
Map,Slow,Random,64-bit,4,191751,3710,44,11,3
Map,Slow,Random,64-bit,5,191751,3727,44,11,3
Map,Slow,Random,64-bit,6,191751,3749,44,11,3
Map,Slow,Random,64-bit,7,191751,3750,44,11,3
Map,Slow,Random,64-bit,8,191751,3732,44,11,3
Map,Slow,Random,64-bit,9,191751,3773,44,11,3
Map,Slow,Random,64-bit,0,287626,5891,68,16,5
Map,Slow,Random,64-bit,1,287626,5819,68,16,5
Map,Slow,Random,64-bit,2,287626,5877,68,16,5
Map,Slow,Random,64-bit,3,287626,5829,67,14,4
Map,Slow,Random,64-bit,4,287626,5845,68,16,5
Map,Slow,Random,64-bit,5,287626,5867,68,16,5
Map,Slow,Random,64-bit,6,287626,5853,67,14,4
Map,Slow,Random,64-bit,7,287626,5829,67,14,4
Map,Slow,Random,64-bit,8,287626,5853,68,16,5
Map,Slow,Random,64-bit,9,287626,5857,68,16,5
Map,Slow,Random,64-bit,0,431439,9090,105,25,8
Map,Slow,Random,64-bit,1,431439,9250,105,25,9
Map,Slow,Random,64-bit,2,431439,9240,105,25,9
Map,Slow,Random,64-bit,3,431439,9290,105,25,9
Map,Slow,Random,64-bit,4,431439,9134,105,25,8
Map,Slow,Random,64-bit,5,431439,9125,105,25,8
Map,Slow,Random,64-bit,6,431439,9316,105,25,9
Map,Slow,Random,64-bit,7,431439,9288,105,25,9
Map,Slow,Random,64-bit,8,431439,9300,105,25,9
Map,Slow,Random,64-bit,9,431439,9157,106,26,9
Map,Slow,Random,64-bit,0,647159,14409,158,36,11
Map,Slow,Random,64-bit,1,647159,14394,158,36,11
Map,Slow,Random,64-bit,2,647159,14456,158,36,11
Map,Slow,Random,64-bit,3,647159,14386,158,36,11
Map,Slow,Random,64-bit,4,647159,14484,157,35,10
Map,Slow,Random,64-bit,5,647159,14430,157,35,10
Map,Slow,Random,64-bit,6,647159,14435,158,36,11
Map,Slow,Random,64-bit,7,647159,14477,158,36,11
Map,Slow,Random,64-bit,8,647159,14479,158,36,11
Map,Slow,Random,64-bit,9,647159,14412,158,36,11
Map,Fast,Stripes,64-bit,0,1,72,69,0,0
Map,Fast,Stripes,64-bit,1,1,71,69,0,0
Map,Fast,Stripes,64-bit,2,1,95,69,0,0
Map,Fast,Stripes,64-bit,3,1,73,69,0,0
Map,Fast,Stripes,64-bit,4,1,71,69,0,0
Map,Fast,Stripes,64-bit,5,1,75,69,0,0
Map,Fast,Stripes,64-bit,6,1,72,69,0,0
Map,Fast,Stripes,64-bit,7,1,77,69,0,0
Map,Fast,Stripes,64-bit,8,1,71,69,0,0
Map,Fast,Stripes,64-bit,9,1,71,69,0,0
Map,Fast,Stripes,64-bit,0,2,84,89,0,0
Map,Fast,Stripes,64-bit,1,2,82,89,0,0
Map,Fast,Stripes,64-bit,2,2,83,89,0,0
Map,Fast,Stripes,64-bit,3,2,83,89,0,0
Map,Fast,Stripes,64-bit,4,2,82,89,0,0
Map,Fast,Stripes,64-bit,5,2,84,89,0,0
Map,Fast,Stripes,64-bit,6,2,83,89,0,0
Map,Fast,Stripes,64-bit,7,2,82,89,0,0
Map,Fast,Stripes,64-bit,8,2,83,89,0,0
Map,Fast,Stripes,64-bit,9,2,87,89,0,0
Map,Fast,Stripes,64-bit,0,3,110,120,0,0
Map,Fast,Stripes,64-bit,1,3,112,120,0,0
Map,Fast,Stripes,64-bit,2,3,84,95,0,0
Map,Fast,Stripes,64-bit,3,3,115,120,0,0
Map,Fast,Stripes,64-bit,4,3,118,120,0,0
Map,Fast,Stripes,64-bit,5,3,110,120,0,0
Map,Fast,Stripes,64-bit,6,3,110,120,0,0
Map,Fast,Stripes,64-bit,7,3,111,120,0,0
Map,Fast,Stripes,64-bit,8,3,110,120,0,0
Map,Fast,Stripes,64-bit,9,3,116,120,0,0
Map,Fast,Stripes,64-bit,0,5,134,146,0,0
Map,Fast,Stripes,64-bit,1,5,130,146,0,0
Map,Fast,Stripes,64-bit,2,5,106,115,0,0
Map,Fast,Stripes,64-bit,3,5,155,153,0,0
Map,Fast,Stripes,64-bit,4,5,129,146,0,0
Map,Fast,Stripes,64-bit,5,5,130,146,0,0
Map,Fast,Stripes,64-bit,6,5,134,146,0,0
Map,Fast,Stripes,64-bit,7,5,142,146,0,0
Map,Fast,Stripes,64-bit,8,5,134,146,0,0
Map,Fast,Stripes,64-bit,9,5,131,146,0,0
Map,Fast,Stripes,64-bit,0,7,153,168,0,0
Map,Fast,Stripes,64-bit,1,7,162,168,0,0
Map,Fast,Stripes,64-bit,2,7,122,135,0,0
Map,Fast,Stripes,64-bit,3,7,145,173,0,0
Map,Fast,Stripes,64-bit,4,7,146,162,0,0
Map,Fast,Stripes,64-bit,5,7,160,168,0,0
Map,Fast,Stripes,64-bit,6,7,148,168,0,0
Map,Fast,Stripes,64-bit,7,7,152,168,0,0
Map,Fast,Stripes,64-bit,8,7,159,168,0,0
Map,Fast,Stripes,64-bit,9,7,146,168,0,0
Map,Fast,Stripes,64-bit,0,11,181,194,0,0
Map,Fast,Stripes,64-bit,1,11,172,194,0,0
Map,Fast,Stripes,64-bit,2,11,151,160,0,0
Map,Fast,Stripes,64-bit,3,11,188,212,0,0
Map,Fast,Stripes,64-bit,4,11,173,191,0,0
Map,Fast,Stripes,64-bit,5,11,205,198,0,0
Map,Fast,Stripes,64-bit,6,11,177,194,0,0
Map,Fast,Stripes,64-bit,7,11,178,194,0,0
Map,Fast,Stripes,64-bit,8,11,174,194,0,0
Map,Fast,Stripes,64-bit,9,11,183,194,0,0
Map,Fast,Stripes,64-bit,0,17,198,218,0,0
Map,Fast,Stripes,64-bit,1,17,197,218,0,0
Map,Fast,Stripes,64-bit,2,17,195,182,0,0
Map,Fast,Stripes,64-bit,3,17,216,242,0,0
Map,Fast,Stripes,64-bit,4,17,209,231,0,0
Map,Fast,Stripes,64-bit,5,17,208,231,0,0
Map,Fast,Stripes,64-bit,6,17,217,222,0,0
Map,Fast,Stripes,64-bit,7,17,197,218,0,0
Map,Fast,Stripes,64-bit,8,17,196,218,0,0
Map,Fast,Stripes,64-bit,9,17,230,218,0,0
Map,Fast,Stripes,64-bit,0,25,230,243,0,0
Map,Fast,Stripes,64-bit,1,25,224,243,0,0
Map,Fast,Stripes,64-bit,2,25,209,207,0,0
Map,Fast,Stripes,64-bit,3,25,238,263,0,0
Map,Fast,Stripes,64-bit,4,25,235,260,0,0
Map,Fast,Stripes,64-bit,5,25,247,254,0,0
Map,Fast,Stripes,64-bit,6,25,237,253,0,0
Map,Fast,Stripes,64-bit,7,25,223,243,0,0
Map,Fast,Stripes,64-bit,8,25,249,243,0,0
Map,Fast,Stripes,64-bit,9,25,237,243,0,0
Map,Fast,Stripes,64-bit,0,38,249,267,0,0
Map,Fast,Stripes,64-bit,1,38,268,267,0,0
Map,Fast,Stripes,64-bit,2,38,224,231,0,0
Map,Fast,Stripes,64-bit,3,38,265,293,0,0
Map,Fast,Stripes,64-bit,4,38,300,292,0,0
Map,Fast,Stripes,64-bit,5,38,263,283,0,0
Map,Fast,Stripes,64-bit,6,38,261,284,0,0
Map,Fast,Stripes,64-bit,7,38,267,271,0,0
Map,Fast,Stripes,64-bit,8,38,265,273,0,0
Map,Fast,Stripes,64-bit,9,38,265,267,0,0
Map,Fast,Stripes,64-bit,0,57,280,290,0,0
Map,Fast,Stripes,64-bit,1,57,289,290,0,0
Map,Fast,Stripes,64-bit,2,57,249,253,0,0
Map,Fast,Stripes,64-bit,3,57,304,318,0,0
Map,Fast,Stripes,64-bit,4,57,287,316,0,0
Map,Fast,Stripes,64-bit,5,57,302,304,0,0
Map,Fast,Stripes,64-bit,6,57,293,315,0,0
Map,Fast,Stripes,64-bit,7,57,303,299,0,0
Map,Fast,Stripes,64-bit,8,57,293,304,0,0
Map,Fast,Stripes,64-bit,9,57,302,293,0,0
Map,Fast,Stripes,64-bit,0,86,316,315,0,0
Map,Fast,Stripes,64-bit,1,86,310,315,0,0
Map,Fast,Stripes,64-bit,2,86,307,278,0,0
Map,Fast,Stripes,64-bit,3,86,324,341,0,0
Map,Fast,Stripes,64-bit,4,86,347,338,0,0
Map,Fast,Stripes,64-bit,5,86,325,332,0,0
Map,Fast,Stripes,64-bit,6,86,321,344,0,0
Map,Fast,Stripes,64-bit,7,86,351,324,0,0
Map,Fast,Stripes,64-bit,8,86,333,336,0,0
Map,Fast,Stripes,64-bit,9,86,348,322,0,0
Map,Fast,Stripes,64-bit,0,129,332,335,0,0
Map,Fast,Stripes,64-bit,1,129,331,335,0,0
Map,Fast,Stripes,64-bit,2,129,302,297,0,0
Map,Fast,Stripes,64-bit,3,129,352,366,0,0
Map,Fast,Stripes,64-bit,4,129,359,364,0,0
Map,Fast,Stripes,64-bit,5,129,349,354,0,0
Map,Fast,Stripes,64-bit,6,129,363,370,0,0
Map,Fast,Stripes,64-bit,7,129,349,346,0,0
Map,Fast,Stripes,64-bit,8,129,388,371,0,0
Map,Fast,Stripes,64-bit,9,129,357,347,0,0
Map,Fast,Stripes,64-bit,0,194,371,361,0,0
Map,Fast,Stripes,64-bit,1,194,360,361,0,0
Map,Fast,Stripes,64-bit,2,194,344,323,0,0
Map,Fast,Stripes,64-bit,3,194,379,386,0,0
Map,Fast,Stripes,64-bit,4,194,400,387,0,0
Map,Fast,Stripes,64-bit,5,194,377,378,0,0
Map,Fast,Stripes,64-bit,6,194,402,393,0,0
Map,Fast,Stripes,64-bit,7,194,389,372,0,0
Map,Fast,Stripes,64-bit,8,194,419,398,0,0
Map,Fast,Stripes,64-bit,9,194,387,373,0,0
Map,Fast,Stripes,64-bit,0,291,389,383,0,0
Map,Fast,Stripes,64-bit,1,291,396,383,0,0
Map,Fast,Stripes,64-bit,2,291,356,345,0,0
Map,Fast,Stripes,64-bit,3,291,412,412,0,0
Map,Fast,Stripes,64-bit,4,291,405,409,0,0
Map,Fast,Stripes,64-bit,5,291,412,401,0,0
Map,Fast,Stripes,64-bit,6,291,417,417,0,0
Map,Fast,Stripes,64-bit,7,291,416,393,0,0
Map,Fast,Stripes,64-bit,8,291,452,427,0,0
Map,Fast,Stripes,64-bit,9,291,421,395,0,0
Map,Fast,Stripes,64-bit,0,437,409,405,0,0
Map,Fast,Stripes,64-bit,1,437,414,405,0,0
Map,Fast,Stripes,64-bit,2,437,376,367,0,0
Map,Fast,Stripes,64-bit,3,437,437,434,0,0
Map,Fast,Stripes,64-bit,4,437,440,433,0,0
Map,Fast,Stripes,64-bit,5,437,429,422,0,0
Map,Fast,Stripes,64-bit,6,437,471,439,0,0
Map,Fast,Stripes,64-bit,7,437,449,418,0,0
Map,Fast,Stripes,64-bit,8,437,508,448,0,0
Map,Fast,Stripes,64-bit,9,437,456,420,0,0
Map,Fast,Stripes,64-bit,0,656,455,429,0,0
Map,Fast,Stripes,64-bit,1,656,431,429,0,0
Map,Fast,Stripes,64-bit,2,656,427,391,0,0
Map,Fast,Stripes,64-bit,3,656,457,456,0,0
Map,Fast,Stripes,64-bit,4,656,480,452,0,0
Map,Fast,Stripes,64-bit,5,656,470,447,0,0
Map,Fast,Stripes,64-bit,6,656,498,460,0,0
Map,Fast,Stripes,64-bit,7,656,497,440,0,0
Map,Fast,Stripes,64-bit,8,656,527,475,0,0
Map,Fast,Stripes,64-bit,9,656,496,442,0,0
Map,Fast,Stripes,64-bit,0,985,471,449,0,0
Map,Fast,Stripes,64-bit,1,985,476,449,0,0
Map,Fast,Stripes,64-bit,2,985,453,411,0,0
Map,Fast,Stripes,64-bit,3,985,494,480,0,0
Map,Fast,Stripes,64-bit,4,985,532,478,0,0
Map,Fast,Stripes,64-bit,5,985,493,468,0,0
Map,Fast,Stripes,64-bit,6,985,529,484,0,0
Map,Fast,Stripes,64-bit,7,985,538,462,0,0
Map,Fast,Stripes,64-bit,8,985,573,501,0,0
Map,Fast,Stripes,64-bit,9,985,533,466,0,0
Map,Fast,Stripes,64-bit,0,1477,531,474,0,0
Map,Fast,Stripes,64-bit,1,1477,511,474,0,0
Map,Fast,Stripes,64-bit,2,1477,499,436,0,0
Map,Fast,Stripes,64-bit,3,1477,525,500,0,0
Map,Fast,Stripes,64-bit,4,1477,542,499,0,0
Map,Fast,Stripes,64-bit,5,1477,560,491,0,0
Map,Fast,Stripes,64-bit,6,1477,551,504,0,0
Map,Fast,Stripes,64-bit,7,1477,576,486,0,0
Map,Fast,Stripes,64-bit,8,1477,603,521,0,0
Map,Fast,Stripes,64-bit,9,1477,564,489,0,0
Map,Fast,Stripes,64-bit,0,2216,590,495,0,0
Map,Fast,Stripes,64-bit,1,2216,555,495,0,0
Map,Fast,Stripes,64-bit,2,2216,543,456,0,0
Map,Fast,Stripes,64-bit,3,2216,609,525,0,0
Map,Fast,Stripes,64-bit,4,2216,587,521,0,0
Map,Fast,Stripes,64-bit,5,2216,588,514,0,0
Map,Fast,Stripes,64-bit,6,2216,621,528,0,0
Map,Fast,Stripes,64-bit,7,2216,617,506,0,0
Map,Fast,Stripes,64-bit,8,2216,665,546,0,0
Map,Fast,Stripes,64-bit,9,2216,634,510,0,0
Map,Fast,Stripes,64-bit,0,3325,637,518,0,0
Map,Fast,Stripes,64-bit,1,3325,629,518,0,0
Map,Fast,Stripes,64-bit,2,3325,616,480,0,0
Map,Fast,Stripes,64-bit,3,3325,670,545,0,0
Map,Fast,Stripes,64-bit,4,3325,661,544,0,0
Map,Fast,Stripes,64-bit,5,3325,673,534,0,0
Map,Fast,Stripes,64-bit,6,3325,685,549,0,0
Map,Fast,Stripes,64-bit,7,3325,674,530,0,0
Map,Fast,Stripes,64-bit,8,3325,741,568,0,0
Map,Fast,Stripes,64-bit,9,3325,711,534,0,0
Map,Fast,Stripes,64-bit,0,4987,704,500,99,0
Map,Fast,Stripes,64-bit,1,4987,699,500,99,0
Map,Fast,Stripes,64-bit,2,4987,620,500,3,0
Map,Fast,Stripes,64-bit,3,4987,768,500,97,0
Map,Fast,Stripes,64-bit,4,4987,754,500,89,0
Map,Fast,Stripes,64-bit,5,4987,750,500,74,0
Map,Fast,Stripes,64-bit,6,4987,758,500,90,0
Map,Fast,Stripes,64-bit,7,4987,754,500,79,0
Map,Fast,Stripes,64-bit,8,4987,909,500,141,0
Map,Fast,Stripes,64-bit,9,4987,770,500,77,0
Map,Fast,Stripes,64-bit,0,7481,870,450,127,0
Map,Fast,Stripes,64-bit,1,7481,866,450,127,0
Map,Fast,Stripes,64-bit,2,7481,839,386,120,0
Map,Fast,Stripes,64-bit,3,7481,930,445,110,0
Map,Fast,Stripes,64-bit,4,7481,963,446,111,0
Map,Fast,Stripes,64-bit,5,7481,898,477,120,0
Map,Fast,Stripes,64-bit,6,7481,923,448,112,0
Map,Fast,Stripes,64-bit,7,7481,927,468,120,0
Map,Fast,Stripes,64-bit,8,7481,1025,455,121,0
Map,Fast,Stripes,64-bit,9,7481,924,477,95,0
Map,Fast,Stripes,64-bit,0,11222,951,441,114,3
Map,Fast,Stripes,64-bit,1,11222,944,441,114,3
Map,Fast,Stripes,64-bit,2,11222,915,396,108,9
Map,Fast,Stripes,64-bit,3,11222,996,451,120,10
Map,Fast,Stripes,64-bit,4,11222,1029,446,133,9
Map,Fast,Stripes,64-bit,5,11222,926,441,102,11
Map,Fast,Stripes,64-bit,6,11222,980,455,116,11
Map,Fast,Stripes,64-bit,7,11222,1013,438,101,15
Map,Fast,Stripes,64-bit,8,11222,1064,486,119,9
Map,Fast,Stripes,64-bit,9,11222,1015,439,107,13
Map,Fast,Stripes,64-bit,0,16834,982,387,68,24
Map,Fast,Stripes,64-bit,1,16834,986,387,68,24
Map,Fast,Stripes,64-bit,2,16834,942,356,101,12
Map,Fast,Stripes,64-bit,3,16834,1033,437,68,20
Map,Fast,Stripes,64-bit,4,16834,1014,443,58,22
Map,Fast,Stripes,64-bit,5,16834,999,420,67,22
Map,Fast,Stripes,64-bit,6,16834,1027,450,56,20
Map,Fast,Stripes,64-bit,7,16834,1001,415,65,19
Map,Fast,Stripes,64-bit,8,16834,1138,484,59,21
Map,Fast,Stripes,64-bit,9,16834,1042,421,66,20
Map,Fast,Stripes,64-bit,0,25251,1043,422,50,20
Map,Fast,Stripes,64-bit,1,25251,1046,422,50,20
Map,Fast,Stripes,64-bit,2,25251,1042,303,34,16
Map,Fast,Stripes,64-bit,3,25251,1040,442,46,21
Map,Fast,Stripes,64-bit,4,25251,1092,501,36,16
Map,Fast,Stripes,64-bit,5,25251,1034,453,39,18
Map,Fast,Stripes,64-bit,6,25251,1049,451,48,18
Map,Fast,Stripes,64-bit,7,25251,1057,430,48,21
Map,Fast,Stripes,64-bit,8,25251,1179,479,42,18
Map,Fast,Stripes,64-bit,9,25251,1097,436,37,17
Map,Fast,Stripes,64-bit,0,37876,1084,415,29,14
Map,Fast,Stripes,64-bit,1,37876,1075,415,29,14
Map,Fast,Stripes,64-bit,2,37876,1035,332,31,14
Map,Fast,Stripes,64-bit,3,37876,1123,484,29,14
Map,Fast,Stripes,64-bit,4,37876,1113,458,32,14
Map,Fast,Stripes,64-bit,5,37876,1085,426,28,13
Map,Fast,Stripes,64-bit,6,37876,1101,488,31,15
Map,Fast,Stripes,64-bit,7,37876,1126,464,35,16
Map,Fast,Stripes,64-bit,8,37876,1215,517,30,13
Map,Fast,Stripes,64-bit,9,37876,1155,448,37,18
Map,Fast,Stripes,64-bit,0,56815,1132,460,30,13
Map,Fast,Stripes,64-bit,1,56815,1147,460,30,13
Map,Fast,Stripes,64-bit,2,56815,1068,351,28,14
Map,Fast,Stripes,64-bit,3,56815,1155,499,27,12
Map,Fast,Stripes,64-bit,4,56815,1173,485,35,15
Map,Fast,Stripes,64-bit,5,56815,1150,471,28,13
Map,Fast,Stripes,64-bit,6,56815,1151,507,29,14
Map,Fast,Stripes,64-bit,7,56815,1145,471,29,14
Map,Fast,Stripes,64-bit,8,56815,1268,529,25,12
Map,Fast,Stripes,64-bit,9,56815,1194,442,31,15
Map,Fast,Stripes,64-bit,0,85222,1197,465,25,11
Map,Fast,Stripes,64-bit,1,85222,1190,465,25,11
Map,Fast,Stripes,64-bit,2,85222,1121,391,28,12
Map,Fast,Stripes,64-bit,3,85222,1197,508,28,12
Map,Fast,Stripes,64-bit,4,85222,1198,510,28,13
Map,Fast,Stripes,64-bit,5,85222,1179,496,26,11
Map,Fast,Stripes,64-bit,6,85222,1191,511,29,13
Map,Fast,Stripes,64-bit,7,85222,1197,494,27,12
Map,Fast,Stripes,64-bit,8,85222,1300,537,31,13
Map,Fast,Stripes,64-bit,9,85222,1242,490,27,11
Map,Fast,Stripes,64-bit,0,127834,1258,500,26,9
Map,Fast,Stripes,64-bit,1,127834,1266,494,26,9
Map,Fast,Stripes,64-bit,2,127834,1236,426,28,9
Map,Fast,Stripes,64-bit,3,127834,1308,528,30,10
Map,Fast,Stripes,64-bit,4,127834,1301,529,29,10
Map,Fast,Stripes,64-bit,5,127834,1294,506,26,9
Map,Fast,Stripes,64-bit,6,127834,1272,534,29,10
Map,Fast,Stripes,64-bit,7,127834,1276,502,28,10
Map,Fast,Stripes,64-bit,8,127834,1411,557,30,11
Map,Fast,Stripes,64-bit,9,127834,1341,510,28,10
Map,Fast,Stripes,64-bit,0,191751,1308,527,28,9
Map,Fast,Stripes,64-bit,1,191751,1357,527,28,9
Map,Fast,Stripes,64-bit,2,191751,1275,477,29,10
Map,Fast,Stripes,64-bit,3,191751,1350,567,31,10
Map,Fast,Stripes,64-bit,4,191751,1387,563,28,9
Map,Fast,Stripes,64-bit,5,191751,1347,561,28,9
Map,Fast,Stripes,64-bit,6,191751,1380,575,30,10
Map,Fast,Stripes,64-bit,7,191751,1355,545,28,9
Map,Fast,Stripes,64-bit,8,191751,1462,584,27,9
Map,Fast,Stripes,64-bit,9,191751,1392,546,31,9
Map,Fast,Stripes,64-bit,0,287626,1354,514,27,9
Map,Fast,Stripes,64-bit,1,287626,1371,515,27,9
Map,Fast,Stripes,64-bit,2,287626,1317,469,27,9
Map,Fast,Stripes,64-bit,3,287626,1355,538,27,9
Map,Fast,Stripes,64-bit,4,287626,1352,540,28,9
Map,Fast,Stripes,64-bit,5,287626,1294,536,27,9
Map,Fast,Stripes,64-bit,6,287626,1324,543,27,9
Map,Fast,Stripes,64-bit,7,287626,1341,529,27,9
Map,Fast,Stripes,64-bit,8,287626,1452,555,27,9
Map,Fast,Stripes,64-bit,9,287626,1357,535,30,10
Map,Fast,Stripes,64-bit,0,431439,1304,499,25,7
Map,Fast,Stripes,64-bit,1,431439,1267,502,26,7
Map,Fast,Stripes,64-bit,2,431439,1218,462,25,7
Map,Fast,Stripes,64-bit,3,431439,1312,514,26,7
Map,Fast,Stripes,64-bit,4,431439,1300,518,26,7
Map,Fast,Stripes,64-bit,5,431439,1250,507,25,7
Map,Fast,Stripes,64-bit,6,431439,1268,526,25,7
Map,Fast,Stripes,64-bit,7,431439,1295,502,25,7
Map,Fast,Stripes,64-bit,8,431439,1371,543,25,7
Map,Fast,Stripes,64-bit,9,431439,1341,513,25,7
Map,Fast,Stripes,64-bit,0,647159,1181,465,26,6
Map,Fast,Stripes,64-bit,1,647159,1154,467,27,6
Map,Fast,Stripes,64-bit,2,647159,1135,437,27,6
Map,Fast,Stripes,64-bit,3,647159,1190,485,28,7
Map,Fast,Stripes,64-bit,4,647159,1209,481,28,7
Map,Fast,Stripes,64-bit,5,647159,1151,481,28,6
Map,Fast,Stripes,64-bit,6,647159,1163,492,29,6
Map,Fast,Stripes,64-bit,7,647159,1190,466,26,6
Map,Fast,Stripes,64-bit,8,647159,1273,517,28,7
Map,Fast,Stripes,64-bit,9,647159,1201,472,26,6
Map,Fast,Random,64-bit,0,1,68,69,0,0
Map,Fast,Random,64-bit,1,1,71,69,0,0
Map,Fast,Random,64-bit,2,1,71,69,0,0
Map,Fast,Random,64-bit,3,1,68,69,0,0
Map,Fast,Random,64-bit,4,1,74,69,0,0
Map,Fast,Random,64-bit,5,1,66,69,0,0
Map,Fast,Random,64-bit,6,1,73,69,0,0
Map,Fast,Random,64-bit,7,1,67,69,0,0
Map,Fast,Random,64-bit,8,1,68,69,0,0
Map,Fast,Random,64-bit,9,1,69,69,0,0
Map,Fast,Random,64-bit,0,2,82,89,0,0
Map,Fast,Random,64-bit,1,2,79,89,0,0
Map,Fast,Random,64-bit,2,2,79,89,0,0
Map,Fast,Random,64-bit,3,2,79,89,0,0
Map,Fast,Random,64-bit,4,2,80,89,0,0
Map,Fast,Random,64-bit,5,2,79,89,0,0
Map,Fast,Random,64-bit,6,2,80,89,0,0
Map,Fast,Random,64-bit,7,2,79,89,0,0
Map,Fast,Random,64-bit,8,2,81,89,0,0
Map,Fast,Random,64-bit,9,2,76,89,0,0
Map,Fast,Random,64-bit,0,3,119,133,0,0
Map,Fast,Random,64-bit,1,3,86,95,0,0
Map,Fast,Random,64-bit,2,3,112,120,0,0
Map,Fast,Random,64-bit,3,3,110,120,0,0
Map,Fast,Random,64-bit,4,3,83,95,0,0
Map,Fast,Random,64-bit,5,3,110,120,0,0
Map,Fast,Random,64-bit,6,3,89,95,0,0
Map,Fast,Random,64-bit,7,3,123,133,0,0
Map,Fast,Random,64-bit,8,3,120,133,0,0
Map,Fast,Random,64-bit,9,3,84,95,0,0
Map,Fast,Random,64-bit,0,5,147,153,0,0
Map,Fast,Random,64-bit,1,5,120,138,0,0
Map,Fast,Random,64-bit,2,5,121,130,0,0
Map,Fast,Random,64-bit,3,5,122,130,0,0
Map,Fast,Random,64-bit,4,5,126,130,0,0
Map,Fast,Random,64-bit,5,5,142,153,0,0
Map,Fast,Random,64-bit,6,5,106,115,0,0
Map,Fast,Random,64-bit,7,5,143,161,0,0
Map,Fast,Random,64-bit,8,5,122,138,0,0
Map,Fast,Random,64-bit,9,5,103,115,0,0
Map,Fast,Random,64-bit,0,7,152,178,0,0
Map,Fast,Random,64-bit,1,7,145,162,0,0
Map,Fast,Random,64-bit,2,7,139,151,0,0
Map,Fast,Random,64-bit,3,7,133,146,0,0
Map,Fast,Random,64-bit,4,7,140,151,0,0
Map,Fast,Random,64-bit,5,7,155,168,0,0
Map,Fast,Random,64-bit,6,7,128,146,0,0
Map,Fast,Random,64-bit,7,7,151,162,0,0
Map,Fast,Random,64-bit,8,7,148,157,0,0
Map,Fast,Random,64-bit,9,7,129,146,0,0
Map,Fast,Random,64-bit,0,11,177,201,0,0
Map,Fast,Random,64-bit,1,11,167,180,0,0
Map,Fast,Random,64-bit,2,11,158,173,0,0
Map,Fast,Random,64-bit,3,11,156,173,0,0
Map,Fast,Random,64-bit,4,11,162,180,0,0
Map,Fast,Random,64-bit,5,11,171,184,0,0
Map,Fast,Random,64-bit,6,11,165,187,0,0
Map,Fast,Random,64-bit,7,11,159,173,0,0
Map,Fast,Random,64-bit,8,11,185,198,0,0
Map,Fast,Random,64-bit,9,11,151,170,0,0
Map,Fast,Random,64-bit,0,17,222,213,0,0
Map,Fast,Random,64-bit,1,17,181,193,0,0
Map,Fast,Random,64-bit,2,17,183,197,0,0
Map,Fast,Random,64-bit,3,17,185,197,0,0
Map,Fast,Random,64-bit,4,17,192,206,0,0
Map,Fast,Random,64-bit,5,17,196,211,0,0
Map,Fast,Random,64-bit,6,17,187,206,0,0
Map,Fast,Random,64-bit,7,17,180,193,0,0
Map,Fast,Random,64-bit,8,17,194,206,0,0
Map,Fast,Random,64-bit,9,17,182,195,0,0
Map,Fast,Random,64-bit,0,25,212,227,0,0
Map,Fast,Random,64-bit,1,25,205,221,0,0
Map,Fast,Random,64-bit,2,25,209,221,0,0
Map,Fast,Random,64-bit,3,25,200,210,0,0
Map,Fast,Random,64-bit,4,25,221,236,0,0
Map,Fast,Random,64-bit,5,25,220,228,0,0
Map,Fast,Random,64-bit,6,25,210,224,0,0
Map,Fast,Random,64-bit,7,25,200,221,0,0
Map,Fast,Random,64-bit,8,25,205,221,0,0
Map,Fast,Random,64-bit,9,25,203,219,0,0
Map,Fast,Random,64-bit,0,38,236,249,0,0
Map,Fast,Random,64-bit,1,38,223,241,0,0
Map,Fast,Random,64-bit,2,38,238,247,0,0
Map,Fast,Random,64-bit,3,38,228,237,0,0
Map,Fast,Random,64-bit,4,38,249,264,0,0
Map,Fast,Random,64-bit,5,38,238,253,0,0
Map,Fast,Random,64-bit,6,38,229,244,0,0
Map,Fast,Random,64-bit,7,38,228,245,0,0
Map,Fast,Random,64-bit,8,38,229,240,0,0
Map,Fast,Random,64-bit,9,38,229,243,0,0
Map,Fast,Random,64-bit,0,57,260,275,0,0
Map,Fast,Random,64-bit,1,57,259,266,0,0
Map,Fast,Random,64-bit,2,57,262,275,0,0
Map,Fast,Random,64-bit,3,57,255,266,0,0
Map,Fast,Random,64-bit,4,57,275,284,0,0
Map,Fast,Random,64-bit,5,57,267,275,0,0
Map,Fast,Random,64-bit,6,57,256,268,0,0
Map,Fast,Random,64-bit,7,57,251,266,0,0
Map,Fast,Random,64-bit,8,57,252,268,0,0
Map,Fast,Random,64-bit,9,57,262,270,0,0
Map,Fast,Random,64-bit,0,86,289,294,0,0
Map,Fast,Random,64-bit,1,86,299,286,0,0
Map,Fast,Random,64-bit,2,86,296,300,0,0
Map,Fast,Random,64-bit,3,86,286,286,0,0
Map,Fast,Random,64-bit,4,86,300,301,0,0
Map,Fast,Random,64-bit,5,86,298,299,0,0
Map,Fast,Random,64-bit,6,86,283,286,0,0
Map,Fast,Random,64-bit,7,86,284,286,0,0
Map,Fast,Random,64-bit,8,86,285,293,0,0
Map,Fast,Random,64-bit,9,86,297,298,0,0
Map,Fast,Random,64-bit,0,129,353,316,0,0
Map,Fast,Random,64-bit,1,129,322,309,0,0
Map,Fast,Random,64-bit,2,129,342,319,0,0
Map,Fast,Random,64-bit,3,129,334,313,0,0
Map,Fast,Random,64-bit,4,129,322,322,0,0
Map,Fast,Random,64-bit,5,129,332,317,0,0
Map,Fast,Random,64-bit,6,129,315,310,0,0
Map,Fast,Random,64-bit,7,129,347,313,0,0
Map,Fast,Random,64-bit,8,129,322,307,0,0
Map,Fast,Random,64-bit,9,129,344,317,0,0
Map,Fast,Random,64-bit,0,194,384,343,0,0
Map,Fast,Random,64-bit,1,194,369,335,0,0
Map,Fast,Random,64-bit,2,194,377,340,0,0
Map,Fast,Random,64-bit,3,194,377,336,0,0
Map,Fast,Random,64-bit,4,194,379,341,0,0
Map,Fast,Random,64-bit,5,194,371,335,0,0
Map,Fast,Random,64-bit,6,194,359,339,0,0
Map,Fast,Random,64-bit,7,194,377,340,0,0
Map,Fast,Random,64-bit,8,194,363,331,0,0
Map,Fast,Random,64-bit,9,194,373,334,0,0
Map,Fast,Random,64-bit,0,291,439,365,0,0
Map,Fast,Random,64-bit,1,291,433,357,0,0
Map,Fast,Random,64-bit,2,291,429,359,0,0
Map,Fast,Random,64-bit,3,291,433,357,0,0
Map,Fast,Random,64-bit,4,291,419,359,0,0
Map,Fast,Random,64-bit,5,291,419,357,0,0
Map,Fast,Random,64-bit,6,291,425,364,0,0
Map,Fast,Random,64-bit,7,291,432,364,0,0
Map,Fast,Random,64-bit,8,291,421,355,0,0
Map,Fast,Random,64-bit,9,291,421,359,0,0
Map,Fast,Random,64-bit,0,437,490,384,0,0
Map,Fast,Random,64-bit,1,437,505,382,0,0
Map,Fast,Random,64-bit,2,437,482,383,0,0
Map,Fast,Random,64-bit,3,437,499,379,0,0
Map,Fast,Random,64-bit,4,437,476,382,0,0
Map,Fast,Random,64-bit,5,437,472,380,0,0
Map,Fast,Random,64-bit,6,437,489,383,0,0
Map,Fast,Random,64-bit,7,437,480,386,0,0
Map,Fast,Random,64-bit,8,437,508,382,0,0
Map,Fast,Random,64-bit,9,437,480,384,0,0
Map,Fast,Random,64-bit,0,656,547,408,0,0
Map,Fast,Random,64-bit,1,656,529,403,0,0
Map,Fast,Random,64-bit,2,656,539,405,0,0
Map,Fast,Random,64-bit,3,656,552,404,0,0
Map,Fast,Random,64-bit,4,656,533,404,0,0
Map,Fast,Random,64-bit,5,656,529,403,0,0
Map,Fast,Random,64-bit,6,656,545,407,0,0
Map,Fast,Random,64-bit,7,656,536,407,0,0
Map,Fast,Random,64-bit,8,656,547,405,0,0
Map,Fast,Random,64-bit,9,656,556,407,0,0
Map,Fast,Random,64-bit,0,985,587,428,0,0
Map,Fast,Random,64-bit,1,985,597,426,0,0
Map,Fast,Random,64-bit,2,985,609,428,0,0
Map,Fast,Random,64-bit,3,985,591,428,0,0
Map,Fast,Random,64-bit,4,985,605,427,0,0
Map,Fast,Random,64-bit,5,985,603,425,0,0
Map,Fast,Random,64-bit,6,985,587,428,0,0
Map,Fast,Random,64-bit,7,985,606,430,0,0
Map,Fast,Random,64-bit,8,985,604,427,0,0
Map,Fast,Random,64-bit,9,985,585,430,0,0
Map,Fast,Random,64-bit,0,1477,649,450,0,0
Map,Fast,Random,64-bit,1,1477,667,448,0,0
Map,Fast,Random,64-bit,2,1477,669,449,0,0
Map,Fast,Random,64-bit,3,1477,639,451,0,0
Map,Fast,Random,64-bit,4,1477,636,450,0,0
Map,Fast,Random,64-bit,5,1477,660,449,0,0
Map,Fast,Random,64-bit,6,1477,667,453,0,0
Map,Fast,Random,64-bit,7,1477,678,454,0,0
Map,Fast,Random,64-bit,8,1477,641,448,0,0
Map,Fast,Random,64-bit,9,1477,674,451,0,0
Map,Fast,Random,64-bit,0,2216,732,473,0,0
Map,Fast,Random,64-bit,1,2216,736,471,0,0
Map,Fast,Random,64-bit,2,2216,731,473,0,0
Map,Fast,Random,64-bit,3,2216,716,474,0,0
Map,Fast,Random,64-bit,4,2216,728,474,0,0
Map,Fast,Random,64-bit,5,2216,730,474,0,0
Map,Fast,Random,64-bit,6,2216,734,476,0,0
Map,Fast,Random,64-bit,7,2216,709,476,0,0
Map,Fast,Random,64-bit,8,2216,712,472,0,0
Map,Fast,Random,64-bit,9,2216,731,472,0,0
Map,Fast,Random,64-bit,0,3325,802,495,0,0
Map,Fast,Random,64-bit,1,3325,821,495,0,0
Map,Fast,Random,64-bit,2,3325,817,496,0,0
Map,Fast,Random,64-bit,3,3325,825,497,0,0
Map,Fast,Random,64-bit,4,3325,802,495,0,0
Map,Fast,Random,64-bit,5,3325,801,496,0,0
Map,Fast,Random,64-bit,6,3325,819,498,0,0
Map,Fast,Random,64-bit,7,3325,829,498,0,0
Map,Fast,Random,64-bit,8,3325,801,494,0,0
Map,Fast,Random,64-bit,9,3325,817,494,0,0
Map,Fast,Random,64-bit,0,4987,871,501,34,0
Map,Fast,Random,64-bit,1,4987,869,501,35,0
Map,Fast,Random,64-bit,2,4987,882,501,37,0
Map,Fast,Random,64-bit,3,4987,878,501,39,0
Map,Fast,Random,64-bit,4,4987,872,501,37,0
Map,Fast,Random,64-bit,5,4987,860,501,38,0
Map,Fast,Random,64-bit,6,4987,856,501,39,0
Map,Fast,Random,64-bit,7,4987,873,501,40,0
Map,Fast,Random,64-bit,8,4987,847,502,32,0
Map,Fast,Random,64-bit,9,4987,860,501,35,0
Map,Fast,Random,64-bit,0,7481,1177,384,129,0
Map,Fast,Random,64-bit,1,7481,1160,380,127,0
Map,Fast,Random,64-bit,2,7481,1152,386,126,0
Map,Fast,Random,64-bit,3,7481,1147,380,122,0
Map,Fast,Random,64-bit,4,7481,1161,385,128,0
Map,Fast,Random,64-bit,5,7481,1174,380,128,0
Map,Fast,Random,64-bit,6,7481,1147,383,129,0
Map,Fast,Random,64-bit,7,7481,1151,377,124,0
Map,Fast,Random,64-bit,8,7481,1157,381,127,0
Map,Fast,Random,64-bit,9,7481,1147,387,134,0
Map,Fast,Random,64-bit,0,11222,1295,364,137,0
Map,Fast,Random,64-bit,1,11222,1279,367,134,0
Map,Fast,Random,64-bit,2,11222,1278,368,131,0
Map,Fast,Random,64-bit,3,11222,1295,367,134,0
Map,Fast,Random,64-bit,4,11222,1282,363,136,0
Map,Fast,Random,64-bit,5,11222,1276,366,128,0
Map,Fast,Random,64-bit,6,11222,1287,373,134,0
Map,Fast,Random,64-bit,7,11222,1305,367,139,0
Map,Fast,Random,64-bit,8,11222,1270,367,135,0
Map,Fast,Random,64-bit,9,11222,1295,366,140,0
Map,Fast,Random,64-bit,0,16834,1524,317,148,17
Map,Fast,Random,64-bit,1,16834,1481,318,147,18
Map,Fast,Random,64-bit,2,16834,1504,338,148,17
Map,Fast,Random,64-bit,3,16834,1481,328,148,16
Map,Fast,Random,64-bit,4,16834,1514,320,148,19
Map,Fast,Random,64-bit,5,16834,1481,323,147,18
Map,Fast,Random,64-bit,6,16834,1510,323,148,19
Map,Fast,Random,64-bit,7,16834,1485,326,148,19
Map,Fast,Random,64-bit,8,16834,1527,315,148,18
Map,Fast,Random,64-bit,9,16834,1482,319,148,18
Map,Fast,Random,64-bit,0,25251,1739,337,129,27
Map,Fast,Random,64-bit,1,25251,1721,337,132,24
Map,Fast,Random,64-bit,2,25251,1758,335,131,28
Map,Fast,Random,64-bit,3,25251,1746,328,125,26
Map,Fast,Random,64-bit,4,25251,1737,337,131,28
Map,Fast,Random,64-bit,5,25251,1755,335,130,26
Map,Fast,Random,64-bit,6,25251,1755,337,132,26
Map,Fast,Random,64-bit,7,25251,1739,337,132,26
Map,Fast,Random,64-bit,8,25251,1718,334,127,28
Map,Fast,Random,64-bit,9,25251,1758,334,128,29
Map,Fast,Random,64-bit,0,37876,2073,345,125,37
Map,Fast,Random,64-bit,1,37876,2089,346,118,39
Map,Fast,Random,64-bit,2,37876,2104,344,122,38
Map,Fast,Random,64-bit,3,37876,2100,344,119,38
Map,Fast,Random,64-bit,4,37876,2069,344,117,39
Map,Fast,Random,64-bit,5,37876,2071,343,126,36
Map,Fast,Random,64-bit,6,37876,2091,346,120,38
Map,Fast,Random,64-bit,7,37876,2090,343,123,35
Map,Fast,Random,64-bit,8,37876,2093,344,121,39
Map,Fast,Random,64-bit,9,37876,2098,342,121,38
Map,Fast,Random,64-bit,0,56815,2589,346,99,41
Map,Fast,Random,64-bit,1,56815,2536,348,104,38
Map,Fast,Random,64-bit,2,56815,2537,351,94,41
Map,Fast,Random,64-bit,3,56815,2548,349,98,40
Map,Fast,Random,64-bit,4,56815,2560,350,94,39
Map,Fast,Random,64-bit,5,56815,2537,349,97,40
Map,Fast,Random,64-bit,6,56815,2557,351,102,41
Map,Fast,Random,64-bit,7,56815,2577,349,99,39
Map,Fast,Random,64-bit,8,56815,2649,348,100,40
Map,Fast,Random,64-bit,9,56815,2769,348,97,40
Map,Fast,Random,64-bit,0,85222,3013,355,94,30
Map,Fast,Random,64-bit,1,85222,3039,355,94,30
Map,Fast,Random,64-bit,2,85222,2978,355,98,30
Map,Fast,Random,64-bit,3,85222,3062,356,97,30
Map,Fast,Random,64-bit,4,85222,3115,355,91,30
Map,Fast,Random,64-bit,5,85222,2990,355,96,30
Map,Fast,Random,64-bit,6,85222,2981,356,95,30
Map,Fast,Random,64-bit,7,85222,2896,355,99,30
Map,Fast,Random,64-bit,8,85222,2860,355,95,30
Map,Fast,Random,64-bit,9,85222,2843,355,96,30
Map,Fast,Random,64-bit,0,127834,3622,377,86,29
Map,Fast,Random,64-bit,1,127834,3678,373,85,30
Map,Fast,Random,64-bit,2,127834,3658,371,91,31
Map,Fast,Random,64-bit,3,127834,3729,374,86,30
Map,Fast,Random,64-bit,4,127834,3682,375,84,30
Map,Fast,Random,64-bit,5,127834,3690,374,85,30
Map,Fast,Random,64-bit,6,127834,3675,375,91,30
Map,Fast,Random,64-bit,7,127834,3708,373,87,30
Map,Fast,Random,64-bit,8,127834,3652,376,89,30
Map,Fast,Random,64-bit,9,127834,3724,375,83,30
Map,Fast,Random,64-bit,0,191751,4453,405,101,31
Map,Fast,Random,64-bit,1,191751,4557,401,93,32
Map,Fast,Random,64-bit,2,191751,4467,405,99,32
Map,Fast,Random,64-bit,3,191751,4535,406,104,32
Map,Fast,Random,64-bit,4,191751,4495,404,102,31
Map,Fast,Random,64-bit,5,191751,4484,405,104,32
Map,Fast,Random,64-bit,6,191751,4514,406,100,32
Map,Fast,Random,64-bit,7,191751,4551,404,98,33
Map,Fast,Random,64-bit,8,191751,4491,402,103,31
Map,Fast,Random,64-bit,9,191751,4510,402,101,32
Map,Fast,Random,64-bit,0,287626,4699,390,94,31
Map,Fast,Random,64-bit,1,287626,4693,386,91,29
Map,Fast,Random,64-bit,2,287626,4696,386,90,28
Map,Fast,Random,64-bit,3,287626,4734,386,90,29
Map,Fast,Random,64-bit,4,287626,4697,389,95,31
Map,Fast,Random,64-bit,5,287626,4678,389,92,31
Map,Fast,Random,64-bit,6,287626,4725,386,90,28
Map,Fast,Random,64-bit,7,287626,4717,388,90,29
Map,Fast,Random,64-bit,8,287626,4697,391,94,31
Map,Fast,Random,64-bit,9,287626,4685,390,94,30
Map,Fast,Random,64-bit,0,431439,5013,388,95,31
Map,Fast,Random,64-bit,1,431439,5016,388,96,31
Map,Fast,Random,64-bit,2,431439,4999,390,95,31
Map,Fast,Random,64-bit,3,431439,4972,389,95,31
Map,Fast,Random,64-bit,4,431439,5034,389,96,31
Map,Fast,Random,64-bit,5,431439,5047,389,96,31
Map,Fast,Random,64-bit,6,431439,4970,390,95,31
Map,Fast,Random,64-bit,7,431439,4980,387,95,29
Map,Fast,Random,64-bit,8,431439,5006,387,94,29
Map,Fast,Random,64-bit,9,431439,4958,389,98,31
Map,Fast,Random,64-bit,0,647159,5159,383,104,37
Map,Fast,Random,64-bit,1,647159,5184,384,103,36
Map,Fast,Random,64-bit,2,647159,5190,386,103,36
Map,Fast,Random,64-bit,3,647159,5235,383,104,36
Map,Fast,Random,64-bit,4,647159,5211,384,103,36
Map,Fast,Random,64-bit,5,647159,5226,385,103,36
Map,Fast,Random,64-bit,6,647159,5194,386,103,36
Map,Fast,Random,64-bit,7,647159,5214,385,103,36
Map,Fast,Random,64-bit,8,647159,5140,383,104,36
Map,Fast,Random,64-bit,9,647159,5145,384,103,36
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,1,33,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,1,35,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,1,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,1,37,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,1,33,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,1,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,1,35,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,1,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,1,35,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,1,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,2,37,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,2,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,2,35,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,2,37,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,2,36,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,2,36,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,2,35,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,2,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,2,35,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,2,37,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,3,56,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,3,55,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,3,34,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,3,57,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,3,60,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,3,59,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,3,59,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,3,57,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,3,57,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,3,56,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,5,68,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,5,74,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,5,48,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,5,73,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,5,67,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,5,67,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,5,65,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,5,72,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,5,69,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,5,66,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,7,82,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,7,79,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,7,62,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,7,75,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,7,75,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,7,83,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,7,80,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,7,80,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,7,81,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,7,81,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,11,94,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,11,95,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,11,79,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,11,96,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,11,95,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,11,90,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,11,94,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,11,95,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,11,92,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,11,99,0,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,17,109,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,17,111,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,17,97,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,17,117,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,17,109,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,17,109,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,17,108,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,17,109,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,17,117,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,17,109,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,25,130,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,25,122,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,25,131,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,25,130,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,25,124,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,25,126,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,25,128,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,25,121,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,25,129,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,25,131,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,38,146,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,38,144,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,38,124,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,38,168,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,38,143,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,38,146,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,38,145,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,38,149,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,38,144,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,38,145,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,57,159,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,57,161,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,57,142,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,57,169,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,57,159,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,57,160,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,57,166,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,57,167,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,57,177,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,57,159,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,86,173,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,86,177,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,86,163,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,86,185,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,86,181,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,86,195,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,86,186,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,86,185,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,86,184,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,86,182,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,129,192,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,129,206,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,129,175,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,129,206,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,129,209,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,129,200,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,129,204,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,129,202,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,129,207,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,129,200,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,194,212,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,194,226,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,194,197,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,194,224,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,194,230,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,194,216,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,194,222,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,194,216,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,194,221,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,194,215,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,291,222,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,291,228,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,291,209,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,291,249,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,291,231,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,291,233,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,291,242,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,291,242,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,291,241,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,291,236,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,437,245,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,437,247,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,437,228,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,437,259,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,437,247,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,437,258,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,437,265,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,437,266,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,437,258,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,437,264,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,656,266,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,656,269,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,656,245,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,656,287,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,656,270,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,656,285,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,656,281,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,656,278,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,656,287,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,656,273,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,985,290,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,985,280,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,985,260,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,985,310,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,985,287,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,985,286,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,985,296,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,985,290,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,985,304,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,985,294,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,1477,295,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,1477,287,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,1477,286,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,1477,296,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,1477,284,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,1477,299,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,1477,300,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,1477,305,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,1477,293,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,1477,311,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,2216,308,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,2216,323,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,2216,291,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,2216,338,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,2216,319,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,2216,322,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,2216,326,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,2216,319,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,2216,337,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,2216,328,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,3325,326,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,3325,319,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,3325,302,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,3325,324,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,3325,320,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,3325,334,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,3325,332,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,3325,350,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,3325,324,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,3325,323,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,4987,362,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,4987,359,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,4987,358,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,4987,370,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,4987,357,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,4987,360,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,4987,388,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,4987,385,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,4987,363,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,4987,372,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,7481,333,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,7481,336,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,7481,341,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,7481,350,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,7481,359,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,7481,334,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,7481,366,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,7481,346,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,7481,363,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,7481,353,2,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,11222,368,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,11222,353,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,11222,362,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,11222,368,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,11222,372,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,11222,361,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,11222,385,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,11222,365,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,11222,385,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,11222,370,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,16834,293,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,16834,280,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,16834,266,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,16834,313,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,16834,285,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,16834,285,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,16834,290,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,16834,289,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,16834,306,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,16834,289,1,0,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,25251,439,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,25251,441,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,25251,447,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,25251,454,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,25251,466,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,25251,440,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,25251,476,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,25251,453,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,25251,461,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,25251,460,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,37876,698,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,37876,690,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,37876,651,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,37876,704,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,37876,710,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,37876,703,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,37876,701,3,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,37876,714,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,37876,723,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,37876,728,2,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,56815,1089,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,56815,1086,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,56815,1046,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,56815,1109,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,56815,1084,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,56815,1092,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,56815,1118,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,56815,1108,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,56815,1111,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,56815,1113,4,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,85222,1675,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,85222,1681,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,85222,1627,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,85222,1737,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,85222,1693,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,85222,1685,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,85222,1744,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,85222,1723,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,85222,1711,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,85222,1746,6,1,0
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,127834,2611,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,127834,2615,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,127834,2512,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,127834,2676,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,127834,2658,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,127834,2628,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,127834,2732,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,127834,2702,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,127834,2659,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,127834,2703,9,2,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,191751,4074,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,191751,4073,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,191751,3932,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,191751,4161,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,191751,4087,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,191751,4105,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,191751,4206,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,191751,4155,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,191751,4156,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,191751,4210,14,7,1
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,287626,6317,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,287626,6280,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,287626,6160,22,14,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,287626,6506,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,287626,6387,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,287626,6377,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,287626,6521,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,287626,6480,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,287626,6500,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,287626,6462,23,15,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,431439,9803,34,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,431439,9762,34,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,431439,9494,34,16,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,431439,10015,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,431439,9855,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,431439,9855,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,431439,10101,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,431439,9976,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,431439,9971,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,431439,10086,35,17,2
ImmutableSortedDictionary,Slow,Stripes,32-bit,0,647159,15208,54,25,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,1,647159,15153,54,25,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,2,647159,14716,52,23,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,3,647159,15511,55,25,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,4,647159,15277,54,24,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,5,647159,15338,54,24,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,6,647159,15579,55,24,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,7,647159,15538,55,25,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,8,647159,15522,54,24,3
ImmutableSortedDictionary,Slow,Stripes,32-bit,9,647159,15588,55,25,3
ImmutableSortedDictionary,Slow,Random,32-bit,0,1,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,1,34,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,1,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,1,33,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,1,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,1,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,1,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,1,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,1,34,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,1,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,2,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,2,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,2,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,2,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,2,38,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,2,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,2,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,2,38,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,2,37,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,2,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,3,59,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,3,36,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,3,55,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,3,55,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,3,37,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,3,55,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,3,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,3,58,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,3,57,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,3,35,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,5,73,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,5,55,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,5,60,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,5,62,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,5,54,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,5,74,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,5,54,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,5,72,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,5,62,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,5,48,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,7,69,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,7,94,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,7,70,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,7,63,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,7,72,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,7,82,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,7,78,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,7,78,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,7,77,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,7,65,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,11,87,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,11,83,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,11,87,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,11,85,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,11,90,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,11,89,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,11,88,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,11,85,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,11,88,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,11,78,0,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,17,100,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,17,99,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,17,100,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,17,96,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,17,106,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,17,104,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,17,105,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,17,99,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,17,110,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,17,98,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,25,118,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,25,111,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,25,116,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,25,111,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,25,120,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,25,136,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,25,119,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,25,115,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,25,121,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,25,130,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,38,131,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,38,131,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,38,133,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,38,129,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,38,140,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,38,132,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,38,136,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,38,133,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,38,136,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,38,136,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,57,153,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,57,145,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,57,154,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,57,163,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,57,152,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,57,157,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,57,149,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,57,152,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,57,150,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,57,173,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,86,166,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,86,165,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,86,168,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,86,162,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,86,168,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,86,166,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,86,181,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,86,165,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,86,169,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,86,179,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,129,183,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,129,179,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,129,186,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,129,181,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,129,181,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,129,190,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,129,198,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,129,183,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,129,186,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,129,188,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,194,202,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,194,195,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,194,203,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,194,203,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,194,205,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,194,198,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,194,208,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,194,205,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,194,203,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,194,200,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,291,220,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,291,217,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,291,218,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,291,218,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,291,222,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,291,215,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,291,231,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,291,216,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,291,215,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,291,218,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,437,238,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,437,235,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,437,239,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,437,241,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,437,254,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,437,237,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,437,235,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,437,256,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,437,238,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,437,242,1,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,656,271,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,656,256,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,656,274,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,656,251,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,656,259,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,656,277,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,656,261,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,656,256,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,656,254,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,656,256,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,985,293,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,985,272,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,985,275,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,985,271,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,985,270,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,985,297,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,985,274,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,985,295,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,985,266,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,985,272,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,1477,297,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,1477,281,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,1477,296,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,1477,274,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,1477,279,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,1477,295,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,1477,281,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,1477,275,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,1477,282,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,1477,282,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,2216,327,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,2216,300,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,2216,304,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,2216,306,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,2216,308,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,2216,326,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,2216,307,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,2216,323,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,2216,310,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,2216,326,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,3325,311,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,3325,304,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,3325,328,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,3325,313,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,3325,314,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,3325,307,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,3325,311,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,3325,314,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,3325,315,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,3325,325,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,4987,349,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,4987,373,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,4987,351,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,4987,350,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,4987,346,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,4987,352,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,4987,352,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,4987,351,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,4987,357,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,4987,349,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,7481,329,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,7481,335,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,7481,347,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,7481,333,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,7481,354,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,7481,339,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,7481,355,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,7481,334,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,7481,334,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,7481,336,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,11222,352,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,11222,354,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,11222,348,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,11222,352,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,11222,355,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,11222,351,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,11222,357,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,11222,348,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,11222,351,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,11222,372,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,16834,280,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,16834,287,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,16834,279,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,16834,279,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,16834,281,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,16834,281,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,16834,284,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,16834,279,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,16834,286,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,16834,277,2,0,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,25251,445,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,25251,457,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,25251,451,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,25251,460,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,25251,439,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,25251,445,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,25251,460,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,25251,443,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,25251,463,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,25251,443,3,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,37876,708,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,37876,713,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,37876,703,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,37876,686,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,37876,690,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,37876,707,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,37876,700,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,37876,715,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,37876,691,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,37876,705,4,1,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,56815,1075,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,1,56815,1097,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,2,56815,1112,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,3,56815,1088,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,4,56815,1094,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,5,56815,1087,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,6,56815,1106,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,7,56815,1107,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,8,56815,1109,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,9,56815,1097,6,2,0
ImmutableSortedDictionary,Slow,Random,32-bit,0,85222,1703,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,1,85222,1683,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,2,85222,1703,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,3,85222,1726,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,4,85222,1748,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,5,85222,1700,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,6,85222,1726,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,7,85222,1716,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,8,85222,1723,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,9,85222,1680,10,3,1
ImmutableSortedDictionary,Slow,Random,32-bit,0,127834,2692,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,1,127834,2681,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,2,127834,2680,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,3,127834,2671,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,4,127834,2691,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,5,127834,2677,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,6,127834,2681,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,7,127834,2709,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,8,127834,2695,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,9,127834,2669,15,5,2
ImmutableSortedDictionary,Slow,Random,32-bit,0,191751,4231,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,1,191751,4220,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,2,191751,4265,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,3,191751,4268,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,4,191751,4243,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,5,191751,4234,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,6,191751,4240,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,7,191751,4252,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,8,191751,4244,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,9,191751,4227,24,11,4
ImmutableSortedDictionary,Slow,Random,32-bit,0,287626,6583,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,1,287626,6534,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,2,287626,6585,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,3,287626,6610,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,4,287626,6550,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,5,287626,6602,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,6,287626,6564,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,7,287626,6578,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,8,287626,6591,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,9,287626,6569,35,15,5
ImmutableSortedDictionary,Slow,Random,32-bit,0,431439,10303,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,1,431439,10287,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,2,431439,10301,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,3,431439,10338,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,4,431439,10303,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,5,431439,10297,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,6,431439,10289,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,7,431439,10320,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,8,431439,10311,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,9,431439,10297,56,23,9
ImmutableSortedDictionary,Slow,Random,32-bit,0,647159,16281,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,1,647159,16210,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,2,647159,16172,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,3,647159,16223,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,4,647159,16227,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,5,647159,16243,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,6,647159,16329,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,7,647159,16293,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,8,647159,16231,83,33,12
ImmutableSortedDictionary,Slow,Random,32-bit,9,647159,16245,83,33,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,1,165,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,1,161,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,1,146,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,1,151,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,1,151,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,1,145,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,1,150,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,1,147,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,1,147,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,1,148,38,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,2,165,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,2,166,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,2,167,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,2,171,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,2,164,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,2,185,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,2,163,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,2,172,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,2,166,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,2,181,47,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,3,231,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,3,227,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,3,182,50,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,3,218,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,3,223,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,3,220,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,3,222,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,3,219,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,3,219,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,3,227,57,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,5,285,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,5,298,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,5,221,61,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,5,309,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,5,282,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,5,284,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,5,305,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,5,281,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,5,276,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,5,300,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,7,338,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,7,371,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,7,267,68,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,7,326,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,7,332,73,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,7,337,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,7,358,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,7,332,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,7,344,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,7,351,76,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,11,397,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,11,411,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,11,318,79,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,11,422,90,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,11,372,86,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,11,400,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,11,395,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,11,407,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,11,399,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,11,405,88,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,17,480,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,17,465,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,17,394,89,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,17,492,103,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,17,466,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,17,466,99,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,17,480,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,17,474,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,17,485,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,17,500,98,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,25,524,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,25,542,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,25,447,100,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,25,564,112,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,25,534,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,25,528,110,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,25,538,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,25,528,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,25,572,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,25,551,109,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,38,590,120,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,38,601,120,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,38,500,111,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,38,623,126,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,38,609,121,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,38,607,122,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,38,623,124,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,38,629,123,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,38,638,123,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,38,601,120,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,57,658,131,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,57,662,131,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,57,554,122,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,57,701,137,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,57,676,132,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,57,671,132,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,57,691,137,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,57,717,135,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,57,700,135,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,57,676,132,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,86,697,143,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,86,735,143,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,86,649,134,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,86,782,149,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,86,724,145,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,86,755,145,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,86,765,148,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,86,802,147,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,86,777,147,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,86,749,145,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,129,743,153,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,129,780,153,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,129,689,143,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,129,837,161,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,129,809,156,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,129,804,156,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,129,844,162,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,129,867,159,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,129,847,159,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,129,838,157,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,194,846,165,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,194,830,165,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,194,722,156,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,194,884,171,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,194,853,167,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,194,883,168,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,194,918,173,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,194,924,170,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,194,916,170,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,194,941,168,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,291,884,176,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,291,895,176,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,291,822,166,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,291,963,184,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,291,925,179,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,291,947,180,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,291,988,185,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,291,1001,183,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,291,964,182,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,291,990,180,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,437,945,187,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,437,952,187,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,437,859,177,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,437,1027,194,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,437,1003,189,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,437,993,189,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,437,1033,197,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,437,1070,194,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,437,1024,193,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,437,1053,193,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,656,1009,199,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,656,1000,199,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,656,933,189,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,656,1085,206,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,656,1068,201,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,656,1071,202,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,656,1107,207,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,656,1122,205,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,656,1081,205,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,656,1099,204,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,985,1061,209,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,985,1062,209,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,985,970,199,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,985,1149,218,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,985,1107,212,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,985,1132,213,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,985,1179,220,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,985,1194,217,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,985,1155,216,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,985,1175,217,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,1477,1131,221,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,1477,1129,221,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,1477,1040,211,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,1477,1218,227,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,1477,1188,223,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,1477,1185,224,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,1477,1239,230,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,1477,1260,227,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,1477,1207,227,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,1477,1250,229,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,2216,1183,231,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,2216,1194,231,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,2216,1117,222,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,2216,1294,240,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,2216,1251,235,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,2216,1249,236,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,2216,1324,242,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,2216,1329,240,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,2216,1305,239,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,2216,1318,240,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,3325,1277,243,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,3325,1271,243,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,3325,1198,233,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,3325,1390,250,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,3325,1322,245,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,3325,1322,246,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,3325,1398,253,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,3325,1419,250,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,3325,1364,249,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,3325,1409,252,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,4987,1362,254,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,4987,1358,254,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,4987,1305,245,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,4987,1457,262,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,4987,1428,257,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,4987,1412,258,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,4987,1475,264,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,4987,1494,261,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,4987,1465,261,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,4987,1482,262,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,7481,1480,265,2,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,7481,1457,265,2,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,7481,1395,255,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,7481,1575,273,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,7481,1528,268,1,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,7481,1520,268,1,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,7481,1606,276,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,7481,1613,273,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,7481,1568,272,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,7481,1631,275,0,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,11222,1596,221,49,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,11222,1633,221,49,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,11222,1500,221,45,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,11222,1756,225,60,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,11222,1704,222,54,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,11222,1660,222,54,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,11222,1772,233,57,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,11222,1810,222,57,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,11222,1733,221,56,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,11222,1843,227,58,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,16834,1769,197,59,3
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,16834,1837,197,59,3
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,16834,1695,189,47,2
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,16834,2000,163,70,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,16834,1876,190,64,1
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,16834,1860,189,59,2
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,16834,1959,200,63,1
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,16834,2057,165,69,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,16834,1978,176,65,0
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,16834,1989,189,65,2
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,25251,1874,203,62,5
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,25251,1883,203,62,5
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,25251,1756,197,62,3
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,25251,1961,217,56,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,25251,1918,208,54,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,25251,1909,209,63,5
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,25251,1971,230,59,5
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,25251,2033,222,48,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,25251,1944,207,63,3
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,25251,2012,226,61,4
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,37876,2059,217,31,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,37876,2059,217,31,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,37876,1926,195,29,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,37876,2114,222,25,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,37876,2090,241,29,11
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,37876,2064,238,34,11
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,37876,2098,216,25,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,37876,2153,223,26,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,37876,2147,223,29,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,37876,2131,213,28,13
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,56815,2133,228,19,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,56815,2155,228,19,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,56815,2057,191,25,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,56815,2231,215,22,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,56815,2150,202,22,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,56815,2148,203,23,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,56815,2256,209,26,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,56815,2262,221,22,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,56815,2216,221,23,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,56815,2269,219,23,11
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,85222,2234,214,20,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,85222,2292,214,20,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,85222,2177,175,21,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,85222,2293,236,19,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,85222,2256,222,20,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,85222,2253,204,23,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,85222,2287,238,23,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,85222,2324,228,20,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,85222,2308,222,22,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,85222,2357,235,18,8
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,127834,2285,229,27,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,127834,2287,229,27,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,127834,2223,203,19,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,127834,2415,240,25,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,127834,2398,235,28,13
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,127834,2317,232,21,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,127834,2398,244,21,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,127834,2473,243,23,11
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,127834,2418,244,25,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,127834,2458,242,24,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,191751,2664,254,97,24
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,191751,2664,254,97,24
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,191751,2426,231,49,14
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,191751,2547,262,49,14
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,191751,2405,260,34,12
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,191751,2585,268,67,22
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,191751,2596,274,72,17
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,191751,2656,268,69,18
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,191751,2682,270,78,23
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,191751,2722,271,68,19
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,287626,2371,257,77,10
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,287626,2454,256,78,11
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,287626,2437,239,100,22
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,287626,2596,274,97,22
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,287626,2530,277,125,22
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,287626,2430,271,106,16
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,287626,2561,281,114,22
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,287626,2638,281,123,21
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,287626,2581,288,145,21
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,287626,2609,284,118,22
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,431439,2299,244,39,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,431439,2317,244,39,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,431439,2219,231,38,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,431439,2360,250,39,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,431439,2340,245,38,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,431439,2309,250,39,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,431439,2344,255,38,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,431439,2391,252,42,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,431439,2366,252,41,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,431439,2422,253,40,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,0,647159,2164,229,37,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,1,647159,2161,229,37,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,2,647159,2065,219,37,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,3,647159,2216,234,35,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,4,647159,2177,232,38,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,5,647159,2161,232,38,7
ImmutableSortedDictionary,Fast,Stripes,32-bit,6,647159,2206,239,36,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,7,647159,2295,239,46,9
ImmutableSortedDictionary,Fast,Stripes,32-bit,8,647159,2223,236,38,6
ImmutableSortedDictionary,Fast,Stripes,32-bit,9,647159,2269,235,39,7
ImmutableSortedDictionary,Fast,Random,32-bit,0,1,147,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,1,162,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,1,144,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,1,149,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,1,146,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,1,149,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,1,147,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,1,146,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,1,153,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,1,146,38,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,2,172,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,2,170,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,2,181,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,2,168,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,2,167,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,2,166,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,2,169,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,2,170,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,2,172,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,2,171,47,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,3,237,57,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,3,178,50,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,3,231,57,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,3,224,57,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,3,189,50,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,3,237,57,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,3,175,50,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,3,239,57,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,3,265,57,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,3,180,50,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,5,291,68,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,5,276,64,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,5,257,64,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,5,249,64,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,5,255,64,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,5,298,68,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,5,273,61,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,5,304,68,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,5,268,64,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,5,220,61,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,7,342,76,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,7,326,73,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,7,297,70,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,7,308,70,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,7,299,73,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,7,316,76,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,7,273,70,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,7,312,73,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,7,334,73,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,7,277,70,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,11,402,86,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,11,355,83,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,11,337,81,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,11,354,83,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,11,365,86,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,11,362,84,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,11,373,84,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,11,340,81,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,11,364,83,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,11,331,81,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,17,438,95,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,17,394,92,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,17,395,92,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,17,399,92,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,17,434,96,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,17,438,95,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,17,451,96,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,17,394,90,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,17,449,95,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,17,392,93,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,25,495,103,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,25,453,100,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,25,468,102,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,25,448,99,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,25,516,106,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,25,495,106,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,25,487,105,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,25,491,101,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,25,493,105,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,25,465,104,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,38,570,114,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,38,527,111,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,38,547,113,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,38,562,112,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,38,599,117,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,38,568,115,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,38,568,114,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,38,550,114,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,38,566,115,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,38,583,116,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,57,627,125,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,57,611,123,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,57,654,126,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,57,610,123,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,57,643,127,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,57,663,126,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,57,647,125,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,57,613,125,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,57,630,126,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,57,670,127,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,86,735,137,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,86,721,133,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,86,716,137,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,86,688,134,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,86,743,137,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,86,745,137,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,86,712,135,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,86,695,135,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,86,723,137,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,86,748,137,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,129,827,148,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,129,810,145,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,129,831,147,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,129,816,145,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,129,825,148,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,129,801,146,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,129,819,147,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,129,804,146,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,129,847,147,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,129,831,147,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,194,950,159,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,194,924,157,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,194,932,158,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,194,934,157,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,194,954,160,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,194,908,157,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,194,933,160,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,194,938,158,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,194,938,158,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,194,916,157,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,291,1040,170,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,291,1019,168,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,291,1039,170,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,291,1028,169,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,291,1047,171,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,291,1035,169,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,291,1046,171,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,291,1042,169,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,291,1044,168,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,291,1027,170,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,437,1143,181,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,437,1117,180,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,437,1149,181,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,437,1150,180,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,437,1137,181,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,437,1124,181,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,437,1135,181,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,437,1183,181,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,437,1149,180,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,437,1148,182,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,656,1234,192,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,656,1247,192,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,656,1244,193,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,656,1218,192,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,656,1226,192,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,656,1248,193,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,656,1232,193,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,656,1223,192,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,656,1237,191,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,656,1244,193,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,985,1314,203,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,985,1309,203,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,985,1308,205,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,985,1320,204,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,985,1344,204,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,985,1327,204,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,985,1319,204,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,985,1334,206,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,985,1320,203,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,985,1339,204,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,1477,1391,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,1477,1402,214,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,1477,1418,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,1477,1396,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,1477,1439,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,1477,1409,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,1477,1407,216,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,1477,1418,216,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,1477,1420,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,1477,1422,215,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,2216,1511,226,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,2216,1483,226,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,2216,1520,227,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,2216,1503,226,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,2216,1534,226,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,2216,1497,227,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,2216,1517,227,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,2216,1506,227,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,2216,1534,226,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,2216,1495,226,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,3325,1639,237,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,3325,1602,237,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,3325,1640,238,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,3325,1625,237,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,3325,1614,237,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,3325,1616,238,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,3325,1597,238,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,3325,1622,238,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,3325,1614,238,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,3325,1609,237,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,4987,1724,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,4987,1738,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,4987,1745,250,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,4987,1738,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,4987,1752,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,4987,1753,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,4987,1748,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,4987,1763,250,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,4987,1744,250,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,4987,1730,249,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,7481,1876,261,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,7481,1891,260,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,7481,1887,261,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,7481,1868,260,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,7481,1926,260,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,7481,1875,260,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,7481,1871,261,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,7481,1885,261,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,7481,1916,261,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,7481,1891,260,0,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,11222,2034,222,51,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,11222,2006,223,47,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,11222,2039,223,49,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,11222,2037,223,52,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,11222,2034,223,49,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,11222,2013,222,51,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,11222,2021,223,53,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,11222,2031,222,47,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,11222,2041,222,48,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,11222,2026,223,51,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,16834,2298,175,56,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,16834,2265,175,56,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,16834,2254,175,57,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,16834,2272,175,56,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,16834,2277,178,57,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,16834,2270,174,57,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,16834,2264,176,57,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,16834,2305,176,54,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,16834,2285,175,56,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,16834,2264,173,58,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,25251,2406,194,91,0
ImmutableSortedDictionary,Fast,Random,32-bit,1,25251,2394,194,90,0
ImmutableSortedDictionary,Fast,Random,32-bit,2,25251,2418,195,91,0
ImmutableSortedDictionary,Fast,Random,32-bit,3,25251,2429,194,91,0
ImmutableSortedDictionary,Fast,Random,32-bit,4,25251,2409,193,85,0
ImmutableSortedDictionary,Fast,Random,32-bit,5,25251,2439,193,81,0
ImmutableSortedDictionary,Fast,Random,32-bit,6,25251,2415,194,92,0
ImmutableSortedDictionary,Fast,Random,32-bit,7,25251,2418,196,92,0
ImmutableSortedDictionary,Fast,Random,32-bit,8,25251,2434,195,89,0
ImmutableSortedDictionary,Fast,Random,32-bit,9,25251,2408,193,90,0
ImmutableSortedDictionary,Fast,Random,32-bit,0,37876,2744,179,66,10
ImmutableSortedDictionary,Fast,Random,32-bit,1,37876,2720,177,66,11
ImmutableSortedDictionary,Fast,Random,32-bit,2,37876,2704,177,66,11
ImmutableSortedDictionary,Fast,Random,32-bit,3,37876,2716,179,66,10
ImmutableSortedDictionary,Fast,Random,32-bit,4,37876,2728,177,66,11
ImmutableSortedDictionary,Fast,Random,32-bit,5,37876,2709,179,66,10
ImmutableSortedDictionary,Fast,Random,32-bit,6,37876,2733,177,66,11
ImmutableSortedDictionary,Fast,Random,32-bit,7,37876,2776,175,66,11
ImmutableSortedDictionary,Fast,Random,32-bit,8,37876,2744,178,66,10
ImmutableSortedDictionary,Fast,Random,32-bit,9,37876,2638,184,65,8
ImmutableSortedDictionary,Fast,Random,32-bit,0,56815,3001,178,63,14
ImmutableSortedDictionary,Fast,Random,32-bit,1,56815,3005,178,62,15
ImmutableSortedDictionary,Fast,Random,32-bit,2,56815,2989,179,65,13
ImmutableSortedDictionary,Fast,Random,32-bit,3,56815,2993,179,74,14
ImmutableSortedDictionary,Fast,Random,32-bit,4,56815,2995,178,66,15
ImmutableSortedDictionary,Fast,Random,32-bit,5,56815,3009,177,65,13
ImmutableSortedDictionary,Fast,Random,32-bit,6,56815,3005,179,71,14
ImmutableSortedDictionary,Fast,Random,32-bit,7,56815,3002,180,65,14
ImmutableSortedDictionary,Fast,Random,32-bit,8,56815,3003,179,66,14
ImmutableSortedDictionary,Fast,Random,32-bit,9,56815,2994,177,64,15
ImmutableSortedDictionary,Fast,Random,32-bit,0,85222,3370,178,58,24
ImmutableSortedDictionary,Fast,Random,32-bit,1,85222,3396,179,55,23
ImmutableSortedDictionary,Fast,Random,32-bit,2,85222,3363,178,54,22
ImmutableSortedDictionary,Fast,Random,32-bit,3,85222,3354,179,56,23
ImmutableSortedDictionary,Fast,Random,32-bit,4,85222,3370,179,56,23
ImmutableSortedDictionary,Fast,Random,32-bit,5,85222,3366,178,55,24
ImmutableSortedDictionary,Fast,Random,32-bit,6,85222,3419,179,57,24
ImmutableSortedDictionary,Fast,Random,32-bit,7,85222,3371,179,58,24
ImmutableSortedDictionary,Fast,Random,32-bit,8,85222,3403,178,53,22
ImmutableSortedDictionary,Fast,Random,32-bit,9,85222,3345,179,57,23
ImmutableSortedDictionary,Fast,Random,32-bit,0,127834,3817,180,58,20
ImmutableSortedDictionary,Fast,Random,32-bit,1,127834,3811,178,58,20
ImmutableSortedDictionary,Fast,Random,32-bit,2,127834,3826,178,60,21
ImmutableSortedDictionary,Fast,Random,32-bit,3,127834,3810,181,58,20
ImmutableSortedDictionary,Fast,Random,32-bit,4,127834,3806,179,60,20
ImmutableSortedDictionary,Fast,Random,32-bit,5,127834,3818,178,58,20
ImmutableSortedDictionary,Fast,Random,32-bit,6,127834,3840,179,60,20
ImmutableSortedDictionary,Fast,Random,32-bit,7,127834,3847,181,59,20
ImmutableSortedDictionary,Fast,Random,32-bit,8,127834,3897,180,59,20
ImmutableSortedDictionary,Fast,Random,32-bit,9,127834,3791,179,58,20
ImmutableSortedDictionary,Fast,Random,32-bit,0,191751,4648,198,104,35
ImmutableSortedDictionary,Fast,Random,32-bit,1,191751,4678,197,103,36
ImmutableSortedDictionary,Fast,Random,32-bit,2,191751,4606,198,104,35
ImmutableSortedDictionary,Fast,Random,32-bit,3,191751,4647,198,104,35
ImmutableSortedDictionary,Fast,Random,32-bit,4,191751,4643,198,104,35
ImmutableSortedDictionary,Fast,Random,32-bit,5,191751,4661,196,105,36
ImmutableSortedDictionary,Fast,Random,32-bit,6,191751,4625,198,104,35
ImmutableSortedDictionary,Fast,Random,32-bit,7,191751,4669,198,103,36
ImmutableSortedDictionary,Fast,Random,32-bit,8,191751,4613,197,102,35
ImmutableSortedDictionary,Fast,Random,32-bit,9,191751,4669,197,105,36
ImmutableSortedDictionary,Fast,Random,32-bit,0,287626,4762,193,67,30
ImmutableSortedDictionary,Fast,Random,32-bit,1,287626,4705,193,67,29
ImmutableSortedDictionary,Fast,Random,32-bit,2,287626,4705,194,68,29
ImmutableSortedDictionary,Fast,Random,32-bit,3,287626,4752,195,69,30
ImmutableSortedDictionary,Fast,Random,32-bit,4,287626,4710,194,68,30
ImmutableSortedDictionary,Fast,Random,32-bit,5,287626,4725,192,68,29
ImmutableSortedDictionary,Fast,Random,32-bit,6,287626,4694,194,68,29
ImmutableSortedDictionary,Fast,Random,32-bit,7,287626,4750,194,69,29
ImmutableSortedDictionary,Fast,Random,32-bit,8,287626,4733,194,68,30
ImmutableSortedDictionary,Fast,Random,32-bit,9,287626,4685,194,67,30
ImmutableSortedDictionary,Fast,Random,32-bit,0,431439,5129,203,76,33
ImmutableSortedDictionary,Fast,Random,32-bit,1,431439,5130,203,78,33
ImmutableSortedDictionary,Fast,Random,32-bit,2,431439,5075,204,76,33
ImmutableSortedDictionary,Fast,Random,32-bit,3,431439,5106,204,78,34
ImmutableSortedDictionary,Fast,Random,32-bit,4,431439,5055,204,78,34
ImmutableSortedDictionary,Fast,Random,32-bit,5,431439,5163,202,76,33
ImmutableSortedDictionary,Fast,Random,32-bit,6,431439,5125,203,76,33
ImmutableSortedDictionary,Fast,Random,32-bit,7,431439,5093,205,80,34
ImmutableSortedDictionary,Fast,Random,32-bit,8,431439,5128,204,78,34
ImmutableSortedDictionary,Fast,Random,32-bit,9,431439,5123,204,78,34
ImmutableSortedDictionary,Fast,Random,32-bit,0,647159,5393,202,79,33
ImmutableSortedDictionary,Fast,Random,32-bit,1,647159,5418,205,83,36
ImmutableSortedDictionary,Fast,Random,32-bit,2,647159,5355,205,84,37
ImmutableSortedDictionary,Fast,Random,32-bit,3,647159,5394,205,84,37
ImmutableSortedDictionary,Fast,Random,32-bit,4,647159,5373,203,82,35
ImmutableSortedDictionary,Fast,Random,32-bit,5,647159,5448,204,82,35
ImmutableSortedDictionary,Fast,Random,32-bit,6,647159,5346,203,83,34
ImmutableSortedDictionary,Fast,Random,32-bit,7,647159,5442,204,83,36
ImmutableSortedDictionary,Fast,Random,32-bit,8,647159,5454,205,82,35
ImmutableSortedDictionary,Fast,Random,32-bit,9,647159,5425,204,84,36
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,1,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,1,31,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,1,30,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,1,28,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,1,33,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,1,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,1,31,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,1,31,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,1,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,1,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,2,33,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,2,33,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,2,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,2,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,2,33,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,2,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,2,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,2,34,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,2,32,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,2,33,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,3,50,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,3,52,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,3,34,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,3,51,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,3,51,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,3,48,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,3,50,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,3,49,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,3,72,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,3,55,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,5,61,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,5,61,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,5,42,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,5,65,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,5,57,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,5,62,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,5,60,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,5,58,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,5,61,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,5,59,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,7,72,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,7,71,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,7,68,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,7,62,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,7,67,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,7,71,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,7,70,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,7,69,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,7,82,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,7,69,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,11,84,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,11,84,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,11,68,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,11,95,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,11,80,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,11,80,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,11,85,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,11,97,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,11,82,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,11,82,1,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,17,97,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,17,108,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,17,83,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,17,103,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,17,96,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,17,109,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,17,92,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,17,97,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,17,96,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,17,104,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,25,109,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,25,110,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,25,95,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,25,125,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,25,110,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,25,114,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,25,108,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,25,106,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,25,118,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,25,111,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,38,126,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,38,123,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,38,110,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,38,132,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,38,128,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,38,125,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,38,128,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,38,150,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,38,127,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,38,128,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,57,134,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,57,135,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,57,129,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,57,145,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,57,137,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,57,137,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,57,172,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,57,142,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,57,144,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,57,137,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,86,173,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,86,153,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,86,142,2,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,86,161,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,86,158,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,86,162,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,86,159,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,86,164,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,86,161,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,86,162,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,129,167,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,129,162,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,129,150,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,129,189,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,129,171,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,129,169,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,129,182,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,129,184,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,129,175,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,129,175,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,194,185,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,194,188,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,194,168,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,194,190,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,194,180,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,194,193,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,194,195,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,194,189,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,194,209,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,194,185,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,291,196,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,291,194,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,291,193,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,291,207,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,291,201,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,291,206,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,291,211,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,291,202,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,291,205,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,291,213,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,437,209,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,437,210,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,437,225,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,437,223,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,437,217,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,437,215,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,437,225,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,437,226,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,437,219,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,437,232,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,656,229,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,656,230,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,656,223,3,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,656,238,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,656,232,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,656,248,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,656,244,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,656,239,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,656,251,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,656,238,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,985,237,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,985,251,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,985,226,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,985,253,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,985,259,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,985,245,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,985,251,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,985,271,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,985,252,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,985,253,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,1477,265,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,1477,245,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,1477,231,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,1477,267,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,1477,249,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,1477,261,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,1477,260,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,1477,259,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,1477,256,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,1477,258,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,2216,270,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,2216,272,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,2216,254,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,2216,277,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,2216,274,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,2216,272,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,2216,288,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,2216,280,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,2216,291,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,2216,281,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,3325,274,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,3325,285,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,3325,260,4,0,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,3325,293,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,3325,270,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,3325,285,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,3325,290,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,3325,295,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,3325,283,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,3325,295,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,4987,311,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,4987,316,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,4987,293,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,4987,343,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,4987,313,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,4987,313,4,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,4987,325,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,4987,322,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,4987,335,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,4987,324,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,7481,289,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,7481,306,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,7481,273,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,7481,321,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,7481,295,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,7481,296,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,7481,318,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,7481,300,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,7481,320,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,7481,305,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,11222,319,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,11222,308,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,11222,324,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,11222,318,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,11222,310,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,11222,322,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,11222,316,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,11222,337,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,11222,312,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,11222,314,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,16834,240,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,16834,242,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,16834,232,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,16834,256,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,16834,245,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,16834,245,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,16834,258,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,16834,251,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,16834,251,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,16834,263,2,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,25251,378,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,25251,398,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,25251,358,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,25251,409,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,25251,386,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,25251,393,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,25251,390,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,25251,393,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,25251,381,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,25251,392,3,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,37876,590,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,37876,601,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,37876,568,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,37876,631,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,37876,611,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,37876,594,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,37876,628,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,37876,616,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,37876,601,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,37876,619,5,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,56815,935,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,56815,931,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,56815,895,7,1,0
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,56815,961,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,56815,919,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,56815,923,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,56815,960,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,56815,947,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,56815,945,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,56815,954,8,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,85222,1434,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,85222,1445,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,85222,1390,11,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,85222,1475,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,85222,1464,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,85222,1455,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,85222,1489,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,85222,1467,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,85222,1479,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,85222,1464,12,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,127834,2225,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,127834,2231,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,127834,2169,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,127834,2298,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,127834,2252,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,127834,2276,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,127834,2330,19,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,127834,2298,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,127834,2285,18,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,127834,2314,19,2,1
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,191751,3516,29,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,191751,3519,29,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,191751,3368,28,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,191751,3567,30,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,191751,3511,29,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,191751,3516,29,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,191751,3583,30,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,191751,3590,29,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,191751,3545,29,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,191751,3597,30,5,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,287626,5401,44,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,287626,5371,44,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,287626,5257,43,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,287626,5547,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,287626,5443,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,287626,5462,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,287626,5561,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,287626,5527,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,287626,5530,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,287626,5564,45,7,2
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,431439,8379,69,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,431439,8358,69,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,431439,8074,67,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,431439,8510,70,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,431439,8392,69,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,431439,8396,69,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,431439,8587,71,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,431439,8537,70,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,431439,8496,70,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,431439,8627,71,10,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,0,647159,12945,105,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,1,647159,12878,105,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,2,647159,12564,103,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,3,647159,13176,107,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,4,647159,13018,106,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,5,647159,13054,106,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,6,647159,13326,108,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,7,647159,13193,107,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,8,647159,13232,107,14,3
ImmutableSortedDictionary,Slow,Stripes,64-bit,9,647159,13262,107,14,3
ImmutableSortedDictionary,Slow,Random,64-bit,0,1,31,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,1,31,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,1,34,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,1,31,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,1,30,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,1,30,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,1,31,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,1,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,1,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,1,30,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,2,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,2,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,2,35,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,2,33,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,2,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,2,36,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,2,35,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,2,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,2,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,2,31,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,3,51,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,3,34,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,3,50,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,3,51,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,3,33,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,3,53,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,3,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,3,52,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,3,51,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,3,32,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,5,66,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,5,49,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,5,54,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,5,53,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,5,48,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,5,65,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,5,44,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,5,64,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,5,54,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,5,45,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,7,65,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,7,72,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,7,63,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,7,56,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,7,64,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,7,71,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,7,55,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,7,75,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,7,68,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,7,56,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,11,78,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,11,74,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,11,98,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,11,75,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,11,77,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,11,79,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,11,77,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,11,84,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,11,78,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,11,69,1,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,17,90,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,17,84,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,17,90,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,17,87,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,17,93,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,17,90,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,17,92,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,17,87,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,17,88,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,17,83,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,25,100,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,25,98,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,25,102,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,25,94,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,25,103,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,25,105,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,25,104,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,25,103,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,25,107,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,25,101,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,38,114,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,38,109,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,38,117,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,38,111,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,38,123,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,38,116,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,38,118,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,38,118,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,38,115,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,38,115,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,57,129,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,57,132,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,57,132,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,57,126,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,57,130,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,57,138,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,57,129,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,57,129,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,57,128,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,57,129,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,86,147,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,86,138,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,86,144,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,86,144,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,86,151,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,86,147,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,86,143,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,86,144,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,86,146,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,86,144,2,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,129,160,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,129,169,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,129,158,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,129,158,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,129,157,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,129,166,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,129,162,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,129,160,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,129,159,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,129,174,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,194,173,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,194,169,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,194,175,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,194,177,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,194,171,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,194,174,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,194,183,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,194,173,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,194,175,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,194,171,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,291,189,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,291,189,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,291,192,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,291,207,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,291,189,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,291,188,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,291,193,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,291,191,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,291,183,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,291,186,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,437,211,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,437,201,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,437,207,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,437,209,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,437,205,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,437,205,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,437,208,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,437,204,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,437,202,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,437,207,3,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,656,221,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,656,218,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,656,225,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,656,214,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,656,222,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,656,225,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,656,223,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,656,224,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,656,220,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,656,226,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,985,244,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,985,234,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,985,233,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,985,238,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,985,235,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,985,235,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,985,237,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,985,237,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,985,230,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,985,234,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,1477,246,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,1477,238,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,1477,238,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,1477,238,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,1477,246,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,1477,238,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,1477,246,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,1477,246,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,1477,242,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,1477,241,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,2216,265,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,2216,261,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,2216,259,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,2216,266,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,2216,264,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,2216,266,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,2216,266,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,2216,264,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,2216,264,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,2216,261,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,3325,265,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,3325,269,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,3325,292,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,3325,266,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,3325,267,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,3325,287,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,3325,268,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,3325,270,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,3325,272,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,3325,266,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,4987,310,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,4987,303,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,4987,306,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,4987,307,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,4987,305,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,4987,302,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,4987,305,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,4987,323,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,4987,301,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,4987,314,4,0,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,7481,290,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,7481,291,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,7481,310,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,7481,294,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,7481,302,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,7481,290,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,7481,289,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,7481,293,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,7481,298,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,7481,315,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,11222,308,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,11222,302,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,11222,313,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,11222,307,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,11222,310,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,11222,301,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,11222,307,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,11222,308,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,11222,325,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,11222,306,4,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,16834,248,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,16834,246,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,16834,246,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,16834,262,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,16834,243,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,16834,239,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,16834,259,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,16834,244,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,16834,245,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,16834,245,3,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,25251,378,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,25251,382,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,25251,375,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,25251,380,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,25251,378,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,25251,374,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,25251,381,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,25251,382,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,25251,382,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,25251,371,5,1,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,37876,616,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,37876,598,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,37876,613,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,37876,619,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,37876,593,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,37876,625,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,37876,620,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,37876,601,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,37876,595,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,37876,619,8,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,56815,949,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,1,56815,954,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,2,56815,954,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,3,56815,949,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,4,56815,966,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,5,56815,940,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,6,56815,950,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,7,56815,949,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,8,56815,962,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,9,56815,955,11,2,0
ImmutableSortedDictionary,Slow,Random,64-bit,0,85222,1512,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,1,85222,1485,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,2,85222,1515,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,3,85222,1499,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,4,85222,1510,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,5,85222,1494,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,6,85222,1512,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,7,85222,1487,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,8,85222,1488,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,9,85222,1525,19,6,2
ImmutableSortedDictionary,Slow,Random,64-bit,0,127834,2378,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,1,127834,2366,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,2,127834,2397,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,3,127834,2379,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,4,127834,2366,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,5,127834,2370,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,6,127834,2368,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,7,127834,2408,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,8,127834,2389,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,9,127834,2375,30,9,3
ImmutableSortedDictionary,Slow,Random,64-bit,0,191751,3669,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,1,191751,3732,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,2,191751,3703,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,3,191751,3727,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,4,191751,3719,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,5,191751,3712,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,6,191751,3724,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,7,191751,3741,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,8,191751,3702,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,9,191751,3715,44,11,3
ImmutableSortedDictionary,Slow,Random,64-bit,0,287626,5809,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,1,287626,5805,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,2,287626,5786,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,3,287626,5821,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,4,287626,5797,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,5,287626,5810,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,6,287626,5824,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,7,287626,5832,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,8,287626,5805,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,9,287626,5794,67,16,5
ImmutableSortedDictionary,Slow,Random,64-bit,0,431439,9262,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,1,431439,9264,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,2,431439,9293,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,3,431439,9357,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,4,431439,9270,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,5,431439,9253,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,6,431439,9230,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,7,431439,9267,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,8,431439,9234,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,9,431439,9195,103,25,9
ImmutableSortedDictionary,Slow,Random,64-bit,0,647159,14276,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,1,647159,14300,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,2,647159,14315,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,3,647159,14252,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,4,647159,14256,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,5,647159,14269,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,6,647159,14303,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,7,647159,14290,156,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,8,647159,14348,155,36,11
ImmutableSortedDictionary,Slow,Random,64-bit,9,647159,14280,155,36,11
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,1,132,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,1,131,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,1,131,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,1,134,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,1,136,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,1,129,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,1,139,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,1,132,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,1,150,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,1,131,69,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,2,168,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,2,167,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,2,189,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,2,169,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,2,172,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,2,167,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,2,190,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,2,166,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,2,172,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,2,171,85,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,3,242,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,3,222,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,3,173,91,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,3,220,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,3,220,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,3,216,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,3,216,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,3,229,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,3,220,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,3,214,101,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,5,279,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,5,272,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,5,216,108,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,5,296,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,5,270,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,5,281,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,5,270,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,5,286,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,5,269,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,5,268,120,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,7,347,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,7,321,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,7,255,119,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,7,338,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,7,299,128,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,7,343,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,7,322,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,7,324,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,7,325,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,7,320,133,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,11,401,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,11,380,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,11,306,139,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,11,401,156,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,11,361,150,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,11,391,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,11,380,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,11,390,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,11,379,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,11,392,153,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,17,431,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,17,441,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,17,355,155,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,17,485,178,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,17,431,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,17,453,172,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,17,424,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,17,461,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,17,439,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,17,450,170,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,25,483,189,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,25,490,189,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,25,419,174,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,25,523,194,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,25,506,189,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,25,500,190,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,25,516,189,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,25,490,188,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,25,524,189,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,25,502,189,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,38,554,207,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,38,563,207,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,38,494,192,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,38,600,217,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,38,572,209,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,38,584,211,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,38,579,213,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,38,582,212,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,38,582,212,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,38,566,207,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,57,613,225,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,57,612,225,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,57,514,209,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,57,667,236,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,57,613,227,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,57,621,227,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,57,672,235,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,57,659,232,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,57,629,232,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,57,647,226,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,86,670,245,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,86,650,245,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,86,601,229,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,86,733,255,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,86,682,248,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,86,685,249,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,86,726,254,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,86,737,252,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,86,722,252,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,86,676,248,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,129,700,261,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,129,726,261,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,129,612,245,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,129,786,275,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,129,774,267,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,129,771,267,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,129,814,276,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,129,807,272,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,129,781,272,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,129,754,268,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,194,765,282,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,194,769,282,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,194,701,266,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,194,855,291,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,194,808,285,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,194,817,286,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,194,870,294,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,194,876,290,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,194,838,289,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,194,857,287,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,291,818,300,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,291,803,300,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,291,734,284,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,291,928,313,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,291,893,305,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,291,891,306,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,291,934,315,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,291,937,311,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,291,895,311,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,291,919,307,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,437,862,318,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,437,864,318,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,437,797,302,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,437,939,331,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,437,932,321,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,437,923,322,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,437,979,334,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,437,1010,330,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,437,954,328,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,437,980,329,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,656,909,338,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,656,904,338,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,656,845,322,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,656,1018,350,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,656,1003,342,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,656,986,343,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,656,1029,352,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,656,1053,348,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,656,1014,348,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,656,1048,346,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,985,968,354,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,985,967,354,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,985,917,338,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,985,1084,369,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,985,1057,361,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,985,1042,361,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,985,1105,373,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,985,1125,369,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,985,1083,367,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,985,1108,368,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,1477,1035,375,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,1477,1020,375,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,1477,980,359,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,1477,1128,386,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,1477,1117,379,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,1477,1112,380,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,1477,1161,390,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,1477,1188,385,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,1477,1144,384,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,1477,1178,388,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,2216,1106,392,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,2216,1086,392,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,2216,1060,376,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,2216,1207,407,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,2216,1204,399,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,2216,1177,399,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,2216,1247,410,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,2216,1260,406,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,2216,1223,405,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,2216,1250,406,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,3325,1172,411,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,3325,1188,411,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,3325,1137,395,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,3325,1314,423,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,3325,1243,415,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,3325,1249,416,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,3325,1325,428,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,3325,1336,424,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,3325,1286,421,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,3325,1350,426,0,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,4987,1301,425,40,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,4987,1320,425,40,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,4987,1281,411,26,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,4987,1407,441,23,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,4987,1391,433,26,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,4987,1363,434,20,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,4987,1458,442,30,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,4987,1456,440,27,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,4987,1436,438,33,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,4987,1469,441,17,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,7481,1469,334,91,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,7481,1489,334,91,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,7481,1366,333,80,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,7481,1573,363,85,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,7481,1504,348,89,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,7481,1525,347,92,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,7481,1584,363,92,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,7481,1615,361,91,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,7481,1577,355,89,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,7481,1607,365,92,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,11222,1604,313,106,1
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,11222,1572,313,106,1
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,11222,1510,266,106,0
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,11222,1692,339,96,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,11222,1609,340,92,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,11222,1632,332,99,4
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,11222,1706,340,102,2
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,11222,1725,340,102,2
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,11222,1684,336,103,3
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,11222,1757,349,94,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,16834,1631,320,96,1
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,16834,1634,320,96,1
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,16834,1575,296,81,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,16834,1755,331,91,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,16834,1692,317,96,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,16834,1680,318,97,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,16834,1748,345,87,11
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,16834,1807,332,84,14
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,16834,1748,338,97,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,16834,1810,346,92,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,25251,1728,310,46,17
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,25251,1753,310,46,17
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,25251,1679,296,55,13
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,25251,1849,317,33,16
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,25251,1766,326,44,17
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,25251,1778,385,33,16
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,25251,1855,332,39,15
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,25251,1903,316,33,16
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,25251,1855,314,39,15
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,25251,1860,324,42,16
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,37876,1847,285,30,11
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,37876,1869,285,30,11
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,37876,1735,303,33,13
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,37876,1940,329,36,15
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,37876,1874,320,32,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,37876,1850,322,30,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,37876,1909,361,33,14
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,37876,1972,326,43,19
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,37876,1908,329,35,15
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,37876,1966,338,31,13
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,56815,1885,317,25,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,56815,1905,317,25,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,56815,1813,283,26,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,56815,1989,359,24,10
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,56815,1918,317,27,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,56815,1888,320,22,11
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,56815,2014,370,28,13
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,56815,2036,354,24,12
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,56815,1969,340,23,10
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,56815,2049,367,25,11
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,85222,1963,349,20,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,85222,1958,349,20,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,85222,1943,307,20,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,85222,2076,376,24,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,85222,2007,371,21,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,85222,1973,364,19,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,85222,2134,386,22,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,85222,2100,381,28,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,85222,2039,378,19,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,85222,2119,374,21,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,127834,2016,370,23,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,127834,2019,372,24,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,127834,1929,337,23,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,127834,2119,404,26,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,127834,2089,387,28,10
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,127834,2016,389,26,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,127834,2111,399,21,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,127834,2154,399,24,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,127834,2072,395,23,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,127834,2157,405,24,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,191751,2165,407,21,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,191751,2150,407,21,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,191751,2083,384,21,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,191751,2252,424,20,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,191751,2174,423,24,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,191751,2172,419,22,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,191751,2326,435,23,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,191751,2408,435,22,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,191751,2362,424,22,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,191751,2438,437,24,9
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,287626,2211,399,29,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,287626,2223,397,24,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,287626,2124,381,25,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,287626,2151,422,24,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,287626,2123,418,24,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,287626,2092,411,24,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,287626,2155,426,25,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,287626,2197,424,24,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,287626,2170,415,27,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,287626,2215,427,23,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,431439,1996,400,23,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,431439,1983,398,22,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,431439,1979,376,21,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,431439,2119,412,21,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,431439,2029,409,26,8
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,431439,2012,405,22,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,431439,2109,417,23,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,431439,2124,418,23,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,431439,2052,415,21,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,431439,2156,418,21,7
ImmutableSortedDictionary,Fast,Stripes,64-bit,0,647159,1861,370,23,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,1,647159,1882,371,23,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,2,647159,1809,357,21,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,3,647159,1941,381,24,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,4,647159,1925,383,24,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,5,647159,1843,374,23,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,6,647159,1940,378,24,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,7,647159,1939,386,23,5
ImmutableSortedDictionary,Fast,Stripes,64-bit,8,647159,1960,377,23,6
ImmutableSortedDictionary,Fast,Stripes,64-bit,9,647159,1977,387,23,5
ImmutableSortedDictionary,Fast,Random,64-bit,0,1,134,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,1,134,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,1,134,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,1,158,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,1,136,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,1,137,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,1,133,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,1,139,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,1,134,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,1,135,69,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,2,165,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,2,167,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,2,161,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,2,170,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,2,159,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,2,165,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,2,194,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,2,162,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,2,169,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,2,168,85,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,3,237,101,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,3,172,91,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,3,223,101,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,3,215,101,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,3,173,91,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,3,221,101,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,3,177,91,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,3,240,101,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,3,236,101,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,3,173,91,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,5,274,120,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,5,247,114,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,5,250,114,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,5,239,114,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,5,239,114,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,5,280,120,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,5,213,108,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,5,289,120,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,5,255,114,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,5,214,108,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,7,314,133,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,7,306,128,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,7,278,124,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,7,270,124,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,7,302,128,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,7,301,133,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,7,263,124,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,7,292,128,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,7,298,128,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,7,279,124,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,11,364,150,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,11,332,145,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,11,332,142,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,11,337,145,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,11,348,150,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,11,348,147,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,11,353,147,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,11,320,142,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,11,337,145,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,11,313,142,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,17,408,165,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,17,369,159,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,17,375,159,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,17,368,159,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,17,395,167,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,17,394,165,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,17,406,167,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,17,368,157,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,17,399,165,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,17,370,161,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,25,444,179,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,25,422,174,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,25,432,176,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,25,431,172,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,25,459,183,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,25,475,183,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,25,458,181,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,25,460,175,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,25,447,181,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,25,462,180,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,38,502,197,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,38,501,192,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,38,510,196,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,38,487,193,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,38,561,202,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,38,517,199,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,38,497,197,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,38,521,197,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,38,508,198,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,38,515,201,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,57,589,214,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,57,556,211,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,57,579,217,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,57,570,212,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,57,586,218,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,57,575,217,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,57,584,215,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,57,575,214,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,57,573,216,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,57,610,218,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,86,668,235,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,86,626,229,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,86,672,234,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,86,652,231,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,86,652,235,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,86,658,235,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,86,659,232,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,86,654,232,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,86,657,235,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,86,674,236,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,129,757,253,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,129,737,248,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,129,731,252,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,129,723,249,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,129,758,254,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,129,739,250,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,129,743,252,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,129,713,250,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,129,722,251,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,129,756,252,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,194,843,272,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,194,852,268,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,194,843,270,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,194,840,268,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,194,865,273,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,194,840,268,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,194,832,273,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,194,818,271,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,194,851,270,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,194,832,269,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,291,935,290,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,291,945,287,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,291,934,289,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,291,935,288,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,291,958,291,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,291,935,288,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,291,941,292,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,291,943,289,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,291,938,287,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,291,941,289,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,437,1047,308,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,437,1029,307,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,437,1022,309,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,437,1038,307,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,437,1024,309,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,437,1038,308,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,437,1034,309,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,437,1036,309,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,437,1049,307,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,437,1040,309,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,656,1136,326,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,656,1112,327,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,656,1127,328,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,656,1119,326,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,656,1114,327,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,656,1125,328,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,656,1121,329,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,656,1123,328,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,656,1120,326,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,656,1133,328,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,985,1206,345,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,985,1236,346,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,985,1212,348,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,985,1212,346,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,985,1218,346,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,985,1213,347,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,985,1200,347,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,985,1232,349,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,985,1216,346,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,985,1227,346,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,1477,1337,365,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,1477,1269,364,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,1477,1299,366,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,1477,1303,364,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,1477,1313,365,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,1477,1298,365,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,1477,1301,367,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,1477,1296,367,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,1477,1308,365,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,1477,1307,364,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,2216,1386,384,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,2216,1376,383,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,2216,1372,385,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,2216,1379,384,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,2216,1423,383,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,2216,1395,384,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,2216,1407,386,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,2216,1393,385,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,2216,1427,384,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,2216,1412,384,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,3325,1524,402,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,3325,1501,402,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,3325,1526,404,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,3325,1503,402,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,3325,1512,402,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,3325,1508,403,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,3325,1526,403,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,3325,1532,404,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,3325,1524,403,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,3325,1514,402,0,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,4987,1671,417,48,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,4987,1683,416,42,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,4987,1678,419,36,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,4987,1674,417,45,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,4987,1702,416,45,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,4987,1683,418,40,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,4987,1688,418,42,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,4987,1704,420,26,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,4987,1675,419,22,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,4987,1677,417,36,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,7481,1841,334,80,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,7481,1854,335,79,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,7481,1861,335,77,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,7481,1862,335,80,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,7481,1851,335,75,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,7481,1854,335,79,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,7481,1844,335,81,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,7481,1846,334,78,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,7481,1873,335,82,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,7481,1851,335,78,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,11222,2039,279,106,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,11222,2044,276,107,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,11222,2035,277,108,0
ImmutableSortedDictionary,Fast,Random,64-bit,3,11222,2052,273,111,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,11222,2059,279,109,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,11222,2058,273,109,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,11222,2047,278,108,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,11222,2047,275,114,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,11222,2078,272,114,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,11222,2011,276,106,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,16834,2199,297,109,0
ImmutableSortedDictionary,Fast,Random,64-bit,1,16834,2185,298,112,0
ImmutableSortedDictionary,Fast,Random,64-bit,2,16834,2219,297,113,1
ImmutableSortedDictionary,Fast,Random,64-bit,3,16834,2200,297,106,0
ImmutableSortedDictionary,Fast,Random,64-bit,4,16834,2230,298,112,0
ImmutableSortedDictionary,Fast,Random,64-bit,5,16834,2206,297,109,0
ImmutableSortedDictionary,Fast,Random,64-bit,6,16834,2213,297,112,0
ImmutableSortedDictionary,Fast,Random,64-bit,7,16834,2194,297,106,0
ImmutableSortedDictionary,Fast,Random,64-bit,8,16834,2225,297,109,0
ImmutableSortedDictionary,Fast,Random,64-bit,9,16834,2228,297,111,0
ImmutableSortedDictionary,Fast,Random,64-bit,0,25251,2407,298,100,13
ImmutableSortedDictionary,Fast,Random,64-bit,1,25251,2381,298,100,13
ImmutableSortedDictionary,Fast,Random,64-bit,2,25251,2403,298,100,13
ImmutableSortedDictionary,Fast,Random,64-bit,3,25251,2405,298,100,14
ImmutableSortedDictionary,Fast,Random,64-bit,4,25251,2383,298,100,14
ImmutableSortedDictionary,Fast,Random,64-bit,5,25251,2442,298,100,14
ImmutableSortedDictionary,Fast,Random,64-bit,6,25251,2404,298,100,13
ImmutableSortedDictionary,Fast,Random,64-bit,7,25251,2452,298,100,14
ImmutableSortedDictionary,Fast,Random,64-bit,8,25251,2408,299,100,14
ImmutableSortedDictionary,Fast,Random,64-bit,9,25251,2402,298,100,13
ImmutableSortedDictionary,Fast,Random,64-bit,0,37876,2848,292,120,21
ImmutableSortedDictionary,Fast,Random,64-bit,1,37876,2884,290,117,22
ImmutableSortedDictionary,Fast,Random,64-bit,2,37876,2868,288,114,25
ImmutableSortedDictionary,Fast,Random,64-bit,3,37876,2872,291,120,22
ImmutableSortedDictionary,Fast,Random,64-bit,4,37876,2866,289,115,24
ImmutableSortedDictionary,Fast,Random,64-bit,5,37876,2836,287,116,25
ImmutableSortedDictionary,Fast,Random,64-bit,6,37876,2857,291,114,23
ImmutableSortedDictionary,Fast,Random,64-bit,7,37876,2910,287,107,26
ImmutableSortedDictionary,Fast,Random,64-bit,8,37876,2887,290,113,22
ImmutableSortedDictionary,Fast,Random,64-bit,9,37876,2860,289,120,22
ImmutableSortedDictionary,Fast,Random,64-bit,0,56815,3338,283,90,42
ImmutableSortedDictionary,Fast,Random,64-bit,1,56815,3282,286,91,43
ImmutableSortedDictionary,Fast,Random,64-bit,2,56815,3285,285,91,43
ImmutableSortedDictionary,Fast,Random,64-bit,3,56815,3296,287,91,43
ImmutableSortedDictionary,Fast,Random,64-bit,4,56815,3332,282,94,43
ImmutableSortedDictionary,Fast,Random,64-bit,5,56815,3291,285,93,43
ImmutableSortedDictionary,Fast,Random,64-bit,6,56815,3320,284,95,43
ImmutableSortedDictionary,Fast,Random,64-bit,7,56815,3299,284,89,43
ImmutableSortedDictionary,Fast,Random,64-bit,8,56815,3318,287,93,43
ImmutableSortedDictionary,Fast,Random,64-bit,9,56815,3323,284,94,43
ImmutableSortedDictionary,Fast,Random,64-bit,0,85222,3775,293,56,26
ImmutableSortedDictionary,Fast,Random,64-bit,1,85222,3763,294,58,25
ImmutableSortedDictionary,Fast,Random,64-bit,2,85222,3744,294,61,27
ImmutableSortedDictionary,Fast,Random,64-bit,3,85222,3806,293,59,26
ImmutableSortedDictionary,Fast,Random,64-bit,4,85222,3799,291,66,27
ImmutableSortedDictionary,Fast,Random,64-bit,5,85222,3759,294,62,27
ImmutableSortedDictionary,Fast,Random,64-bit,6,85222,3788,294,59,26
ImmutableSortedDictionary,Fast,Random,64-bit,7,85222,3750,297,61,25
ImmutableSortedDictionary,Fast,Random,64-bit,8,85222,3785,294,56,25
ImmutableSortedDictionary,Fast,Random,64-bit,9,85222,3797,293,62,25
ImmutableSortedDictionary,Fast,Random,64-bit,0,127834,4225,300,75,30
ImmutableSortedDictionary,Fast,Random,64-bit,1,127834,4212,299,73,29
ImmutableSortedDictionary,Fast,Random,64-bit,2,127834,4200,299,73,27
ImmutableSortedDictionary,Fast,Random,64-bit,3,127834,4265,302,76,29
ImmutableSortedDictionary,Fast,Random,64-bit,4,127834,4173,296,72,30
ImmutableSortedDictionary,Fast,Random,64-bit,5,127834,4165,297,73,31
ImmutableSortedDictionary,Fast,Random,64-bit,6,127834,4205,300,73,30
ImmutableSortedDictionary,Fast,Random,64-bit,7,127834,4183,299,73,26
ImmutableSortedDictionary,Fast,Random,64-bit,8,127834,4163,299,74,28
ImmutableSortedDictionary,Fast,Random,64-bit,9,127834,4188,299,71,28
ImmutableSortedDictionary,Fast,Random,64-bit,0,191751,5046,327,81,31
ImmutableSortedDictionary,Fast,Random,64-bit,1,191751,5023,327,80,30
ImmutableSortedDictionary,Fast,Random,64-bit,2,191751,5029,327,80,30
ImmutableSortedDictionary,Fast,Random,64-bit,3,191751,5036,327,74,28
ImmutableSortedDictionary,Fast,Random,64-bit,4,191751,5034,327,74,28
ImmutableSortedDictionary,Fast,Random,64-bit,5,191751,5043,327,77,29
ImmutableSortedDictionary,Fast,Random,64-bit,6,191751,5023,328,76,28
ImmutableSortedDictionary,Fast,Random,64-bit,7,191751,4973,328,78,30
ImmutableSortedDictionary,Fast,Random,64-bit,8,191751,5129,327,76,28
ImmutableSortedDictionary,Fast,Random,64-bit,9,191751,5029,327,80,30
ImmutableSortedDictionary,Fast,Random,64-bit,0,287626,5313,323,82,26
ImmutableSortedDictionary,Fast,Random,64-bit,1,287626,5306,323,80,26
ImmutableSortedDictionary,Fast,Random,64-bit,2,287626,5290,324,82,26
ImmutableSortedDictionary,Fast,Random,64-bit,3,287626,5267,323,81,29
ImmutableSortedDictionary,Fast,Random,64-bit,4,287626,5299,322,81,27
ImmutableSortedDictionary,Fast,Random,64-bit,5,287626,5203,322,84,30
ImmutableSortedDictionary,Fast,Random,64-bit,6,287626,5289,324,85,27
ImmutableSortedDictionary,Fast,Random,64-bit,7,287626,5219,325,82,27
ImmutableSortedDictionary,Fast,Random,64-bit,8,287626,5275,322,82,29
ImmutableSortedDictionary,Fast,Random,64-bit,9,287626,5321,321,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,0,431439,5439,325,83,31
ImmutableSortedDictionary,Fast,Random,64-bit,1,431439,5506,325,82,30
ImmutableSortedDictionary,Fast,Random,64-bit,2,431439,5490,324,82,29
ImmutableSortedDictionary,Fast,Random,64-bit,3,431439,5428,325,83,31
ImmutableSortedDictionary,Fast,Random,64-bit,4,431439,5494,325,82,30
ImmutableSortedDictionary,Fast,Random,64-bit,5,431439,5491,324,83,30
ImmutableSortedDictionary,Fast,Random,64-bit,6,431439,5462,325,82,30
ImmutableSortedDictionary,Fast,Random,64-bit,7,431439,5448,326,83,30
ImmutableSortedDictionary,Fast,Random,64-bit,8,431439,5472,325,83,30
ImmutableSortedDictionary,Fast,Random,64-bit,9,431439,5514,325,82,30
ImmutableSortedDictionary,Fast,Random,64-bit,0,647159,5651,320,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,1,647159,5555,320,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,2,647159,5637,322,82,28
ImmutableSortedDictionary,Fast,Random,64-bit,3,647159,5600,320,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,4,647159,5624,320,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,5,647159,5588,320,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,6,647159,5691,322,82,28
ImmutableSortedDictionary,Fast,Random,64-bit,7,647159,5593,321,80,27
ImmutableSortedDictionary,Fast,Random,64-bit,8,647159,5626,319,80,25
ImmutableSortedDictionary,Fast,Random,64-bit,9,647159,5666,320,80,27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment