NExpect 2.0.30-2306081628.68f2d91

Prefix Reserved
This is a prerelease version of NExpect.
There is a newer version of this package available.
See the version list below for details.
dotnet add package NExpect --version 2.0.30-2306081628.68f2d91
                    
NuGet\Install-Package NExpect -Version 2.0.30-2306081628.68f2d91
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NExpect" Version="2.0.30-2306081628.68f2d91" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NExpect" Version="2.0.30-2306081628.68f2d91" />
                    
Directory.Packages.props
<PackageReference Include="NExpect" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NExpect --version 2.0.30-2306081628.68f2d91
                    
#r "nuget: NExpect, 2.0.30-2306081628.68f2d91"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NExpect@2.0.30-2306081628.68f2d91
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NExpect&version=2.0.30-2306081628.68f2d91&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=NExpect&version=2.0.30-2306081628.68f2d91&prerelease
                    
Install as a Cake Tool

NExpect

An assertions framework for .NET with a BDD-like feel, inspired by Chai and Jasmine, designed to be user-extensible

Build and Test

Nuget current version badge

Goals

  • Expect(NExpect).To.Be.Readable();
    • Because code is for co-workers, not compilers. And your tests are part of your documentation.
  • Expect(NExpect).To.Be.Expressive();
    • Because the intent of a test should be easy to understand. The reader can delve into the details when she cares to.
  • Expect(NExpect).To.Be.Extensible();
    • Because I can't predict every use-case. I believe that your assertions framework should enable expressive, readable tests through extension.

Tutorial / blog posts:

https://fluffynuts.github.io/NExpect dev.to

Usage

  1. Download from nuget.org: install-package nexpect
  2. Import Expectations statically:
using static NExpect.Expectations;
  1. Expect inside your tests, with fluent syntax:
// simple equality checks
Expect(1).To.Equal(1);
Expect(true).To.Not.Be.False(); // alt. grammar
Expect(null).To.Be.Null();
// - with negation, order doesn't matter
Expect("moo").Not.To.Equal("cow");
Expect("moo").To.Not.Equal("cow");
Expect(true).Not.To.Be.False();
Expect(false).To.Not.Be.True();

// exceptions
Expect(() => { }).Not.To.Throw();
Expect(() =>
  {
    throw new ArgumentException("moo", "moo cow");
  }).To.Throw<ArgumentException>()
  .With.Message.Containing("moo")
  .And.("cow");

// smarter string tests, with fluency
Expect(someString).To.Contain("moo").And("cow");
Expect("moo, said the cow")
    .To.Start.With("moo")
    .And.Contain("said")
    .Then("the")
    .And.End.With("cow");

// collection tests
Expect(someCollection).To.Contain.Exactly(2)
  .Matched.By(item => item.IsWhatWeWant());
Expect(someCollection).To.Contain.Only(1)
  .Deep.Equal.To(new { id = 42, name = "Douglas" });
Expect(someFlags).To.Contain.At.Least(3)
  .Equal.To(true);
Expect(new[] { 1, 2, 3 })
  .To.Be.Ordered.Ascending();
Expect(new[] { "c", "b", "a" })
  .To.Be.Ordered.Descending();

// type testing
Expect(someObject).To.Be
  .An.Instance.Of<Cow>();

// deep and intersection equality testing
var person = new {
  id = 1,
  name = "bob"
};
Expect(person)
  .To.Deep.Equal(new { id = 1, name = "bob" });
Expect(person)
  .To.Intersection.Equal(new { name = "bob" });

Extending

Mostly, you can extend by adding extension methods for ICanAddMatcher<T> where T is the type you want. You can also extend at any point in the grammar -- some of the "better" points are ITo<T>, IBe<T>, IHave<T>, IA<T>, IAn<T>. You will need another namespace import:

using NExpect.MatcherLogic

And your extension methods can be like:

public static class MyMatchers
{
  public static void Five(this IBe<int> continuation)
  {
    continuation.AddMatcher(actual =>
    {
      var passed = actual == 5;
      var message = passed
                    ? $"Expected {actual} not to be 5"
                    : $"Expected {actual} to be 5";
      return new MatcherResult(passed, message);
    });
  }
}
// somewhere else...
[Test]
public void FifteenDividedByThree_ShouldEqual_Five()
{
  var result = 15 / 3;
  Expect(result).To.Be.Five();
}
// Yes, yes, simple example is simple.

If you've ever written a Jasmine matcher, this should feel familiar.

If you have a bunch of existing expectations that you'd like to wrap up into a nicely-named matcher, .Compose has you covered:

// before
var cow = animalFactory.MakeCow();
var beetle = animalFactory.MakeBeetle();

// animal factory should make a Jersey cow
Expect(cow.Classification).To.Equal("Mammal");
Expect(cow.Legs).To.Equal(4);
Expect(cow.HasTail).To.Be.True();
Expect(cow.HasHorns).To.Be.True();
Expect(cow.HasSpots).To.Be.True();

// Animal factory should make a rhinoceros beetle
Expect(beetle.Classification).To.Equal("Insect");
Expect(beetle.Legs).To.Equal(6);
Expect(beetle.HasTail).To.Be.False();
Expect(beetle.HasHorns).To.Be.True();
Expect(beetle.HasSpots).To.Be.False();
// after
var cow = animalFactory.MakeJerseyCow();
var beetle = animalFactory.MakeRhinocerosBeetle();

Expect(cow).To.Be.A.JerseyCow();
Expect(beetle).To.Be.A.RhinocerosBeetle();


// elsewhere:

public static class AnimalMatchers
{
  // the IMore<T> interface allows fluent chaining of expectations
  //  eg:
  //  Expect(cow).To.Be.A.JerseyCow()
  //     .And
  //     .Not.To.Be.A.FrieslandCow();
  public static IMore<Animal> JerseyCow(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      Expect(cow.Classification).To.Equal("Mammal");
      Expect(cow.Legs).To.Equal(4);
      Expect(cow.HasTail).To.Be.True();
      Expect(cow.HasHorns).To.Be.True();
      Expect(cow.HasSpots).To.Be.True();
    });
  }
  public static IMore<Animal> RhinocerosBeetle(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      Expect(beetle.Classification).To.Equal("Insect");
      Expect(beetle.Legs).To.Equal(6);
      Expect(beetle.HasTail).To.Be.False();
      Expect(beetle.HasHorns).To.Be.True();
      Expect(beetle.HasSpots).To.Be.False();
    });
  }
}

When one of the inner expectations fails, NExpect attempts to construct a nice failure message. As with all expectations, you can always make failures easier to understand with a custom message string or generator:

using NExpect.Implementations;
using NExpect.MatcherLogic;
using NExpect;
using static NExpect.Expectations;

public static class AnimalMatchers
{
  public static IMore<Animal> JerseyCow(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      // the Stringify extension method, available on all types,
      // comes from NExpect.Implementation.MessageHelpers and
      // produces a string representation of the object it's
      // operating on which is similar to JSON, so it's easier
      // to read what the object was
      var customMessage = $"Expected {actual.Stringify()} to be a cow";
      Expect(cow.Classification).To.Equal("Mammal", customMessage);
      Expect(cow.Legs).To.Equal(4, customMessage);
      Expect(cow.HasTail).To.Be.True(customMessage);
      Expect(cow.HasHorns).To.Be.True(customMessage);
      Expect(cow.HasSpots).To.Be.True(customMessage);
    });
  }
  public static IMore<Animal> RhinocerosBeetle(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      // we can use a generator func to delay generation of the message
      //  which is especially helpful if message generation is expensive
      //  and we'd only like to spend that cpu time on a failure
      Func<string> customMessageGenerator = () => $"Expected {actual.Stringify()} to be a cow";
      Expect(beetle.Classification).To.Equal("Insect", customMessageGenerator);
      Expect(beetle.Legs).To.Equal(6, customMessageGenerator);
      Expect(beetle.HasTail).To.Be.False(customMessageGenerator);
      Expect(beetle.HasHorns).To.Be.True(customMessageGenerator);
      Expect(beetle.HasSpots).To.Be.False(customMessageGenerator);
    });
  }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on NExpect:

Package Downloads
NExpect.Matchers.NSubstitute

This library offers NSubistitute-specific extensions so you can have Expect-style syntax for your NSubstitute assertions. For example, one may previously have done: ``` Expect(result).To.Equal(expected); someService.Received(1).SomeMethodCall(); ``` and now you can keep it consistent: ``` Expect(result).To.Equal(expected); Expect(someService).To.Have.Received(1).SomeMethodCall(); ```

NExpect.Matchers.AspNetCore

This library adds ASP.Net core extensions for NExpect so you can test your [Route] and [Http*] annotations like so: ``` Expect(typeof(SomeController) .To.Have.Method(nameof(SomeController.MethodName)) .Supporting(HttpMethod.Delete) .And(HttpMethod.Post) .With.Route("first-route") .And.Route("second-route"); ```

NExpect.Matchers.Xml

This library offers XML-specific assertions so you can, for instance: ``` var doc = XDocument.Parse(someXml); Expect(doc) .To.Have.Element("//path/to/element") .With.Attribute("some-attribute") .Having.Value("expected-attribute-value"); ```

NExpect.Matchers.AspNetMvc

This library adds ASP.Net core extensions for NExpect so you can test your [Route] and [Http*] annotations like so: ``` Expect(typeof(SomeController) .To.Have.Method(nameof(SomeController.MethodName)) .Supporting(HttpMethod.Delete) .And(HttpMethod.Post) .With.Route("first-route") .And.Route("second-route"); ```

NExpect.NSubstitute

NSubstitute extensions for NExpect so you can: ``` Expect(foo).(Not).To.Have.Received().Method(..); ```

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on NExpect:

Repository Stars
clojure/clojure-clr
A port of Clojure to the CLR, part of the Clojure project
Rohland/htmldiff.net
Html Diff algorithm for .NET
fluffynuts/PeanutButter
Tasty, versatile, nutritious; goes with many things in .net.
Version Downloads Last Updated
2.0.124 300 10/28/2025
2.0.123 562 9/17/2025
2.0.122 411 9/16/2025
2.0.121 675 9/11/2025
2.0.120 400 9/9/2025
2.0.119 380 8/12/2025
2.0.118 387 8/6/2025
2.0.117 403 7/15/2025
2.0.116 6,158 3/24/2025
2.0.115 867 2/25/2025
2.0.114 370 2/13/2025
2.0.113 251 2/12/2025
2.0.112 229 2/12/2025
2.0.111 3,566 12/17/2024
2.0.110 2,593 11/13/2024
2.0.109 299 11/1/2024
2.0.108 423 10/23/2024
2.0.107 265 10/23/2024
2.0.106 298 10/22/2024
2.0.105 2,072 9/11/2024
2.0.104 1,014 8/30/2024
2.0.103 342 8/30/2024 2.0.103 is deprecated.
2.0.102 2,288 6/19/2024
2.0.101 308 6/11/2024
2.0.100 377 6/10/2024
2.0.99 340 6/5/2024
2.0.98 286 6/3/2024
2.0.97 251 6/3/2024
2.0.96 272 6/3/2024
2.0.95 440 5/17/2024
2.0.94 905 5/17/2024
2.0.93 335 5/17/2024
2.0.92 608 4/29/2024
2.0.91 1,158 4/17/2024
2.0.90 323 4/15/2024
2.0.89 316 4/8/2024
2.0.88 322 4/5/2024
2.0.87 307 4/5/2024
2.0.86 303 4/5/2024
2.0.85 306 4/5/2024
2.0.84 290 4/4/2024
2.0.83 807 4/3/2024
2.0.82 960 4/2/2024
2.0.81 655 3/13/2024
2.0.80 315 3/13/2024 2.0.80 is deprecated.
2.0.79 393 3/11/2024
2.0.78 411 3/5/2024
2.0.77 469 2/27/2024
2.0.76 318 2/26/2024
2.0.75 381 2/22/2024
2.0.74 342 2/22/2024
2.0.73 354 2/19/2024
2.0.72 309 2/15/2024
2.0.71 548 2/13/2024
2.0.70 439 2/13/2024
2.0.69 880 2/7/2024
2.0.68 350 2/6/2024
2.0.67 390 2/5/2024
2.0.66 331 2/2/2024
2.0.65 956 1/30/2024
2.0.64 478 1/18/2024
2.0.63 814 1/15/2024
2.0.62 312 1/12/2024
2.0.61 281 1/12/2024
2.0.60 368 1/10/2024
2.0.59 361 1/9/2024
2.0.58 1,114 12/13/2023
2.0.57 1,005 11/28/2023
2.0.56 349 11/28/2023
2.0.55 10,037 11/17/2023
2.0.54 388 11/17/2023
2.0.53 356 11/17/2023
2.0.52 1,063 10/30/2023
2.0.51 433 10/26/2023
2.0.50 916 10/12/2023
2.0.49 2,968 9/28/2023
2.0.48 669 9/22/2023
2.0.47 329 9/21/2023
2.0.46 394 9/20/2023
2.0.45 540 9/14/2023
2.0.44 325 9/14/2023
2.0.43 887 8/25/2023
2.0.42 358 8/25/2023
2.0.42-2308241227.f6c25ee 120 8/24/2023
2.0.42-2308161448.98b76da 121 8/16/2023
2.0.42-2308161446.ec7a107 121 8/16/2023
2.0.42-2308161429.74c00e2 122 8/16/2023
2.0.41 709 8/14/2023
2.0.40 657 8/4/2023
2.0.39 427 8/4/2023
2.0.38 378 8/4/2023
2.0.37 392 8/4/2023
2.0.36 414 8/4/2023
2.0.35 372 8/4/2023
2.0.34 1,154 6/22/2023
2.0.33 436 6/22/2023
2.0.32 427 6/22/2023
2.0.32-2306210815 97 6/21/2023
2.0.32-2306210812 72 6/21/2023
2.0.32-2306151149.332886a 149 6/15/2023
2.0.32-2306151140.93d85dc 143 6/15/2023
2.0.32-2306150947.3b80752 143 6/15/2023
2.0.31 566 6/12/2023
2.0.30 651 6/9/2023
2.0.30-2306091428.6fc0bd3 191 6/9/2023
2.0.30-2306091304.51d4d0b 150 6/9/2023
2.0.30-2306091204.1fe4d76 144 6/9/2023
2.0.30-2306090857.5be3155 153 6/9/2023
2.0.30-2306081701.3a525ef 145 6/8/2023
2.0.30-2306081646.5a15be2 165 6/8/2023
2.0.30-2306081628.68f2d91 146 6/8/2023
2.0.30-2306081611.3c4f19f 149 6/8/2023
2.0.30-2306081557.4fa2105 142 6/8/2023
2.0.30-2306081119.fdddf3b 152 6/8/2023
2.0.30-2306081053.68ba9f2 144 6/8/2023
2.0.30-2306080900.1b126b1 148 6/8/2023
2.0.29 1,075 5/23/2023
2.0.28 594 5/18/2023
2.0.27 531 5/12/2023
2.0.26 511 5/12/2023
2.0.25 611 4/26/2023
2.0.24 11,461 2/1/2023
2.0.23 831 1/30/2023
2.0.22 1,061 1/26/2023
2.0.21 858 1/25/2023
2.0.20 986 1/25/2023
2.0.19 2,230 11/30/2022
2.0.18 1,734 11/14/2022
2.0.17 4,982 10/19/2022
2.0.16 1,479 10/17/2022
2.0.15 1,376 10/17/2022
2.0.14 2,023 10/3/2022
2.0.13 1,392 10/3/2022
2.0.12 1,462 10/3/2022
2.0.11 1,509 9/27/2022
2.0.10 1,621 9/20/2022
2.0.9 1,602 9/19/2022
2.0.8 1,603 9/15/2022
2.0.7 1,598 9/14/2022
2.0.6 1,465 9/13/2022
2.0.5 1,493 9/13/2022
2.0.4 1,489 9/13/2022
2.0.3 1,525 9/9/2022
2.0.2 1,449 9/9/2022
2.0.1 1,484 9/9/2022
1.0.276 81,720 8/17/2022
1.0.275 1,534 8/17/2022
1.0.274 2,358 7/28/2022
1.0.273 5,862 7/14/2022
1.0.272 1,602 7/14/2022
1.0.271 1,579 7/13/2022
1.0.270 1,801 7/7/2022
1.0.269 1,570 7/7/2022
1.0.268 2,160 6/20/2022
1.0.267 1,723 6/14/2022
1.0.266 1,836 6/9/2022
1.0.265 3,151 5/27/2022
1.0.264 1,710 5/24/2022
1.0.263 1,586 5/23/2022
1.0.262 1,705 5/17/2022
1.0.261 1,571 5/16/2022
1.0.260 1,578 5/16/2022
1.0.259 2,036 5/6/2022
1.0.258 1,596 5/5/2022
1.0.257 1,548 5/5/2022
1.0.256 1,543 5/4/2022
1.0.255 1,610 5/4/2022
1.0.254 2,379 4/5/2022
1.0.253 1,646 4/5/2022
1.0.252 1,602 4/4/2022
1.0.251 1,818 3/22/2022
1.0.250 3,288 2/3/2022
1.0.249 1,655 1/28/2022
1.0.248 1,990 1/27/2022
1.0.247 1,644 1/26/2022
1.0.246 1,572 1/25/2022
1.0.245 1,597 1/18/2022
1.0.244 1,620 1/18/2022
1.0.243 1,458 1/12/2022
1.0.242 1,292 12/10/2021
1.0.241 1,060 12/10/2021
1.0.240 1,047 12/10/2021
1.0.239 1,190 12/6/2021
1.0.238 1,604 12/6/2021
1.0.236 1,054 12/2/2021
1.0.235 1,108 12/2/2021
1.0.234 1,076 12/2/2021
1.0.233 1,304 11/18/2021
1.0.232 1,061 11/18/2021
1.0.231 1,307 11/9/2021
1.0.230 1,179 11/9/2021
1.0.227 1,290 10/14/2021
1.0.226 1,399 9/2/2021
1.0.225 1,051 8/31/2021
1.0.224 1,072 8/30/2021
1.0.223 1,209 8/6/2021
1.0.222 1,070 8/6/2021
1.0.221 1,087 8/6/2021
1.0.220 1,106 8/3/2021
1.0.219 1,156 7/30/2021
1.0.218 1,203 7/7/2021
1.0.217 1,014 7/7/2021
1.0.216 1,032 7/7/2021
1.0.215 1,068 7/6/2021
1.0.214 1,075 7/6/2021
1.0.213 1,021 7/6/2021
1.0.212 29,179 5/14/2021
1.0.211 1,057 5/11/2021
1.0.210 1,043 5/11/2021
1.0.209 976 5/11/2021
1.0.208 991 5/11/2021
1.0.207 1,322 5/3/2021
1.0.206 1,143 5/3/2021
1.0.205 1,048 5/3/2021
1.0.204 1,008 5/3/2021
1.0.203 1,016 4/15/2021
1.0.202 1,029 4/15/2021
1.0.201 961 4/15/2021
1.0.200 997 4/15/2021
1.0.199 979 4/14/2021
1.0.198 1,186 3/19/2021
1.0.197 1,024 3/9/2021
1.0.196 1,053 3/9/2021
1.0.195 1,048 3/9/2021
1.0.194 1,110 3/9/2021
1.0.193 1,130 3/9/2021
1.0.192 1,132 3/9/2021
1.0.191 1,124 2/12/2021
1.0.190 1,185 1/21/2021
1.0.189 1,185 1/21/2021
1.0.188 1,078 1/21/2021
1.0.187 1,070 1/21/2021
1.0.186 1,392 1/8/2021
1.0.185 1,087 1/8/2021
1.0.184 5,312 11/13/2020
1.0.183 1,071 11/13/2020
1.0.182 1,094 11/13/2020
1.0.181 1,494 10/13/2020
1.0.180 1,238 10/12/2020
1.0.179 1,322 8/31/2020
1.0.178 3,850 8/4/2020
1.0.177 1,242 7/21/2020
1.0.176 1,153 7/10/2020
1.0.175 1,227 7/10/2020
1.0.174 3,785 5/20/2020
1.0.173 1,251 5/20/2020
1.0.172 1,302 5/20/2020
1.0.171 1,279 5/8/2020
1.0.170 2,230 4/9/2020
1.0.169 1,351 4/3/2020
1.0.168 1,250 3/25/2020
1.0.167 1,367 3/23/2020
1.0.166 1,386 2/6/2020
1.0.165 1,373 12/30/2019
1.0.164 1,258 12/28/2019
1.0.163 1,239 12/28/2019
1.0.162 1,655 12/5/2019
1.0.161 1,200 12/5/2019
1.0.160 1,674 11/20/2019
1.0.159 1,940 10/14/2019
1.0.158 855 10/13/2019
1.0.157 1,345 10/3/2019
1.0.156 1,289 9/17/2019
1.0.155 1,287 9/15/2019
1.0.154 2,981 6/20/2019
1.0.153 1,937 6/20/2019
1.0.152 2,164 6/6/2019
1.0.151 2,005 6/4/2019
1.0.150 2,004 5/25/2019
1.0.149 1,930 5/23/2019
1.0.148 1,956 5/16/2019
1.0.147 1,979 5/16/2019
1.0.146 1,719 5/16/2019
1.0.145 1,654 5/16/2019
1.0.143 3,166 5/14/2019
1.0.142 1,854 5/13/2019
1.0.141 1,585 5/7/2019
1.0.140 1,652 4/16/2019
1.0.139 1,633 4/16/2019
1.0.138 1,560 4/16/2019
1.0.137 1,486 4/16/2019
1.0.136 1,699 1/9/2019
1.0.135 6,524 12/12/2018
1.0.134 1,642 12/12/2018
1.0.132 1,891 8/11/2018
1.0.131 1,938 7/31/2018
1.0.130 1,940 7/25/2018
1.0.129 1,880 7/24/2018
1.0.128 1,925 7/19/2018
1.0.127 2,116 7/4/2018
1.0.126 2,139 6/20/2018
1.0.125 2,136 6/19/2018
1.0.124 2,192 5/24/2018
1.0.123 2,127 5/18/2018
1.0.122 2,301 5/17/2018
1.0.121 2,268 4/29/2018
1.0.120 2,248 4/29/2018
1.0.119 2,204 4/27/2018
1.0.118 2,179 4/26/2018
1.0.117 2,173 4/26/2018
1.0.116 2,140 4/25/2018
1.0.115 1,918 4/23/2018
1.0.114 2,178 4/12/2018
1.0.113 2,232 4/11/2018
1.0.112 2,090 4/4/2018
1.0.111 2,178 4/3/2018
1.0.110 2,176 4/2/2018
1.0.109 2,172 3/29/2018
1.0.108 2,171 3/28/2018
1.0.107 2,189 3/22/2018
1.0.106 2,201 3/22/2018
1.0.105 2,356 2/28/2018
1.0.104 2,262 2/26/2018
1.0.103 2,198 2/25/2018
1.0.102 2,185 2/24/2018
1.0.101 1,928 2/23/2018
1.0.100 2,379 2/23/2018
1.0.99 2,255 1/16/2018
1.0.98 2,249 12/20/2017
1.0.97 2,217 12/10/2017
1.0.96 2,182 12/7/2017
1.0.95 2,206 12/7/2017
1.0.94 1,962 12/6/2017
1.0.93 2,229 12/6/2017
1.0.92 2,020 11/30/2017
1.0.91 1,970 11/30/2017
1.0.90 1,967 11/28/2017
1.0.89 1,926 11/28/2017
1.0.88 2,215 10/18/2017
1.0.87 2,175 10/16/2017
1.0.86 2,163 10/16/2017
1.0.85 2,225 10/15/2017
1.0.84 2,207 10/6/2017
1.0.83 2,215 10/6/2017
1.0.82 2,194 10/5/2017
1.0.81 2,208 10/4/2017
1.0.80 2,239 9/30/2017
1.0.79 2,449 9/28/2017
1.0.78 2,147 9/27/2017
1.0.77 2,176 9/26/2017
1.0.76 2,156 9/26/2017
1.0.75 2,187 9/26/2017
1.0.74 2,146 9/26/2017
1.0.73 2,153 9/26/2017
1.0.72 2,238 9/21/2017
1.0.71 2,226 9/20/2017
1.0.70 2,166 9/20/2017
1.0.69 2,197 9/20/2017
1.0.68 2,176 9/20/2017
1.0.67 2,175 9/18/2017
1.0.66 2,231 9/18/2017
1.0.65 2,195 9/18/2017
1.0.64 2,197 9/18/2017
1.0.63 2,176 9/17/2017
1.0.62 2,149 9/17/2017
1.0.61 2,194 9/17/2017
1.0.60 2,225 9/15/2017
1.0.59 2,215 9/15/2017
1.0.58 2,199 9/12/2017
1.0.57 2,160 9/12/2017
1.0.56 2,199 9/12/2017
1.0.55 2,205 9/12/2017
1.0.54 2,177 9/12/2017
1.0.53 2,196 9/11/2017
1.0.52 2,176 9/11/2017
1.0.51 2,172 9/8/2017
1.0.50 2,190 9/8/2017
1.0.49 2,220 9/6/2017
1.0.48 2,197 9/6/2017
1.0.47 2,197 9/5/2017
1.0.46 2,214 9/5/2017
1.0.45 2,182 9/1/2017
1.0.44 2,184 8/31/2017
1.0.43 2,218 8/31/2017
1.0.42 2,215 8/31/2017
1.0.41 2,205 8/31/2017
1.0.40 2,222 8/31/2017
1.0.39 2,256 8/30/2017
1.0.38 1,977 8/28/2017
1.0.37 2,024 8/22/2017
1.0.36 1,998 8/22/2017
1.0.35 1,978 8/22/2017
1.0.34 1,966 8/21/2017
1.0.33 1,966 8/17/2017
1.0.32 2,022 8/16/2017
1.0.31 2,003 8/16/2017
1.0.30 1,975 8/15/2017
1.0.29 1,982 8/15/2017
1.0.28 2,038 8/15/2017
1.0.27 2,050 8/14/2017
1.0.26 1,969 8/11/2017
1.0.25 1,980 8/11/2017
1.0.24 1,962 8/9/2017
1.0.21 1,978 8/7/2017
1.0.19 2,040 8/7/2017
1.0.17 2,022 8/7/2017
1.0.15 2,009 8/4/2017
1.0.13 1,994 8/4/2017
1.0.11 2,010 8/3/2017
1.0.9 2,019 7/23/2017
1.0.8 1,996 7/23/2017
1.0.7 1,987 7/23/2017
1.0.6 1,989 7/23/2017
1.0.5 2,006 7/22/2017
1.0.4 2,027 7/22/2017
1.0.3 1,996 7/22/2017
1.0.1 2,115 7/21/2017
1.0.0 2,048 7/20/2017