EasyNetQ.DI.Autofac 8.0.0-beta91

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

Showing the top 1 NuGet packages that depend on EasyNetQ.DI.Autofac:

Package Downloads
PlutoStudio.Framework.RabbitMQ

PlutoStudio framework 是由 Pluto Studio 基于PlutoStudio所开发的一系列Api及框架。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.0-beta96 228 3/15/2024
8.0.0-beta95 338 10/22/2023
8.0.0-beta94 281 6/18/2023
8.0.0-beta93 245 6/17/2023
8.0.0-beta92 257 6/17/2023
8.0.0-beta91 264 6/11/2023
8.0.0-beta90 265 5/8/2023
8.0.0-beta9 281 3/21/2023
8.0.0-beta8 278 2/20/2023
8.0.0-beta6 300 1/29/2023
8.0.0-beta5 304 1/20/2023
8.0.0-beta4 319 1/5/2023
8.0.0-beta3 300 12/29/2022
8.0.0-beta2 296 12/16/2022
8.0.0-beta10 261 3/21/2023
8.0.0-beta1 291 12/15/2022
8.0.0-alpha9 285 12/14/2022
8.0.0-alpha8 308 11/30/2022
8.0.0-alpha7 306 11/12/2022
8.0.0-alpha6 300 10/29/2022
8.0.0-alpha5 244 10/5/2022
8.0.0-alpha4 328 10/1/2022
8.0.0-alpha3 363 9/26/2022
8.0.0-alpha2 326 9/21/2022
8.0.0-alpha1 361 9/19/2022
7.8.0 87,764 12/16/2023
7.7.0 1,830 11/19/2023
7.6.0 4,695 10/12/2023
7.5.5 3,559 7/20/2023
7.5.4 261 7/19/2023
7.5.3 11,644 6/15/2023
7.5.2 6,981 5/14/2023
7.5.1 783 5/4/2023
7.5.0 3,588 3/25/2023
7.4.3 17,544 2/3/2023
7.4.1 896 1/31/2023
7.4.0 990 1/29/2023
7.3.12 697 1/23/2023
7.3.11 662 1/22/2023
7.3.10 651 1/19/2023
7.3.9 28,401 1/17/2023
7.3.8 1,226 1/4/2023
7.3.7 852 12/22/2022
7.3.6 889 12/19/2022
7.3.5 993 11/30/2022
7.3.4 695 11/30/2022
7.3.3 886 11/24/2022
7.3.2 10,783 11/15/2022
7.3.1 781 11/12/2022
7.3.0 15,760 10/29/2022
7.3.0-alpha3 298 10/15/2022
7.2.1 1,242 10/9/2022
7.2.1-alpha1 286 10/6/2022
7.2.0 7,773 9/17/2022
7.2.0-alpha1 351 9/15/2022
7.1.1-alpha1 366 9/14/2022
7.1.0 932 9/13/2022
7.0.4 3,062 9/7/2022
7.0.3 748 9/5/2022
7.0.3-alpha1 280 9/5/2022
7.0.2 831 9/5/2022
7.0.1 1,045 8/27/2022
7.0.0 3,519 7/23/2022
7.0.0-rc5 289 6/28/2022
7.0.0-rc4 327 6/27/2022
7.0.0-rc3 323 6/20/2022
7.0.0-rc2 296 6/9/2022
7.0.0-rc1 306 6/9/2022
7.0.0-beta9 331 6/8/2022
7.0.0-beta7 347 6/5/2022
7.0.0-beta6 315 5/24/2022
7.0.0-beta5 457 11/18/2021
7.0.0-beta4 398 11/9/2021
7.0.0-beta3 452 11/6/2021
7.0.0-beta2 422 9/29/2021
7.0.0-beta1 424 9/13/2021
7.0.0-alpha9 397 8/25/2021
7.0.0-alpha8 393 8/25/2021
7.0.0-alpha7 391 8/25/2021
7.0.0-alpha6 387 8/16/2021
7.0.0-alpha5 417 8/16/2021
7.0.0-alpha4 1,121 1/20/2021
7.0.0-alpha3 707 12/31/2020
7.0.0-alpha2 672 12/28/2020
6.5.2 43,624 6/20/2022
6.4.1 4,651 5/22/2022
6.4.0-alpha0096 835 12/6/2020
6.4.0-alpha0095 730 12/6/2020
6.4.0-alpha0094 719 12/6/2020
6.4.0-alpha.99 351 12/26/2020
6.4.0-alpha.97 365 12/9/2020
6.3.1 137,197 11/28/2020
6.3.0 10,363 11/22/2020
6.2.0 1,619 11/15/2020
6.1.0 1,819 11/10/2020
6.0.3 1,128 11/9/2020
6.0.2 1,168 11/6/2020
6.0.1 1,759 11/1/2020
5.6.0 4,759 10/10/2020
5.5.0 4,088 10/5/2020
5.4.1 1,216 10/4/2020
5.4.0 1,290 10/1/2020
5.3.0-alpha0079 815 6/16/2020
5.3.0-alpha0078 738 6/15/2020
5.3.0-alpha0077 749 6/15/2020
5.3.0-alpha0076 783 6/15/2020
5.3.0-alpha0075 758 6/14/2020
5.3.0-alpha0074 801 6/12/2020
5.3.0-alpha0073 821 6/12/2020
5.3.0-alpha0072 794 6/11/2020
5.3.0-alpha0070 827 6/7/2020
5.2.2 1,535 9/4/2020
5.2.1 113,363 9/3/2020
5.2.0 71,718 6/7/2020
5.2.0-alpha0073 804 5/26/2020
5.2.0-alpha0072 854 5/25/2020
5.2.0-alpha0071 795 5/25/2020
5.2.0-alpha0070 827 5/24/2020
5.2.0-alpha0069 840 5/24/2020
5.2.0-alpha0066 757 5/21/2020
5.2.0-alpha0065 803 5/20/2020
5.2.0-alpha0064 860 5/17/2020
5.2.0-alpha0057 830 5/10/2020
5.2.0-alpha0056 775 5/8/2020
5.1.2 3,418 5/24/2020
5.1.1 1,433 5/10/2020
5.1.0 1,258 5/7/2020
5.1.0-alpha0055 799 5/3/2020
5.1.0-alpha0054 878 5/3/2020
5.1.0-alpha0053 803 4/30/2020
5.0.5 1,456 5/4/2020
5.0.4 4,600 5/3/2020
5.0.3 1,329 5/2/2020
5.0.2 1,270 5/2/2020
5.0.1 1,250 5/2/2020
5.0.0 1,407 4/29/2020
4.1.0-alpha0014 807 4/29/2020
4.1.0-alpha0013 761 4/24/2020
4.1.0-alpha0005 834 4/20/2020
4.1.0-alpha0004 788 4/18/2020
4.1.0-alpha0001 806 4/17/2020
4.0.9 1,260 4/29/2020
4.0.8 1,386 4/28/2020
4.0.7 1,302 4/27/2020
4.0.6 1,431 4/24/2020
4.0.5 1,379 4/22/2020
4.0.4 1,287 4/21/2020
4.0.3 1,345 4/20/2020
4.0.2 1,272 4/20/2020
4.0.1 1,287 4/20/2020
4.0.0 1,338 4/18/2020
3.8.0 1,833 4/17/2020
3.8.0-alpha0048 937 2/28/2020
3.8.0-alpha0042 1,773 2/13/2020
3.8.0-alpha0041 3,054 1/8/2020
3.8.0-alpha0040 918 9/26/2019
3.8.0-alpha0039 837 9/25/2019
3.7.1 64,864 9/25/2019
3.7.0 1,520 9/23/2019
3.7.0-alpha0038 1,045 8/3/2019
3.7.0-alpha0037 899 8/1/2019
3.6.0 16,308 7/17/2019
3.6.0-alpha0036 1,009 6/4/2019
3.6.0-alpha0035 995 6/2/2019
3.6.0-alpha0034 978 6/2/2019
3.6.0-alpha0033 1,009 6/2/2019
3.6.0-alpha0031 922 5/4/2019
3.5.2 37,553 7/11/2019
3.5.1 4,338 6/2/2019
3.5.0 6,344 5/2/2019
3.5.0-alpha0036 965 4/10/2019
3.5.0-alpha0031 949 3/25/2019
3.5.0-alpha0030 933 3/21/2019
3.5.0-alpha0029 912 3/19/2019
3.5.0-alpha0027 934 3/18/2019
3.5.0-alpha0026 895 3/18/2019
3.5.0-alpha0025 918 3/17/2019
3.5.0-alpha0024 903 3/16/2019
3.5.0-alpha0021 934 3/15/2019
3.5.0-alpha0020 941 3/14/2019
3.5.0-alpha0019 930 3/14/2019
3.5.0-alpha0018 939 3/14/2019
3.5.0-alpha0013 938 3/14/2019
3.4.5 4,019 3/21/2019
3.4.4 1,799 3/16/2019
3.4.3 1,564 3/14/2019
3.4.2 1,539 3/13/2019
3.4.1 1,491 3/12/2019
3.4.0 48,623 2/19/2019
3.4.0-alpha0022 1,031 1/27/2019
3.4.0-alpha0021 1,000 1/25/2019
3.4.0-alpha0020 1,015 12/21/2018
3.4.0-alpha0019 1,081 12/6/2018
3.4.0-alpha0018 1,065 11/21/2018
3.4.0-alpha0017 1,087 11/20/2018
3.4.0-alpha0016 1,128 11/5/2018
3.4.0-alpha0015 1,151 11/2/2018
3.4.0-alpha0011 1,141 11/1/2018
3.4.0-alpha0010 1,188 10/3/2018
3.4.0-alpha0009 1,154 9/16/2018
3.4.0-alpha0008 1,148 9/1/2018
3.4.0-alpha0007 1,180 8/29/2018
3.4.0-alpha0006 1,173 8/28/2018
3.4.0-alpha0005 1,147 8/28/2018
3.4.0-alpha0004 1,216 8/23/2018
3.4.0-alpha0003 1,200 8/22/2018
3.4.0-alpha0002 1,180 8/10/2018
3.4.0-alpha0001 1,423 7/30/2018
3.3.9 4,007 1/25/2019
3.3.8 1,698 1/18/2019
3.3.7 1,864 1/5/2019
3.3.6 1,857 12/19/2018
3.3.5 1,977 11/21/2018
3.3.4 1,868 11/20/2018
3.3.3 2,201 11/11/2018
3.3.2 2,254 10/12/2018
3.3.1 15,762 8/28/2018
3.3.0 5,189 7/18/2018
3.3.0-alpha0007 1,417 7/18/2018
3.3.0-alpha0006 1,612 7/17/2018
3.3.0-alpha0005 1,635 7/17/2018
3.3.0-alpha0004 1,342 7/17/2018
3.3.0-alpha0003 1,655 7/15/2018
3.3.0-alpha0001 1,654 7/11/2018
3.2.0 2,341 7/12/2018
3.1.2 2,050 7/11/2018
3.1.1 2,052 7/4/2018
3.1.0 3,935 6/20/2018
3.1.0-alpha0019 1,653 7/4/2018
3.1.0-alpha0017 1,477 7/2/2018
3.1.0-alpha0016 1,620 6/30/2018
3.1.0-alpha0014 1,681 6/26/2018
3.1.0-alpha0011 1,430 6/23/2018
3.1.0-alpha0010 1,696 6/20/2018
3.1.0-alpha0009 1,402 6/20/2018
3.1.0-alpha0008 1,422 6/19/2018
3.1.0-alpha0007 1,642 6/17/2018
3.1.0-alpha0006 1,649 6/14/2018
3.1.0-alpha0005 1,639 6/14/2018
3.1.0-alpha0004 1,741 5/28/2018
3.0.1 2,324 7/4/2018
3.0.0 6,367 5/24/2018
2.4.0-alpha0027 1,614 5/23/2018
2.4.0-alpha0026 1,711 5/23/2018
2.4.0-alpha0025 1,630 5/22/2018
2.4.0-alpha0024 1,607 5/18/2018
2.4.0-alpha0023 1,436 5/16/2018
2.4.0-alpha0022 1,770 5/16/2018
2.4.0-alpha0021 1,626 5/15/2018
2.4.0-alpha0020 1,651 5/15/2018
2.4.0-alpha0019 1,750 4/20/2018
2.4.0-alpha0017 1,661 4/19/2018
2.4.0-alpha0016 1,633 4/13/2018
2.4.0-alpha0015 1,612 4/3/2018
2.4.0-alpha0014 1,697 4/1/2018
2.4.0-alpha0013 2,054 3/30/2018
2.4.0-alpha0009 1,646 2/20/2018
2.4.0-alpha0002 1,512 12/1/2017
2.3.3 7,011 4/24/2018
2.3.1 17,797 2/20/2018
2.3.0 2,195 2/19/2018
2.3.0-alpha0006 2,052 11/21/2017
2.3.0-alpha0005 1,442 11/13/2017
2.3.0-alpha0002 1,806 9/18/2017
2.2.0 42,949 11/13/2017
2.2.0-alpha0009 1,462 9/14/2017
2.2.0-alpha0008 1,399 9/11/2017
2.2.0-alpha0007 1,424 9/10/2017
2.2.0-alpha0006 1,442 8/18/2017
2.2.0-alpha0002 1,436 8/18/2017
2.1.0 3,392 8/18/2017
2.1.0-alpha0022 1,408 8/18/2017
2.1.0-alpha0020 1,470 7/24/2017
2.1.0-alpha0018 1,507 7/13/2017
2.1.0-alpha0016 1,472 7/12/2017
2.1.0-alpha0011 1,505 7/11/2017
2.1.0-alpha0005 1,477 7/3/2017
2.1.0-alpha0002 1,485 7/3/2017
2.0.4 2,854 7/24/2017
2.0.4-unstable0013 1,637 6/26/2017
2.0.4-unstable0011 1,572 6/26/2017
2.0.4-unstable0010 1,610 6/11/2017
2.0.4-unstable0009 1,567 6/1/2017
2.0.4-unstable0007 3,308 5/4/2017
2.0.4-unstable0004 1,604 5/1/2017
2.0.4-unstable0003 1,604 5/1/2017
2.0.4-unstable0002 1,618 4/30/2017
2.0.4-unstable0001 1,546 4/27/2017
2.0.4-alpha0038 1,472 7/1/2017
2.0.3-unstable0064 1,522 4/27/2017
2.0.3-unstable0058 1,527 3/28/2017
2.0.3-unstable0057 1,516 3/15/2017
2.0.3-unstable0055 1,757 2/10/2017
2.0.3-unstable0053 1,576 2/9/2017
2.0.3-unstable0052 1,616 2/8/2017
1.1.4.506 2,150 7/6/2017
1.1.3.500 2,102 6/28/2017
1.1.2.497 2,006 6/21/2017
1.1.1.494 2,983 5/30/2017
1.1.0.492 2,155 5/4/2017
1.0.4.483 6,891 4/26/2017
1.0.3.481 2,040 4/4/2017
1.0.2.478 2,095 3/15/2017
1.0.1.475 2,240 2/10/2017
1.0.0.469 2,016 2/8/2017
1.0.0 2,015 6/30/2017
0.63.7.467 2,259 2/7/2017
0.63.6.463 2,030 2/7/2017
0.63.6.460 1,983 2/5/2017
0.63.5.454 2,453 10/17/2016
0.63.4.453 2,056 10/10/2016
0.63.3.452 2,133 9/26/2016
0.63.1.451 2,330 9/19/2016
0.63.1.450 2,100 9/11/2016
0.63.0.448 3,947 8/12/2016
0.62.1.445 2,113 8/8/2016
0.62.0.444 2,094 8/8/2016
0.61.1.443 2,101 8/5/2016
0.61.0.442 2,327 8/2/2016
0.60.1.441 2,195 7/31/2016
0.60.0.440 2,227 7/25/2016
0.59.0.439 2,136 7/18/2016
0.59.0.437 2,054 7/18/2016
0.59.0.436 2,038 7/18/2016
0.59.0.434 2,442 6/6/2016
0.58.0.433 2,349 5/2/2016
0.57.2.432 2,126 5/2/2016
0.57.2.431 2,388 4/25/2016
0.57.2.430 2,140 4/20/2016
0.57.1.429 2,031 4/20/2016
0.57.0.428 2,043 4/18/2016
0.56.0.427 2,305 4/1/2016
0.55.1.426 2,482 3/17/2016
0.55.0.425 3,461 3/1/2016
0.54.3.424 2,467 2/2/2016
0.54.2.423 2,069 2/1/2016
0.54.1.421 2,033 2/1/2016
0.54.0.420 2,098 1/28/2016
0.53.6.419 2,111 1/25/2016
0.53.6.418 2,114 1/6/2016
0.53.5.417 2,067 1/6/2016
0.53.5.416 2,136 1/5/2016
0.53.4.415 2,161 12/23/2015
0.53.3.414 6,602 12/9/2015
0.53.2.413 2,489 12/1/2015
0.53.1.412 2,462 11/28/2015
0.53.0.411 2,263 11/19/2015
0.52.0.410 2,185 11/18/2015
0.51.0.409 2,138 11/17/2015
0.51.0.408 2,104 11/16/2015
0.50.12.407 6,563 10/22/2015
0.50.12.406 2,193 10/22/2015
0.50.11.404 2,137 10/20/2015
0.50.10.403 2,167 10/10/2015
0.50.9.401 2,509 10/5/2015
0.50.8.400 3,380 9/28/2015
0.50.7.399 2,729 8/18/2015
0.50.6.398 2,522 8/11/2015
0.50.5.397 2,585 8/11/2015
0.50.5.396 2,165 8/11/2015
0.50.4.395 2,492 8/8/2015
0.50.3.394 2,504 8/7/2015
0.50.2.393 2,317 8/1/2015
0.50.1.392 2,576 6/17/2015
0.50.0.391 2,350 6/8/2015
0.49.3.390 2,261 5/20/2015
0.49.2.389 2,122 5/18/2015
0.49.1.388 2,097 5/18/2015
0.49.0.387 2,078 5/17/2015
0.48.1.386 2,121 5/10/2015
0.48.0.385 2,125 5/10/2015
0.47.10.384 2,121 5/8/2015
0.47.10.383 2,271 5/6/2015
0.47.10.382 2,224 5/5/2015
0.47.10.381 2,292 4/27/2015
0.47.10.380 2,742 4/1/2015
0.47.10.379 2,218 4/1/2015
0.47.9.378 2,211 3/31/2015
0.47.9.377 2,177 3/31/2015
0.47.9.376 2,219 3/30/2015
0.47.8.375 2,165 3/28/2015
0.47.7.374 2,478 3/25/2015
0.47.6.373 2,912 3/18/2015
0.47.5.372 2,133 3/17/2015
0.47.4.371 2,203 3/16/2015
0.47.3.370 2,219 3/15/2015
0.47.2.369 2,137 3/12/2015
0.47.1.368 2,260 3/4/2015
0.47.0.367 2,223 3/4/2015
0.46.1.366 2,229 3/3/2015
0.46.0.365 2,151 3/2/2015
0.45.0.364 2,357 3/2/2015
0.44.3.363 2,251 2/24/2015
0.44.2.362 2,454 2/24/2015
0.44.1.361 2,573 2/22/2015
0.44.0.360 2,485 2/18/2015
0.43.1.359 2,437 2/12/2015
0.43.0.358 2,206 2/7/2015
0.42.0.357 2,168 2/5/2015
0.41.0.356 2,154 2/4/2015
0.40.6.355 2,199 2/3/2015
0.40.3.354 2,191 2/2/2015
0.40.3.353 2,222 1/26/2015
0.40.3.352 2,240 1/20/2015
0.40.3.351 2,207 1/19/2015
0.40.2.350 2,203 1/19/2015
0.40.1.349 2,225 1/17/2015
0.40.1.348 2,274 1/15/2015
0.40.1.347 2,187 1/13/2015
0.40.1.346 2,222 1/12/2015
0.40.0.345 2,213 1/9/2015
0.40.0.344 2,207 1/9/2015
0.40.0.343 2,222 1/8/2015
0.40.0.342 2,185 1/8/2015
0.39.6.340 2,333 1/6/2015
0.39.5.339 2,210 1/5/2015
0.39.4.338 2,718 1/1/2015
0.39.4.337 2,553 12/23/2014
0.39.4.336 2,514 12/13/2014
0.39.2.335 2,422 12/12/2014
0.39.2.334 2,401 12/9/2014
0.39.2.333 2,416 12/5/2014
0.39.1.332 2,368 12/3/2014
0.39.1.331 2,353 12/2/2014
0.39.0.330 2,328 12/1/2014
0.38.2.329 2,341 11/26/2014
0.38.2.328 2,327 11/26/2014
0.38.1.327 2,286 11/25/2014
0.38.0.326 2,332 11/22/2014
0.38.0.325 2,403 11/20/2014
0.38.0.324 2,408 11/14/2014
0.37.2.323 2,472 11/14/2014
0.37.2.322 2,683 11/5/2014
0.37.2.321 2,302 10/29/2014
0.37.2.320 2,132 10/29/2014
0.37.2.319 2,234 10/28/2014
0.37.1.318 2,263 10/25/2014
0.37.1.317 2,303 10/16/2014
0.37.1.316 2,198 10/13/2014
0.37.0.315 2,293 10/12/2014
0.36.5.314 2,273 10/11/2014
0.36.5.313 2,180 10/9/2014
0.36.4.312 2,155 10/8/2014
0.36.4.311 2,191 10/8/2014
0.36.4.310 2,203 10/3/2014
0.36.3.309 2,278 10/1/2014
0.36.2.308 2,189 9/28/2014
0.36.1.307 2,194 9/20/2014
0.36.1.306 2,217 9/17/2014
0.36.0.305 2,210 9/15/2014
0.35.6.304 2,249 9/1/2014
0.35.6.303 2,216 8/28/2014
0.35.6.302 2,271 8/16/2014
0.35.6.301 2,314 8/15/2014
0.35.5.300 2,216 8/14/2014
0.35.4.299 2,212 8/14/2014
0.35.4.298 2,257 8/13/2014
0.35.4.297 2,231 8/11/2014
0.35.3.296 2,152 8/10/2014
0.35.3.295 2,259 8/8/2014
0.35.3.294 2,175 8/5/2014
0.35.1.288 2,143 8/1/2014
0.35.1.287 2,213 8/1/2014
0.35.1.286 2,197 8/1/2014
0.35.1.285 2,186 7/29/2014
0.35.1.284 2,187 7/23/2014
0.35.1.283 2,192 7/23/2014
0.35.0.282 2,174 7/22/2014
0.35.0.281 2,191 7/15/2014
0.34.0.280 2,470 7/11/2014
0.34.0.279 2,151 7/9/2014
0.33.2.278 2,199 7/9/2014
0.33.2.277 2,174 7/2/2014
0.33.1.276 2,551 6/24/2014
0.33.1.275 2,201 6/19/2014
0.33.0.274 2,217 6/19/2014
0.33.0.273 2,243 6/16/2014
0.32.3.272 2,184 6/14/2014
0.32.2.271 2,289 6/5/2014
0.32.1.270 2,238 6/1/2014
0.32.1.269 2,232 6/1/2014
0.32.1.268 2,209 5/26/2014
0.32.0.267 2,206 5/23/2014
0.32.0.266 2,216 5/22/2014
0.32.0.265 2,194 5/21/2014
0.32.0.264 2,173 5/21/2014
0.32.0.263 2,234 5/20/2014
0.32.0.262 2,250 5/19/2014
0.31.1.261 2,216 5/19/2014
0.31.1.260 2,252 5/19/2014
0.31.0.259 2,253 5/16/2014
0.30.2.258 2,205 5/15/2014
0.30.2.257 2,209 5/14/2014
0.30.2.254 2,291 5/8/2014
0.30.2.252 2,262 4/30/2014
0.30.2.251 2,349 4/30/2014
0.30.1.250 2,230 4/29/2014
0.30.0.249 2,271 4/28/2014
0.30.0.248 2,335 4/24/2014
0.30.0.247 2,255 4/17/2014
0.29.0.246 2,358 4/16/2014
0.28.5.245 2,402 4/14/2014
0.28.4.242 2,350 4/5/2014
0.28.4.241 2,342 4/4/2014
0.28.4.240 2,353 4/3/2014
0.28.4.232 2,332 3/31/2014
0.28.3.231 2,345 3/27/2014
0.28.3.230 2,320 3/27/2014
0.28.3.229 2,294 3/19/2014
0.28.2.227 2,345 3/14/2014
0.28.2.226 2,326 3/13/2014
0.28.2.225 2,292 3/5/2014
0.28.1.224 2,227 3/4/2014
0.27.5.222 2,290 2/28/2014
0.27.5.221 2,322 2/28/2014
0.27.4.220 2,346 2/26/2014
0.27.3.219 2,392 2/25/2014
0.27.2.218 2,240 2/25/2014
0.27.1.216 2,325 2/14/2014
0.27.0.215 2,308 2/12/2014
0.26.7.214 2,302 2/12/2014
0.26.7.213 2,291 2/11/2014
0.26.7.212 2,283 2/10/2014
0.26.7.211 2,326 2/10/2014
0.26.6.210 2,352 2/10/2014
0.26.5.209 2,296 2/10/2014
0.26.5.208 2,277 2/5/2014
0.26.5.207 2,260 2/4/2014
0.26.4.206 2,244 2/4/2014
0.26.3.204 2,277 2/4/2014
0.26.3.203 2,312 2/3/2014