EasyNetQ.DI.Ninject 8.0.0-beta93

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-beta93
                    
NuGet\Install-Package EasyNetQ.DI.Ninject -Version 8.0.0-beta93
                    
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-beta93" />
                    
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-beta93" />
                    
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-beta93
                    
#r "nuget: EasyNetQ.DI.Ninject, 8.0.0-beta93"
                    
#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 EasyNetQ.DI.Ninject@8.0.0-beta93
                    
#: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=EasyNetQ.DI.Ninject&version=8.0.0-beta93&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Ninject&version=8.0.0-beta93&prerelease
                    
Install 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.

Contributors

Thanks to all the people who already contributed!

<a href="https://github.com/EasyNetQ/EasyNetQ/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=EasyNetQ/EasyNetQ" /> </a>

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 172 3/15/2024
8.0.0-beta95 298 10/22/2023
8.0.0-beta94 198 6/18/2023
8.0.0-beta93 249 6/17/2023
8.0.0-beta92 207 6/17/2023
8.0.0-beta91 215 6/11/2023
8.0.0-beta90 222 5/8/2023
8.0.0-beta9 244 3/21/2023
8.0.0-beta8 251 2/20/2023
8.0.0-beta6 245 1/29/2023
8.0.0-beta5 248 1/20/2023
8.0.0-beta4 277 1/5/2023
8.0.0-beta3 268 12/29/2022
8.0.0-beta2 260 12/16/2022
8.0.0-beta10 227 3/21/2023
8.0.0-beta1 248 12/15/2022
8.0.0-alpha9 255 12/14/2022
8.0.0-alpha8 260 11/30/2022
8.0.0-alpha7 259 11/12/2022
8.0.0-alpha6 265 10/29/2022
8.0.0-alpha5 254 10/5/2022
8.0.0-alpha4 308 10/1/2022
8.0.0-alpha3 318 9/26/2022
8.0.0-alpha2 306 9/21/2022
8.0.0-alpha1 332 9/19/2022
7.8.0 68,440 12/16/2023
7.7.0 610 11/19/2023
7.6.0 772 10/12/2023
7.5.5 594 7/20/2023
7.5.4 268 7/19/2023
7.5.3 293 6/15/2023
7.5.2 392 5/14/2023
7.5.1 649 5/4/2023
7.5.0 562 3/25/2023
7.4.3 49,843 2/3/2023
7.4.1 553 1/31/2023
7.4.0 528 1/29/2023
7.3.12 607 1/23/2023
7.3.11 621 1/22/2023
7.3.10 558 1/19/2023
7.3.9 565 1/17/2023
7.3.8 613 1/4/2023
7.3.7 600 12/22/2022
7.3.6 546 12/19/2022
7.3.5 588 11/30/2022
7.3.4 577 11/30/2022
7.3.3 740 11/24/2022
7.3.2 678 11/15/2022
7.3.1 638 11/12/2022
7.3.0 809 10/29/2022
7.3.0-alpha3 252 10/15/2022
7.3.0-alpha2 244 10/15/2022
7.2.1 853 10/9/2022
7.2.1-alpha1 238 10/6/2022
7.2.0 899 9/17/2022
7.2.0-alpha1 322 9/15/2022
7.1.1-alpha1 329 9/14/2022
7.1.0 841 9/13/2022
7.0.4 813 9/7/2022
7.0.3 764 9/5/2022
7.0.3-alpha1 240 9/5/2022
7.0.2 753 9/5/2022
7.0.1 755 8/27/2022
7.0.0 885 7/23/2022
7.0.0-rc5 297 6/28/2022
7.0.0-rc4 294 6/27/2022
7.0.0-rc3 300 6/20/2022
7.0.0-rc2 281 6/9/2022
7.0.0-rc1 291 6/9/2022
7.0.0-beta9 275 6/8/2022
7.0.0-beta7 278 6/5/2022
7.0.0-beta6 288 5/24/2022
7.0.0-beta5 350 11/18/2021
7.0.0-beta4 339 11/9/2021
7.0.0-beta3 373 11/6/2021
7.0.0-beta2 412 9/29/2021
7.0.0-beta1 391 9/13/2021
7.0.0-alpha9 363 8/25/2021
7.0.0-alpha8 355 8/25/2021
7.0.0-alpha7 369 8/25/2021
7.0.0-alpha6 391 8/16/2021
7.0.0-alpha5 367 8/16/2021
7.0.0-alpha4 545 1/20/2021
7.0.0-alpha3 548 12/31/2020
7.0.0-alpha2 520 12/28/2020
6.5.2 1,439 6/20/2022
6.4.1 790 5/22/2022
6.4.0-alpha0096 552 12/6/2020
6.4.0-alpha0095 561 12/6/2020
6.4.0-alpha0094 620 12/6/2020
6.4.0-alpha.99 333 12/26/2020
6.4.0-alpha.97 337 12/9/2020
6.3.1 41,341 11/28/2020
6.3.0 1,173 11/22/2020
6.2.0 1,080 11/15/2020
6.1.0 993 11/10/2020
6.0.3 930 11/9/2020
6.0.2 1,040 11/6/2020
6.0.1 1,057 11/1/2020
5.6.0 1,076 10/10/2020
5.5.0 1,067 10/5/2020
5.4.1 1,074 10/4/2020
5.4.0 1,017 10/1/2020
5.3.0-alpha0079 645 6/16/2020
5.3.0-alpha0078 613 6/15/2020
5.3.0-alpha0077 599 6/15/2020
5.3.0-alpha0076 627 6/15/2020
5.3.0-alpha0075 607 6/14/2020
5.3.0-alpha0074 586 6/12/2020
5.3.0-alpha0073 621 6/12/2020
5.3.0-alpha0072 585 6/11/2020
5.3.0-alpha0070 686 6/7/2020
5.2.2 1,028 9/4/2020
5.2.1 1,021 9/3/2020
5.2.0 1,170 6/7/2020
5.2.0-alpha0073 595 5/26/2020
5.2.0-alpha0072 683 5/25/2020
5.2.0-alpha0071 660 5/25/2020
5.2.0-alpha0070 653 5/24/2020
5.2.0-alpha0069 611 5/24/2020
5.2.0-alpha0066 578 5/21/2020
5.2.0-alpha0065 646 5/20/2020
5.2.0-alpha0064 638 5/17/2020
5.2.0-alpha0057 666 5/10/2020
5.2.0-alpha0056 621 5/8/2020
5.1.2 1,124 5/24/2020
5.1.1 1,118 5/10/2020
5.1.0 1,113 5/7/2020
5.1.0-alpha0055 652 5/3/2020
5.1.0-alpha0054 741 5/3/2020
5.1.0-alpha0053 687 4/30/2020
5.0.5 1,099 5/4/2020
5.0.4 1,016 5/3/2020
5.0.3 1,077 5/2/2020
5.0.2 1,080 5/2/2020
5.0.1 1,063 5/2/2020
5.0.0 1,142 4/29/2020
4.1.0-alpha0014 654 4/29/2020
4.1.0-alpha0013 659 4/24/2020
4.1.0-alpha0005 645 4/20/2020
4.1.0-alpha0004 659 4/18/2020
4.1.0-alpha0001 662 4/17/2020
4.0.9 1,122 4/29/2020
4.0.8 1,125 4/28/2020
4.0.7 1,091 4/27/2020
4.0.6 1,035 4/24/2020
4.0.5 1,047 4/22/2020
4.0.4 1,051 4/21/2020
4.0.3 1,010 4/20/2020
4.0.2 1,082 4/20/2020
4.0.1 1,074 4/20/2020
4.0.0 1,032 4/18/2020
3.8.0 1,094 4/17/2020
3.8.0-alpha0048 677 2/28/2020
3.8.0-alpha0042 691 2/13/2020
3.8.0-alpha0041 704 1/8/2020
3.8.0-alpha0040 659 9/26/2019
3.8.0-alpha0039 686 9/25/2019
3.7.1 2,149 9/25/2019
3.7.0 1,091 9/23/2019
3.7.0-alpha0038 722 8/3/2019
3.7.0-alpha0037 721 8/1/2019
3.6.0 1,333 7/17/2019
3.6.0-alpha0036 767 6/4/2019
3.6.0-alpha0035 768 6/2/2019
3.6.0-alpha0034 760 6/2/2019
3.6.0-alpha0033 757 6/2/2019
3.6.0-alpha0031 739 5/4/2019
3.5.2 1,199 7/11/2019
3.5.1 3,119 6/2/2019
3.5.0 1,577 5/2/2019
3.5.0-alpha0036 767 4/10/2019
3.5.0-alpha0031 754 3/25/2019
3.5.0-alpha0030 768 3/21/2019
3.5.0-alpha0029 725 3/19/2019
3.5.0-alpha0027 759 3/18/2019
3.5.0-alpha0026 714 3/18/2019
3.5.0-alpha0025 692 3/17/2019
3.5.0-alpha0024 716 3/16/2019
3.5.0-alpha0021 734 3/15/2019
3.5.0-alpha0020 732 3/14/2019
3.5.0-alpha0019 777 3/14/2019
3.5.0-alpha0018 730 3/14/2019
3.5.0-alpha0013 707 3/14/2019
3.4.5 1,286 3/21/2019
3.4.4 1,226 3/16/2019
3.4.3 1,221 3/14/2019
3.4.2 1,219 3/13/2019
3.4.1 1,149 3/12/2019
3.4.0 1,363 2/19/2019
3.4.0-alpha0022 828 1/27/2019
3.4.0-alpha0021 844 1/25/2019
3.4.0-alpha0020 885 12/21/2018
3.4.0-alpha0019 849 12/6/2018
3.4.0-alpha0018 874 11/21/2018
3.4.0-alpha0017 891 11/20/2018
3.4.0-alpha0016 870 11/5/2018
3.4.0-alpha0015 921 11/2/2018
3.4.0-alpha0011 905 11/1/2018
3.4.0-alpha0010 969 10/3/2018
3.4.0-alpha0009 981 9/16/2018
3.4.0-alpha0008 1,002 9/1/2018
3.4.0-alpha0007 948 8/29/2018
3.4.0-alpha0006 925 8/28/2018
3.4.0-alpha0005 919 8/28/2018
3.4.0-alpha0004 988 8/23/2018
3.4.0-alpha0003 969 8/22/2018
3.4.0-alpha0002 1,050 8/10/2018
3.4.0-alpha0001 1,093 7/30/2018
3.3.9 1,360 1/25/2019
3.3.8 1,396 1/18/2019
3.3.7 1,376 1/5/2019
3.3.6 1,325 12/19/2018
3.3.5 1,835 11/21/2018
3.3.4 1,390 11/20/2018
3.3.3 1,551 11/11/2018
3.3.2 1,517 10/12/2018
3.3.1 1,479 8/28/2018
3.3.0 2,164 7/18/2018
3.3.0-alpha0007 1,298 7/18/2018
3.3.0-alpha0006 1,307 7/17/2018
3.3.0-alpha0005 1,259 7/17/2018
3.3.0-alpha0004 1,095 7/17/2018
3.3.0-alpha0003 1,314 7/15/2018
3.3.0-alpha0001 1,278 7/11/2018
3.2.0 1,769 7/12/2018
3.1.2 1,544 7/11/2018
3.1.1 1,588 7/4/2018
3.1.0 1,856 6/20/2018
3.1.0-alpha0019 1,312 7/4/2018
3.1.0-alpha0017 1,100 7/2/2018
3.1.0-alpha0016 1,107 6/30/2018
3.1.0-alpha0014 1,132 6/26/2018
3.1.0-alpha0011 1,343 6/23/2018
3.1.0-alpha0010 1,294 6/20/2018
3.1.0-alpha0009 1,291 6/20/2018
3.1.0-alpha0008 1,083 6/19/2018
3.1.0-alpha0007 1,298 6/17/2018
3.1.0-alpha0006 1,318 6/14/2018
3.1.0-alpha0005 1,122 6/14/2018
3.1.0-alpha0004 1,376 5/28/2018
3.0.1 1,638 7/4/2018
3.0.0 2,020 5/24/2018
2.4.0-alpha0027 1,160 5/23/2018
2.4.0-alpha0026 1,326 5/23/2018
2.4.0-alpha0025 1,302 5/22/2018
2.4.0-alpha0024 1,285 5/18/2018
2.4.0-alpha0023 1,398 5/16/2018
2.4.0-alpha0022 1,478 5/16/2018
2.4.0-alpha0021 1,413 5/15/2018
2.4.0-alpha0020 1,403 5/15/2018
2.4.0-alpha0019 1,447 4/20/2018
2.4.0-alpha0017 1,136 4/19/2018
2.4.0-alpha0016 1,331 4/13/2018
2.4.0-alpha0015 1,294 4/3/2018
2.4.0-alpha0014 1,371 4/1/2018
2.4.0-alpha0013 1,707 3/30/2018
2.4.0-alpha0009 1,163 2/20/2018
2.4.0-alpha0002 1,208 12/1/2017
2.3.3 2,276 4/24/2018
2.3.1 2,454 2/20/2018
2.3.0 1,664 2/19/2018
2.3.0-alpha0006 1,146 11/21/2017
2.3.0-alpha0005 1,140 11/13/2017
2.3.0-alpha0002 1,196 9/18/2017
2.2.0 2,321 11/13/2017
2.2.0-alpha0009 1,144 9/14/2017
2.2.0-alpha0008 1,181 9/11/2017
2.2.0-alpha0007 1,158 9/10/2017
2.2.0-alpha0006 1,147 8/18/2017
2.2.0-alpha0002 1,219 8/18/2017
2.1.0 1,761 8/18/2017
2.1.0-alpha0022 1,141 8/18/2017
2.1.0-alpha0020 1,176 7/24/2017
2.1.0-alpha0018 1,234 7/13/2017
2.1.0-alpha0016 1,217 7/12/2017
2.1.0-alpha0011 1,247 7/11/2017
2.1.0-alpha0005 1,156 7/3/2017
2.1.0-alpha0002 1,213 7/3/2017
2.0.4 1,722 7/24/2017
2.0.4-unstable0013 1,316 6/26/2017
2.0.4-unstable0011 1,285 6/26/2017
2.0.4-unstable0010 1,323 6/11/2017
2.0.4-unstable0009 1,325 6/1/2017
2.0.4-unstable0007 1,336 5/4/2017
2.0.4-unstable0004 1,327 5/1/2017
2.0.4-unstable0003 1,344 5/1/2017
2.0.4-unstable0002 1,324 4/30/2017
2.0.4-unstable0001 1,307 4/27/2017
2.0.4-alpha0038 1,236 7/1/2017
2.0.3-unstable0064 1,264 4/27/2017
2.0.3-unstable0058 1,263 3/28/2017
2.0.3-unstable0057 1,276 3/15/2017
2.0.3-unstable0055 1,320 2/10/2017
2.0.3-unstable0053 1,256 2/9/2017
2.0.3-unstable0052 1,294 2/8/2017
1.1.4.506 1,886 7/6/2017
1.1.3.500 1,772 6/28/2017
1.1.2.497 1,709 6/21/2017
1.1.1.494 1,717 5/30/2017
1.1.0.492 1,744 5/4/2017
1.0.4.483 1,741 4/26/2017
1.0.3.481 1,733 4/4/2017
1.0.2.478 1,667 3/15/2017
1.0.1.475 1,779 2/10/2017
1.0.0.469 1,781 2/8/2017
1.0.0 1,754 6/30/2017
0.63.7.467 1,721 2/7/2017
0.63.6.463 1,721 2/7/2017
0.63.6.460 1,717 2/5/2017
0.63.5.454 3,076 10/17/2016
0.63.4.453 1,785 10/10/2016
0.63.3.452 1,714 9/26/2016
0.63.1.451 8,858 9/19/2016
0.63.1.450 1,809 9/11/2016
0.63.0.448 1,781 8/12/2016
0.62.1.445 1,711 8/8/2016
0.62.0.444 1,768 8/8/2016
0.61.1.443 1,739 8/5/2016
0.61.0.442 2,075 8/2/2016
0.60.1.441 1,992 7/31/2016
0.60.0.440 1,803 7/25/2016
0.59.0.439 1,796 7/18/2016
0.59.0.437 1,781 7/18/2016
0.59.0.436 1,769 7/18/2016
0.59.0.434 1,766 6/6/2016
0.58.0.433 1,834 5/2/2016
0.57.2.432 1,786 5/2/2016
0.57.2.431 2,145 4/25/2016
0.57.2.430 1,925 4/20/2016
0.57.1.429 1,796 4/20/2016
0.57.0.428 1,813 4/18/2016
0.56.0.427 2,595 4/1/2016
0.55.1.426 2,218 3/17/2016
0.55.0.425 1,829 3/1/2016
0.54.3.424 2,022 2/2/2016
0.54.2.423 1,729 2/1/2016
0.54.1.421 1,799 2/1/2016
0.54.0.420 1,762 1/28/2016
0.53.6.419 1,780 1/25/2016
0.53.6.418 1,859 1/6/2016
0.53.5.417 1,857 1/6/2016
0.53.5.416 1,796 1/5/2016
0.53.4.415 1,817 12/23/2015
0.53.3.414 1,941 12/9/2015
0.53.2.413 2,168 12/1/2015
0.53.1.412 1,995 11/28/2015
0.53.0.411 1,955 11/19/2015
0.52.0.410 1,862 11/18/2015
0.51.0.409 1,868 11/17/2015
0.51.0.408 1,886 11/16/2015
0.50.12.407 1,895 10/22/2015
0.50.12.406 1,873 10/22/2015
0.50.11.404 1,791 10/20/2015
0.50.10.403 1,884 10/10/2015
0.50.9.401 2,202 10/5/2015
0.50.8.400 1,889 9/28/2015
0.50.7.399 1,915 8/18/2015
0.50.6.398 1,894 8/11/2015
0.50.5.397 1,914 8/11/2015
0.50.5.396 1,989 8/11/2015
0.50.4.395 2,107 8/8/2015
0.50.3.394 2,043 8/7/2015
0.50.2.393 1,949 8/1/2015
0.50.1.392 1,913 6/17/2015
0.50.0.391 1,824 6/8/2015
0.49.3.390 1,954 5/20/2015
0.49.2.389 1,873 5/18/2015
0.49.1.388 1,878 5/18/2015
0.49.0.387 1,866 5/17/2015
0.48.1.386 1,898 5/10/2015
0.48.0.385 1,842 5/10/2015
0.47.10.384 1,917 5/8/2015
0.47.10.383 1,858 5/6/2015
0.47.10.382 1,867 5/5/2015
0.47.10.381 2,056 4/27/2015
0.47.10.380 4,798 4/1/2015
0.47.10.379 1,802 4/1/2015
0.47.9.378 1,918 3/31/2015
0.47.9.377 1,886 3/31/2015
0.47.9.376 1,868 3/30/2015
0.47.8.375 1,889 3/28/2015
0.47.7.374 1,870 3/25/2015
0.47.6.373 1,856 3/18/2015
0.47.5.372 1,823 3/17/2015
0.47.4.371 1,919 3/16/2015
0.47.3.370 1,942 3/15/2015
0.47.2.369 1,911 3/12/2015
0.47.1.368 2,350 3/4/2015
0.47.0.367 1,930 3/4/2015
0.46.1.366 2,238 3/3/2015
0.46.0.365 2,169 3/2/2015
0.45.0.364 1,900 3/2/2015
0.44.3.363 2,421 2/24/2015
0.44.2.362 2,080 2/24/2015
0.44.1.361 2,306 2/22/2015
0.44.0.360 2,173 2/18/2015
0.43.1.359 2,277 2/12/2015
0.43.0.358 1,949 2/7/2015
0.42.0.357 1,924 2/5/2015
0.41.0.356 1,930 2/4/2015
0.40.6.355 2,014 2/3/2015
0.40.3.354 1,805 2/2/2015
0.40.3.353 1,859 1/26/2015
0.40.3.352 1,880 1/20/2015
0.40.3.351 1,897 1/19/2015
0.40.2.350 1,902 1/19/2015
0.40.1.349 1,872 1/17/2015
0.40.1.348 1,976 1/15/2015
0.40.1.347 1,948 1/13/2015
0.40.1.346 1,831 1/12/2015
0.40.0.345 1,822 1/9/2015
0.40.0.344 1,809 1/9/2015
0.40.0.343 1,836 1/8/2015
0.40.0.342 1,911 1/8/2015
0.39.6.340 1,925 1/6/2015
0.39.5.339 1,854 1/5/2015
0.39.4.338 2,169 1/1/2015
0.39.4.337 2,364 12/23/2014
0.39.4.336 2,187 12/13/2014
0.39.2.335 2,184 12/12/2014
0.39.2.334 2,125 12/9/2014
0.39.2.333 2,087 12/5/2014
0.39.1.332 2,133 12/3/2014
0.39.1.331 2,073 12/2/2014
0.39.0.330 2,089 12/1/2014
0.38.2.329 2,102 11/26/2014
0.38.2.328 2,075 11/26/2014
0.38.1.327 2,075 11/25/2014
0.38.0.326 2,191 11/22/2014
0.38.0.325 2,111 11/20/2014
0.38.0.324 2,128 11/14/2014
0.37.2.323 2,060 11/14/2014
0.37.2.322 2,494 11/5/2014
0.37.2.321 2,028 10/29/2014
0.37.2.320 1,984 10/29/2014
0.37.2.319 1,928 10/28/2014
0.37.1.318 1,924 10/25/2014
0.37.1.317 1,886 10/16/2014
0.37.1.316 1,971 10/13/2014
0.37.0.315 1,950 10/12/2014
0.36.5.314 1,962 10/11/2014
0.36.5.313 1,997 10/9/2014
0.36.4.312 1,986 10/8/2014
0.36.4.311 2,076 10/8/2014
0.36.4.310 2,063 10/3/2014
0.36.3.309 1,901 10/1/2014
0.36.2.308 2,019 9/28/2014
0.36.1.307 1,986 9/20/2014
0.36.1.306 1,898 9/17/2014
0.36.0.305 1,941 9/15/2014
0.35.6.304 2,082 9/1/2014
0.35.6.303 2,014 8/28/2014
0.35.6.302 1,955 8/16/2014
0.35.6.301 1,945 8/15/2014
0.35.5.300 1,938 8/14/2014
0.35.4.299 2,004 8/14/2014
0.35.4.298 2,042 8/13/2014
0.35.4.297 1,897 8/11/2014
0.35.3.296 1,889 8/10/2014
0.35.3.295 2,068 8/8/2014
0.35.3.294 2,021 8/5/2014
0.35.1.288 1,973 8/1/2014
0.35.1.287 2,045 8/1/2014
0.35.1.286 1,987 8/1/2014
0.35.1.285 1,943 7/29/2014
0.35.1.284 1,972 7/23/2014
0.35.1.283 1,941 7/23/2014
0.35.0.282 1,991 7/22/2014
0.35.0.281 1,962 7/15/2014
0.34.0.280 1,887 7/11/2014
0.34.0.279 1,915 7/9/2014
0.33.2.278 1,889 7/9/2014
0.33.2.277 1,999 7/2/2014
0.33.1.276 2,072 6/24/2014
0.33.1.275 1,959 6/19/2014
0.33.0.274 2,057 6/19/2014
0.33.0.273 2,037 6/16/2014
0.32.3.272 1,988 6/14/2014
0.32.2.271 2,045 6/5/2014
0.32.1.270 1,988 6/1/2014
0.32.1.269 1,996 6/1/2014
0.32.1.268 1,890 5/26/2014
0.32.0.267 1,954 5/23/2014
0.32.0.266 2,022 5/22/2014
0.32.0.265 2,003 5/21/2014
0.32.0.264 1,923 5/21/2014
0.32.0.263 1,951 5/20/2014
0.32.0.262 2,010 5/19/2014
0.31.1.261 2,043 5/19/2014
0.31.1.260 1,985 5/19/2014
0.31.0.259 1,987 5/16/2014
0.30.2.258 1,984 5/15/2014
0.30.2.257 1,991 5/14/2014
0.30.2.254 2,006 5/8/2014
0.30.2.252 2,149 4/30/2014
0.30.2.251 1,975 4/30/2014
0.30.1.250 2,178 4/29/2014
0.30.0.249 2,039 4/28/2014
0.30.0.248 2,352 4/24/2014
0.30.0.247 2,230 4/17/2014
0.29.0.246 2,204 4/16/2014
0.28.5.245 2,127 4/14/2014
0.28.4.242 2,162 4/5/2014
0.28.4.241 2,146 4/4/2014
0.28.4.240 2,059 4/3/2014
0.28.4.232 2,028 3/31/2014
0.28.3.231 2,120 3/27/2014
0.28.3.230 2,095 3/27/2014
0.28.3.229 2,150 3/19/2014
0.28.2.227 2,116 3/14/2014
0.28.2.226 2,090 3/13/2014
0.28.2.225 2,060 3/5/2014
0.28.1.224 2,059 3/4/2014
0.27.5.222 2,055 2/28/2014
0.27.5.221 2,011 2/28/2014
0.27.4.220 2,131 2/26/2014
0.27.3.219 1,986 2/25/2014
0.27.2.218 2,004 2/25/2014
0.27.1.216 2,020 2/14/2014
0.27.0.215 1,987 2/12/2014
0.26.7.214 2,123 2/12/2014
0.26.7.213 2,058 2/11/2014
0.26.7.212 2,047 2/10/2014
0.26.7.211 2,083 2/10/2014
0.26.6.210 1,961 2/10/2014
0.26.5.209 2,002 2/10/2014
0.26.5.208 2,009 2/5/2014
0.26.5.207 2,008 2/4/2014
0.26.4.206 2,026 2/4/2014
0.26.3.204 1,980 2/4/2014
0.26.3.203 1,988 2/3/2014
0.26.3.202 2,007 1/30/2014
0.26.3.198 2,011 1/30/2014
0.26.2.194 2,009 1/23/2014
0.26.1.193 2,016 1/20/2014
0.26.1.191 2,010 1/17/2014
0.26.1.189 2,067 1/16/2014
0.26.1.188 2,076 1/15/2014
0.26.1.187 2,015 1/15/2014
0.26.1.186 2,023 1/13/2014
0.26.1.185 2,021 1/3/2014
0.26.1.184 2,046 1/2/2014
0.26.1.183 2,034 12/20/2013
0.26.0.182 2,019 12/19/2013
0.26.0.181 2,047 12/16/2013
0.25.4.180 1,996 12/16/2013
0.25.4.179 1,968 12/16/2013
0.25.3.178 1,988 12/13/2013
0.25.3.177 2,019 12/13/2013