EasyNetQ.DI.Ninject 8.0.0-beta1

Prefix Reserved
This is a prerelease version of EasyNetQ.DI.Ninject.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package EasyNetQ.DI.Ninject --version 8.0.0-beta1
                    
NuGet\Install-Package EasyNetQ.DI.Ninject -Version 8.0.0-beta1
                    
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="EasyNetQ.DI.Ninject" Version="8.0.0-beta1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyNetQ.DI.Ninject" Version="8.0.0-beta1" />
                    
Directory.Packages.props
<PackageReference Include="EasyNetQ.DI.Ninject" />
                    
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 EasyNetQ.DI.Ninject --version 8.0.0-beta1
                    
#r "nuget: EasyNetQ.DI.Ninject, 8.0.0-beta1"
                    
#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.
#addin nuget:?package=EasyNetQ.DI.Ninject&version=8.0.0-beta1&prerelease
                    
Install EasyNetQ.DI.Ninject as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Ninject&version=8.0.0-beta1&prerelease
                    
Install EasyNetQ.DI.Ninject as a Cake Tool

Build status

NuGet Status Nuget Status Nuget Status

Activity Activity Activity

EasyNetQ Logo

A Nice .NET API for RabbitMQ

Initial development was sponsored by travel industry experts 15below

Goals:

  1. To make working with RabbitMQ on .NET as easy as possible.

To connect to a RabbitMQ broker...

    var bus = RabbitHutch.CreateBus("host=localhost");

To publish a message...

    await bus.PubSub.PublishAsync(message);

To publish a message with 5s delay...

    await bus.Scheduler.FuturePublishAsync(message, TimeSpan.FromSeconds(5));

To subscribe to a message...

    await bus.PubSub.SubscribeAsync<MyMessage>(
        "my_subscription_id", msg => Console.WriteLine(msg.Text)
    );

Remote procedure call...

    var request = new TestRequestMessage {Text = "Hello from the client! "};
    await bus.Rpc.RequestAsync<TestRequestMessage, TestResponseMessage>(request);

RPC server...

    await bus.Rpc.RespondAsync<TestRequestMessage, TestResponseMessage>(request =>
        new TestResponseMessage{ Text = request.Text + " all done!" }
    );

Getting started

Just open EasyNetQ.sln in VisualStudio or Rider and build. All the required dependencies for the solution file to build the software are included.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 was computed.  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.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EasyNetQ.DI.Ninject:

Package Downloads
Revo.EasyNetQ

Event Sourcing, CQRS and DDD framework for modern C#/.NET applications. Framework infrastruture package - event stores, projections, jobs, etc.

ACE

Simple Microservices infrastructure library. Offers three domain message: Action, Command and Event. Event for communication between the Microservices, Action for communication between front-end and Microservices, Command is used for communication between the Aggregates.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on EasyNetQ.DI.Ninject:

Repository Stars
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
Version Downloads Last updated
8.0.0-beta96 116 3/15/2024
8.0.0-beta95 256 10/22/2023
8.0.0-beta94 149 6/18/2023
8.0.0-beta93 169 6/17/2023
8.0.0-beta92 136 6/17/2023
8.0.0-beta91 154 6/11/2023
8.0.0-beta90 136 5/8/2023
8.0.0-beta9 155 3/21/2023
8.0.0-beta8 165 2/20/2023
8.0.0-beta6 167 1/29/2023
8.0.0-beta5 185 1/20/2023
8.0.0-beta4 193 1/5/2023
8.0.0-beta3 197 12/29/2022
8.0.0-beta2 180 12/16/2022
8.0.0-beta10 166 3/21/2023
8.0.0-beta1 166 12/15/2022
8.0.0-alpha9 177 12/14/2022
8.0.0-alpha8 177 11/30/2022
8.0.0-alpha7 176 11/12/2022
8.0.0-alpha6 182 10/29/2022
8.0.0-alpha5 175 10/5/2022
8.0.0-alpha4 222 10/1/2022
8.0.0-alpha3 242 9/26/2022
8.0.0-alpha2 233 9/21/2022
8.0.0-alpha1 248 9/19/2022
7.8.0 52,363 12/16/2023
7.7.0 550 11/19/2023
7.6.0 599 10/12/2023
7.5.5 511 7/20/2023
7.5.4 208 7/19/2023
7.5.3 224 6/15/2023
7.5.2 319 5/14/2023
7.5.1 587 5/4/2023
7.5.0 478 3/25/2023
7.4.3 45,618 2/3/2023
7.4.1 476 1/31/2023
7.4.0 455 1/29/2023
7.3.12 532 1/23/2023
7.3.11 539 1/22/2023
7.3.10 492 1/19/2023
7.3.9 489 1/17/2023
7.3.8 535 1/4/2023
7.3.7 515 12/22/2022
7.3.6 468 12/19/2022
7.3.5 505 11/30/2022
7.3.4 503 11/30/2022
7.3.3 671 11/24/2022
7.3.2 603 11/15/2022
7.3.1 575 11/12/2022
7.3.0 732 10/29/2022
7.3.0-alpha3 172 10/15/2022
7.3.0-alpha2 173 10/15/2022
7.2.1 772 10/9/2022
7.2.1-alpha1 151 10/6/2022
7.2.0 822 9/17/2022
7.2.0-alpha1 238 9/15/2022
7.1.1-alpha1 245 9/14/2022
7.1.0 769 9/13/2022
7.0.4 742 9/7/2022
7.0.3 683 9/5/2022
7.0.3-alpha1 170 9/5/2022
7.0.2 687 9/5/2022
7.0.1 689 8/27/2022
7.0.0 810 7/23/2022
7.0.0-rc5 230 6/28/2022
7.0.0-rc4 208 6/27/2022
7.0.0-rc3 212 6/20/2022
7.0.0-rc2 199 6/9/2022
7.0.0-rc1 200 6/9/2022
7.0.0-beta9 193 6/8/2022
7.0.0-beta7 201 6/5/2022
7.0.0-beta6 204 5/24/2022
7.0.0-beta5 278 11/18/2021
7.0.0-beta4 261 11/9/2021
7.0.0-beta3 314 11/6/2021
7.0.0-beta2 333 9/29/2021
7.0.0-beta1 315 9/13/2021
7.0.0-alpha9 295 8/25/2021
7.0.0-alpha8 275 8/25/2021
7.0.0-alpha7 283 8/25/2021
7.0.0-alpha6 304 8/16/2021
7.0.0-alpha5 289 8/16/2021
7.0.0-alpha4 457 1/20/2021
7.0.0-alpha3 462 12/31/2020
7.0.0-alpha2 433 12/28/2020
6.5.2 1,360 6/20/2022
6.4.1 708 5/22/2022
6.4.0-alpha0096 467 12/6/2020
6.4.0-alpha0095 474 12/6/2020
6.4.0-alpha0094 528 12/6/2020
6.4.0-alpha.99 260 12/26/2020
6.4.0-alpha.97 271 12/9/2020
6.3.1 41,201 11/28/2020
6.3.0 1,076 11/22/2020
6.2.0 987 11/15/2020
6.1.0 902 11/10/2020
6.0.3 842 11/9/2020
6.0.2 946 11/6/2020
6.0.1 963 11/1/2020
5.6.0 986 10/10/2020
5.5.0 984 10/5/2020
5.4.1 983 10/4/2020
5.4.0 944 10/1/2020
5.3.0-alpha0079 558 6/16/2020
5.3.0-alpha0078 525 6/15/2020
5.3.0-alpha0077 526 6/15/2020
5.3.0-alpha0076 540 6/15/2020
5.3.0-alpha0075 523 6/14/2020
5.3.0-alpha0074 513 6/12/2020
5.3.0-alpha0073 539 6/12/2020
5.3.0-alpha0072 511 6/11/2020
5.3.0-alpha0070 598 6/7/2020
5.2.2 945 9/4/2020
5.2.1 934 9/3/2020
5.2.0 1,089 6/7/2020
5.2.0-alpha0073 520 5/26/2020
5.2.0-alpha0072 591 5/25/2020
5.2.0-alpha0071 581 5/25/2020
5.2.0-alpha0070 570 5/24/2020
5.2.0-alpha0069 519 5/24/2020
5.2.0-alpha0066 511 5/21/2020
5.2.0-alpha0065 558 5/20/2020
5.2.0-alpha0064 565 5/17/2020
5.2.0-alpha0057 573 5/10/2020
5.2.0-alpha0056 529 5/8/2020
5.1.2 1,041 5/24/2020
5.1.1 1,024 5/10/2020
5.1.0 1,027 5/7/2020
5.1.0-alpha0055 562 5/3/2020
5.1.0-alpha0054 644 5/3/2020
5.1.0-alpha0053 592 4/30/2020
5.0.5 1,006 5/4/2020
5.0.4 939 5/3/2020
5.0.3 994 5/2/2020
5.0.2 980 5/2/2020
5.0.1 978 5/2/2020
5.0.0 1,065 4/29/2020
4.1.0-alpha0014 566 4/29/2020
4.1.0-alpha0013 569 4/24/2020
4.1.0-alpha0005 554 4/20/2020
4.1.0-alpha0004 572 4/18/2020
4.1.0-alpha0001 575 4/17/2020
4.0.9 1,033 4/29/2020
4.0.8 1,039 4/28/2020
4.0.7 1,015 4/27/2020
4.0.6 948 4/24/2020
4.0.5 969 4/22/2020
4.0.4 977 4/21/2020
4.0.3 942 4/20/2020
4.0.2 988 4/20/2020
4.0.1 987 4/20/2020
4.0.0 946 4/18/2020
3.8.0 999 4/17/2020
3.8.0-alpha0048 604 2/28/2020
3.8.0-alpha0042 608 2/13/2020
3.8.0-alpha0041 618 1/8/2020
3.8.0-alpha0040 573 9/26/2019
3.8.0-alpha0039 595 9/25/2019
3.7.1 2,063 9/25/2019
3.7.0 1,020 9/23/2019
3.7.0-alpha0038 634 8/3/2019
3.7.0-alpha0037 636 8/1/2019
3.6.0 1,257 7/17/2019
3.6.0-alpha0036 673 6/4/2019
3.6.0-alpha0035 662 6/2/2019
3.6.0-alpha0034 643 6/2/2019
3.6.0-alpha0033 672 6/2/2019
3.6.0-alpha0031 649 5/4/2019
3.5.2 1,119 7/11/2019
3.5.1 3,016 6/2/2019
3.5.0 1,468 5/2/2019
3.5.0-alpha0036 688 4/10/2019
3.5.0-alpha0031 663 3/25/2019
3.5.0-alpha0030 663 3/21/2019
3.5.0-alpha0029 648 3/19/2019
3.5.0-alpha0027 668 3/18/2019
3.5.0-alpha0026 643 3/18/2019
3.5.0-alpha0025 605 3/17/2019
3.5.0-alpha0024 637 3/16/2019
3.5.0-alpha0021 643 3/15/2019
3.5.0-alpha0020 658 3/14/2019
3.5.0-alpha0019 662 3/14/2019
3.5.0-alpha0018 648 3/14/2019
3.5.0-alpha0013 630 3/14/2019
3.4.5 1,184 3/21/2019
3.4.4 1,131 3/16/2019
3.4.3 1,126 3/14/2019
3.4.2 1,115 3/13/2019
3.4.1 1,070 3/12/2019
3.4.0 1,266 2/19/2019
3.4.0-alpha0022 743 1/27/2019
3.4.0-alpha0021 746 1/25/2019
3.4.0-alpha0020 807 12/21/2018
3.4.0-alpha0019 766 12/6/2018
3.4.0-alpha0018 765 11/21/2018
3.4.0-alpha0017 775 11/20/2018
3.4.0-alpha0016 784 11/5/2018
3.4.0-alpha0015 818 11/2/2018
3.4.0-alpha0011 797 11/1/2018
3.4.0-alpha0010 873 10/3/2018
3.4.0-alpha0009 907 9/16/2018
3.4.0-alpha0008 898 9/1/2018
3.4.0-alpha0007 882 8/29/2018
3.4.0-alpha0006 842 8/28/2018
3.4.0-alpha0005 838 8/28/2018
3.4.0-alpha0004 900 8/23/2018
3.4.0-alpha0003 882 8/22/2018
3.4.0-alpha0002 947 8/10/2018
3.4.0-alpha0001 962 7/30/2018
3.3.9 1,267 1/25/2019
3.3.8 1,305 1/18/2019
3.3.7 1,299 1/5/2019
3.3.6 1,228 12/19/2018
3.3.5 1,748 11/21/2018
3.3.4 1,295 11/20/2018
3.3.3 1,447 11/11/2018
3.3.2 1,435 10/12/2018
3.3.1 1,387 8/28/2018
3.3.0 1,995 7/18/2018
3.3.0-alpha0007 1,120 7/18/2018
3.3.0-alpha0006 1,142 7/17/2018
3.3.0-alpha0005 1,090 7/17/2018
3.3.0-alpha0004 953 7/17/2018
3.3.0-alpha0003 1,129 7/15/2018
3.3.0-alpha0001 1,092 7/11/2018
3.2.0 1,604 7/12/2018
3.1.2 1,424 7/11/2018
3.1.1 1,434 7/4/2018
3.1.0 1,686 6/20/2018
3.1.0-alpha0019 1,108 7/4/2018
3.1.0-alpha0017 951 7/2/2018
3.1.0-alpha0016 975 6/30/2018
3.1.0-alpha0014 994 6/26/2018
3.1.0-alpha0011 1,150 6/23/2018
3.1.0-alpha0010 1,109 6/20/2018
3.1.0-alpha0009 1,094 6/20/2018
3.1.0-alpha0008 938 6/19/2018
3.1.0-alpha0007 1,109 6/17/2018
3.1.0-alpha0006 1,144 6/14/2018
3.1.0-alpha0005 970 6/14/2018
3.1.0-alpha0004 1,192 5/28/2018
3.0.1 1,496 7/4/2018
3.0.0 1,840 5/24/2018
2.4.0-alpha0027 1,022 5/23/2018
2.4.0-alpha0026 1,143 5/23/2018
2.4.0-alpha0025 1,115 5/22/2018
2.4.0-alpha0024 1,102 5/18/2018
2.4.0-alpha0023 1,196 5/16/2018
2.4.0-alpha0022 1,297 5/16/2018
2.4.0-alpha0021 1,241 5/15/2018
2.4.0-alpha0020 1,227 5/15/2018
2.4.0-alpha0019 1,256 4/20/2018
2.4.0-alpha0017 1,002 4/19/2018
2.4.0-alpha0016 1,167 4/13/2018
2.4.0-alpha0015 1,116 4/3/2018
2.4.0-alpha0014 1,197 4/1/2018
2.4.0-alpha0013 1,481 3/30/2018
2.4.0-alpha0009 1,030 2/20/2018
2.4.0-alpha0002 1,074 12/1/2017
2.3.3 2,093 4/24/2018
2.3.1 2,281 2/20/2018
2.3.0 1,522 2/19/2018
2.3.0-alpha0006 1,025 11/21/2017
2.3.0-alpha0005 1,018 11/13/2017
2.3.0-alpha0002 1,048 9/18/2017
2.2.0 2,182 11/13/2017
2.2.0-alpha0009 1,002 9/14/2017
2.2.0-alpha0008 1,018 9/11/2017
2.2.0-alpha0007 1,035 9/10/2017
2.2.0-alpha0006 1,002 8/18/2017
2.2.0-alpha0002 1,076 8/18/2017
2.1.0 1,624 8/18/2017
2.1.0-alpha0022 1,009 8/18/2017
2.1.0-alpha0020 1,032 7/24/2017
2.1.0-alpha0018 1,070 7/13/2017
2.1.0-alpha0016 1,075 7/12/2017
2.1.0-alpha0011 1,094 7/11/2017
2.1.0-alpha0005 1,026 7/3/2017
2.1.0-alpha0002 1,082 7/3/2017
2.0.4 1,568 7/24/2017
2.0.4-unstable0013 1,157 6/26/2017
2.0.4-unstable0011 1,147 6/26/2017
2.0.4-unstable0010 1,181 6/11/2017
2.0.4-unstable0009 1,179 6/1/2017
2.0.4-unstable0007 1,207 5/4/2017
2.0.4-unstable0004 1,191 5/1/2017
2.0.4-unstable0003 1,190 5/1/2017
2.0.4-unstable0002 1,197 4/30/2017
2.0.4-unstable0001 1,183 4/27/2017
2.0.4-alpha0038 1,089 7/1/2017
2.0.3-unstable0064 1,125 4/27/2017
2.0.3-unstable0058 1,119 3/28/2017
2.0.3-unstable0057 1,145 3/15/2017
2.0.3-unstable0055 1,179 2/10/2017
2.0.3-unstable0053 1,132 2/9/2017
2.0.3-unstable0052 1,152 2/8/2017
1.1.4.506 1,761 7/6/2017
1.1.3.500 1,625 6/28/2017
1.1.2.497 1,577 6/21/2017
1.1.1.494 1,578 5/30/2017
1.1.0.492 1,605 5/4/2017
1.0.4.483 1,605 4/26/2017
1.0.3.481 1,588 4/4/2017
1.0.2.478 1,533 3/15/2017
1.0.1.475 1,640 2/10/2017
1.0.0.469 1,631 2/8/2017
1.0.0 1,629 6/30/2017
0.63.7.467 1,584 2/7/2017
0.63.6.463 1,586 2/7/2017
0.63.6.460 1,572 2/5/2017
0.63.5.454 2,933 10/17/2016
0.63.4.453 1,637 10/10/2016
0.63.3.452 1,587 9/26/2016
0.63.1.451 8,728 9/19/2016
0.63.1.450 1,674 9/11/2016
0.63.0.448 1,657 8/12/2016
0.62.1.445 1,585 8/8/2016
0.62.0.444 1,626 8/8/2016
0.61.1.443 1,620 8/5/2016
0.61.0.442 1,947 8/2/2016
0.60.1.441 1,847 7/31/2016
0.60.0.440 1,669 7/25/2016
0.59.0.439 1,656 7/18/2016
0.59.0.437 1,638 7/18/2016
0.59.0.436 1,629 7/18/2016
0.59.0.434 1,624 6/6/2016
0.58.0.433 1,698 5/2/2016
0.57.2.432 1,655 5/2/2016
0.57.2.431 2,002 4/25/2016
0.57.2.430 1,789 4/20/2016
0.57.1.429 1,669 4/20/2016
0.57.0.428 1,678 4/18/2016
0.56.0.427 2,467 4/1/2016
0.55.1.426 2,079 3/17/2016
0.55.0.425 1,692 3/1/2016
0.54.3.424 1,894 2/2/2016
0.54.2.423 1,613 2/1/2016
0.54.1.421 1,671 2/1/2016
0.54.0.420 1,630 1/28/2016
0.53.6.419 1,642 1/25/2016
0.53.6.418 1,720 1/6/2016
0.53.5.417 1,715 1/6/2016
0.53.5.416 1,660 1/5/2016
0.53.4.415 1,680 12/23/2015
0.53.3.414 1,805 12/9/2015
0.53.2.413 2,040 12/1/2015
0.53.1.412 1,860 11/28/2015
0.53.0.411 1,828 11/19/2015
0.52.0.410 1,739 11/18/2015
0.51.0.409 1,726 11/17/2015
0.51.0.408 1,745 11/16/2015
0.50.12.407 1,754 10/22/2015
0.50.12.406 1,731 10/22/2015
0.50.11.404 1,650 10/20/2015
0.50.10.403 1,749 10/10/2015
0.50.9.401 2,072 10/5/2015
0.50.8.400 1,749 9/28/2015
0.50.7.399 1,769 8/18/2015
0.50.6.398 1,754 8/11/2015
0.50.5.397 1,764 8/11/2015
0.50.5.396 1,864 8/11/2015
0.50.4.395 1,973 8/8/2015
0.50.3.394 1,917 8/7/2015
0.50.2.393 1,809 8/1/2015
0.50.1.392 1,776 6/17/2015
0.50.0.391 1,683 6/8/2015
0.49.3.390 1,812 5/20/2015
0.49.2.389 1,746 5/18/2015
0.49.1.388 1,734 5/18/2015
0.49.0.387 1,734 5/17/2015
0.48.1.386 1,767 5/10/2015
0.48.0.385 1,703 5/10/2015
0.47.10.384 1,784 5/8/2015
0.47.10.383 1,744 5/6/2015
0.47.10.382 1,740 5/5/2015
0.47.10.381 1,923 4/27/2015
0.47.10.380 4,584 4/1/2015
0.47.10.379 1,662 4/1/2015
0.47.9.378 1,761 3/31/2015
0.47.9.377 1,742 3/31/2015
0.47.9.376 1,727 3/30/2015
0.47.8.375 1,743 3/28/2015
0.47.7.374 1,748 3/25/2015
0.47.6.373 1,722 3/18/2015
0.47.5.372 1,689 3/17/2015
0.47.4.371 1,774 3/16/2015
0.47.3.370 1,813 3/15/2015
0.47.2.369 1,791 3/12/2015
0.47.1.368 2,205 3/4/2015
0.47.0.367 1,802 3/4/2015
0.46.1.366 2,093 3/3/2015
0.46.0.365 2,024 3/2/2015
0.45.0.364 1,756 3/2/2015
0.44.3.363 2,280 2/24/2015
0.44.2.362 1,943 2/24/2015
0.44.1.361 2,171 2/22/2015
0.44.0.360 2,036 2/18/2015
0.43.1.359 2,136 2/12/2015
0.43.0.358 1,811 2/7/2015
0.42.0.357 1,778 2/5/2015
0.41.0.356 1,791 2/4/2015
0.40.6.355 1,873 2/3/2015
0.40.3.354 1,668 2/2/2015
0.40.3.353 1,713 1/26/2015
0.40.3.352 1,751 1/20/2015
0.40.3.351 1,759 1/19/2015
0.40.2.350 1,770 1/19/2015
0.40.1.349 1,737 1/17/2015
0.40.1.348 1,834 1/15/2015
0.40.1.347 1,807 1/13/2015
0.40.1.346 1,704 1/12/2015
0.40.0.345 1,707 1/9/2015
0.40.0.344 1,687 1/9/2015
0.40.0.343 1,701 1/8/2015
0.40.0.342 1,774 1/8/2015
0.39.6.340 1,796 1/6/2015
0.39.5.339 1,714 1/5/2015
0.39.4.338 2,024 1/1/2015
0.39.4.337 2,229 12/23/2014
0.39.4.336 2,042 12/13/2014
0.39.2.335 2,037 12/12/2014
0.39.2.334 1,999 12/9/2014
0.39.2.333 1,936 12/5/2014
0.39.1.332 1,990 12/3/2014
0.39.1.331 1,928 12/2/2014
0.39.0.330 1,956 12/1/2014
0.38.2.329 1,968 11/26/2014
0.38.2.328 1,942 11/26/2014
0.38.1.327 1,928 11/25/2014
0.38.0.326 2,049 11/22/2014
0.38.0.325 1,970 11/20/2014
0.38.0.324 1,999 11/14/2014
0.37.2.323 1,935 11/14/2014
0.37.2.322 2,365 11/5/2014
0.37.2.321 1,899 10/29/2014
0.37.2.320 1,846 10/29/2014
0.37.2.319 1,785 10/28/2014
0.37.1.318 1,796 10/25/2014
0.37.1.317 1,769 10/16/2014
0.37.1.316 1,826 10/13/2014
0.37.0.315 1,818 10/12/2014
0.36.5.314 1,820 10/11/2014
0.36.5.313 1,854 10/9/2014
0.36.4.312 1,854 10/8/2014
0.36.4.311 1,937 10/8/2014
0.36.4.310 1,921 10/3/2014
0.36.3.309 1,783 10/1/2014
0.36.2.308 1,891 9/28/2014
0.36.1.307 1,844 9/20/2014
0.36.1.306 1,766 9/17/2014
0.36.0.305 1,811 9/15/2014
0.35.6.304 1,929 9/1/2014
0.35.6.303 1,867 8/28/2014
0.35.6.302 1,823 8/16/2014
0.35.6.301 1,798 8/15/2014
0.35.5.300 1,795 8/14/2014
0.35.4.299 1,858 8/14/2014
0.35.4.298 1,899 8/13/2014
0.35.4.297 1,761 8/11/2014
0.35.3.296 1,754 8/10/2014
0.35.3.295 1,933 8/8/2014
0.35.3.294 1,904 8/5/2014
0.35.1.288 1,834 8/1/2014
0.35.1.287 1,904 8/1/2014
0.35.1.286 1,849 8/1/2014
0.35.1.285 1,816 7/29/2014
0.35.1.284 1,842 7/23/2014
0.35.1.283 1,794 7/23/2014
0.35.0.282 1,834 7/22/2014
0.35.0.281 1,825 7/15/2014
0.34.0.280 1,758 7/11/2014
0.34.0.279 1,773 7/9/2014
0.33.2.278 1,757 7/9/2014
0.33.2.277 1,856 7/2/2014
0.33.1.276 1,932 6/24/2014
0.33.1.275 1,813 6/19/2014
0.33.0.274 1,913 6/19/2014
0.33.0.273 1,919 6/16/2014
0.32.3.272 1,842 6/14/2014
0.32.2.271 1,902 6/5/2014
0.32.1.270 1,857 6/1/2014
0.32.1.269 1,850 6/1/2014
0.32.1.268 1,746 5/26/2014
0.32.0.267 1,807 5/23/2014
0.32.0.266 1,871 5/22/2014
0.32.0.265 1,856 5/21/2014
0.32.0.264 1,780 5/21/2014
0.32.0.263 1,813 5/20/2014
0.32.0.262 1,874 5/19/2014
0.31.1.261 1,896 5/19/2014
0.31.1.260 1,837 5/19/2014
0.31.0.259 1,841 5/16/2014
0.30.2.258 1,833 5/15/2014
0.30.2.257 1,858 5/14/2014
0.30.2.254 1,858 5/8/2014
0.30.2.252 1,993 4/30/2014
0.30.2.251 1,826 4/30/2014
0.30.1.250 2,043 4/29/2014
0.30.0.249 1,883 4/28/2014
0.30.0.248 2,201 4/24/2014
0.30.0.247 2,089 4/17/2014
0.29.0.246 2,072 4/16/2014
0.28.5.245 1,984 4/14/2014
0.28.4.242 2,026 4/5/2014
0.28.4.241 2,004 4/4/2014
0.28.4.240 1,911 4/3/2014
0.28.4.232 1,893 3/31/2014
0.28.3.231 1,974 3/27/2014
0.28.3.230 1,952 3/27/2014
0.28.3.229 2,023 3/19/2014
0.28.2.227 1,969 3/14/2014
0.28.2.226 1,960 3/13/2014
0.28.2.225 1,912 3/5/2014
0.28.1.224 1,912 3/4/2014
0.27.5.222 1,909 2/28/2014
0.27.5.221 1,864 2/28/2014
0.27.4.220 1,997 2/26/2014
0.27.3.219 1,820 2/25/2014
0.27.2.218 1,857 2/25/2014
0.27.1.216 1,866 2/14/2014
0.27.0.215 1,867 2/12/2014
0.26.7.214 1,974 2/12/2014
0.26.7.213 1,907 2/11/2014
0.26.7.212 1,912 2/10/2014
0.26.7.211 1,935 2/10/2014
0.26.6.210 1,813 2/10/2014
0.26.5.209 1,869 2/10/2014
0.26.5.208 1,875 2/5/2014
0.26.5.207 1,871 2/4/2014
0.26.4.206 1,878 2/4/2014
0.26.3.204 1,832 2/4/2014
0.26.3.203 1,866 2/3/2014
0.26.3.202 1,859 1/30/2014
0.26.3.198 1,870 1/30/2014
0.26.2.194 1,860 1/23/2014
0.26.1.193 1,870 1/20/2014
0.26.1.191 1,873 1/17/2014
0.26.1.189 1,930 1/16/2014
0.26.1.188 1,915 1/15/2014
0.26.1.187 1,866 1/15/2014
0.26.1.186 1,867 1/13/2014
0.26.1.185 1,865 1/3/2014
0.26.1.184 1,910 1/2/2014
0.26.1.183 1,894 12/20/2013
0.26.0.182 1,873 12/19/2013
0.26.0.181 1,914 12/16/2013
0.25.4.180 1,843 12/16/2013
0.25.4.179 1,830 12/16/2013
0.25.3.178 1,840 12/13/2013
0.25.3.177 1,881 12/13/2013