EasyNetQ.DI.Autofac 8.0.0-beta9

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

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 194 3/15/2024
8.0.0-beta95 322 10/22/2023
8.0.0-beta94 250 6/18/2023
8.0.0-beta93 225 6/17/2023
8.0.0-beta92 229 6/17/2023
8.0.0-beta91 232 6/11/2023
8.0.0-beta90 232 5/8/2023
8.0.0-beta9 243 3/21/2023
8.0.0-beta8 238 2/20/2023
8.0.0-beta6 261 1/29/2023
8.0.0-beta5 271 1/20/2023
8.0.0-beta4 284 1/5/2023
8.0.0-beta3 268 12/29/2022
8.0.0-beta2 269 12/16/2022
8.0.0-beta10 224 3/21/2023
8.0.0-beta1 260 12/15/2022
8.0.0-alpha9 247 12/14/2022
8.0.0-alpha8 268 11/30/2022
8.0.0-alpha7 271 11/12/2022
8.0.0-alpha6 265 10/29/2022
8.0.0-alpha5 221 10/5/2022
8.0.0-alpha4 294 10/1/2022
8.0.0-alpha3 325 9/26/2022
8.0.0-alpha2 289 9/21/2022
8.0.0-alpha1 334 9/19/2022
7.8.0 75,290 12/16/2023
7.7.0 1,783 11/19/2023
7.6.0 4,282 10/12/2023
7.5.5 3,496 7/20/2023
7.5.4 251 7/19/2023
7.5.3 11,264 6/15/2023
7.5.2 6,520 5/14/2023
7.5.1 738 5/4/2023
7.5.0 3,490 3/25/2023
7.4.3 17,499 2/3/2023
7.4.1 853 1/31/2023
7.4.0 955 1/29/2023
7.3.12 658 1/23/2023
7.3.11 630 1/22/2023
7.3.10 612 1/19/2023
7.3.9 27,271 1/17/2023
7.3.8 1,089 1/4/2023
7.3.7 806 12/22/2022
7.3.6 841 12/19/2022
7.3.5 956 11/30/2022
7.3.4 659 11/30/2022
7.3.3 850 11/24/2022
7.3.2 10,085 11/15/2022
7.3.1 746 11/12/2022
7.3.0 15,361 10/29/2022
7.3.0-alpha3 259 10/15/2022
7.2.1 1,209 10/9/2022
7.2.1-alpha1 259 10/6/2022
7.2.0 7,634 9/17/2022
7.2.0-alpha1 329 9/15/2022
7.1.1-alpha1 328 9/14/2022
7.1.0 887 9/13/2022
7.0.4 2,999 9/7/2022
7.0.3 718 9/5/2022
7.0.3-alpha1 246 9/5/2022
7.0.2 793 9/5/2022
7.0.1 1,007 8/27/2022
7.0.0 3,490 7/23/2022
7.0.0-rc5 263 6/28/2022
7.0.0-rc4 290 6/27/2022
7.0.0-rc3 278 6/20/2022
7.0.0-rc2 269 6/9/2022
7.0.0-rc1 280 6/9/2022
7.0.0-beta9 292 6/8/2022
7.0.0-beta7 310 6/5/2022
7.0.0-beta6 281 5/24/2022
7.0.0-beta5 416 11/18/2021
7.0.0-beta4 352 11/9/2021
7.0.0-beta3 413 11/6/2021
7.0.0-beta2 393 9/29/2021
7.0.0-beta1 393 9/13/2021
7.0.0-alpha9 360 8/25/2021
7.0.0-alpha8 361 8/25/2021
7.0.0-alpha7 351 8/25/2021
7.0.0-alpha6 358 8/16/2021
7.0.0-alpha5 367 8/16/2021
7.0.0-alpha4 1,082 1/20/2021
7.0.0-alpha3 665 12/31/2020
7.0.0-alpha2 639 12/28/2020
6.5.2 35,877 6/20/2022
6.4.1 4,592 5/22/2022
6.4.0-alpha0096 801 12/6/2020
6.4.0-alpha0095 689 12/6/2020
6.4.0-alpha0094 681 12/6/2020
6.4.0-alpha.99 321 12/26/2020
6.4.0-alpha.97 329 12/9/2020
6.3.1 136,800 11/28/2020
6.3.0 10,314 11/22/2020
6.2.0 1,572 11/15/2020
6.1.0 1,784 11/10/2020
6.0.3 1,098 11/9/2020
6.0.2 1,132 11/6/2020
6.0.1 1,721 11/1/2020
5.6.0 4,080 10/10/2020
5.5.0 4,026 10/5/2020
5.4.1 1,171 10/4/2020
5.4.0 1,242 10/1/2020
5.3.0-alpha0079 768 6/16/2020
5.3.0-alpha0078 690 6/15/2020
5.3.0-alpha0077 723 6/15/2020
5.3.0-alpha0076 738 6/15/2020
5.3.0-alpha0075 713 6/14/2020
5.3.0-alpha0074 761 6/12/2020
5.3.0-alpha0073 770 6/12/2020
5.3.0-alpha0072 762 6/11/2020
5.3.0-alpha0070 787 6/7/2020
5.2.2 1,486 9/4/2020
5.2.1 113,135 9/3/2020
5.2.0 71,292 6/7/2020
5.2.0-alpha0073 765 5/26/2020
5.2.0-alpha0072 811 5/25/2020
5.2.0-alpha0071 747 5/25/2020
5.2.0-alpha0070 774 5/24/2020
5.2.0-alpha0069 800 5/24/2020
5.2.0-alpha0066 712 5/21/2020
5.2.0-alpha0065 761 5/20/2020
5.2.0-alpha0064 814 5/17/2020
5.2.0-alpha0057 792 5/10/2020
5.2.0-alpha0056 735 5/8/2020
5.1.2 3,381 5/24/2020
5.1.1 1,384 5/10/2020
5.1.0 1,208 5/7/2020
5.1.0-alpha0055 755 5/3/2020
5.1.0-alpha0054 835 5/3/2020
5.1.0-alpha0053 767 4/30/2020
5.0.5 1,419 5/4/2020
5.0.4 4,555 5/3/2020
5.0.3 1,281 5/2/2020
5.0.2 1,223 5/2/2020
5.0.1 1,202 5/2/2020
5.0.0 1,351 4/29/2020
4.1.0-alpha0014 758 4/29/2020
4.1.0-alpha0013 718 4/24/2020
4.1.0-alpha0005 787 4/20/2020
4.1.0-alpha0004 760 4/18/2020
4.1.0-alpha0001 759 4/17/2020
4.0.9 1,220 4/29/2020
4.0.8 1,346 4/28/2020
4.0.7 1,255 4/27/2020
4.0.6 1,403 4/24/2020
4.0.5 1,330 4/22/2020
4.0.4 1,243 4/21/2020
4.0.3 1,316 4/20/2020
4.0.2 1,223 4/20/2020
4.0.1 1,242 4/20/2020
4.0.0 1,289 4/18/2020
3.8.0 1,749 4/17/2020
3.8.0-alpha0048 885 2/28/2020
3.8.0-alpha0042 1,746 2/13/2020
3.8.0-alpha0041 3,018 1/8/2020
3.8.0-alpha0040 874 9/26/2019
3.8.0-alpha0039 806 9/25/2019
3.7.1 64,773 9/25/2019
3.7.0 1,485 9/23/2019
3.7.0-alpha0038 1,001 8/3/2019
3.7.0-alpha0037 866 8/1/2019
3.6.0 16,261 7/17/2019
3.6.0-alpha0036 961 6/4/2019
3.6.0-alpha0035 943 6/2/2019
3.6.0-alpha0034 934 6/2/2019
3.6.0-alpha0033 967 6/2/2019
3.6.0-alpha0031 882 5/4/2019
3.5.2 37,459 7/11/2019
3.5.1 4,293 6/2/2019
3.5.0 6,288 5/2/2019
3.5.0-alpha0036 915 4/10/2019
3.5.0-alpha0031 894 3/25/2019
3.5.0-alpha0030 889 3/21/2019
3.5.0-alpha0029 869 3/19/2019
3.5.0-alpha0027 878 3/18/2019
3.5.0-alpha0026 864 3/18/2019
3.5.0-alpha0025 870 3/17/2019
3.5.0-alpha0024 874 3/16/2019
3.5.0-alpha0021 897 3/15/2019
3.5.0-alpha0020 904 3/14/2019
3.5.0-alpha0019 886 3/14/2019
3.5.0-alpha0018 894 3/14/2019
3.5.0-alpha0013 895 3/14/2019
3.4.5 3,932 3/21/2019
3.4.4 1,750 3/16/2019
3.4.3 1,513 3/14/2019
3.4.2 1,485 3/13/2019
3.4.1 1,442 3/12/2019
3.4.0 48,577 2/19/2019
3.4.0-alpha0022 988 1/27/2019
3.4.0-alpha0021 946 1/25/2019
3.4.0-alpha0020 969 12/21/2018
3.4.0-alpha0019 1,035 12/6/2018
3.4.0-alpha0018 1,017 11/21/2018
3.4.0-alpha0017 1,034 11/20/2018
3.4.0-alpha0016 1,080 11/5/2018
3.4.0-alpha0015 1,092 11/2/2018
3.4.0-alpha0011 1,103 11/1/2018
3.4.0-alpha0010 1,128 10/3/2018
3.4.0-alpha0009 1,122 9/16/2018
3.4.0-alpha0008 1,106 9/1/2018
3.4.0-alpha0007 1,127 8/29/2018
3.4.0-alpha0006 1,140 8/28/2018
3.4.0-alpha0005 1,090 8/28/2018
3.4.0-alpha0004 1,169 8/23/2018
3.4.0-alpha0003 1,146 8/22/2018
3.4.0-alpha0002 1,128 8/10/2018
3.4.0-alpha0001 1,346 7/30/2018
3.3.9 3,967 1/25/2019
3.3.8 1,654 1/18/2019
3.3.7 1,803 1/5/2019
3.3.6 1,810 12/19/2018
3.3.5 1,930 11/21/2018
3.3.4 1,819 11/20/2018
3.3.3 2,156 11/11/2018
3.3.2 2,219 10/12/2018
3.3.1 15,665 8/28/2018
3.3.0 5,110 7/18/2018
3.3.0-alpha0007 1,336 7/18/2018
3.3.0-alpha0006 1,521 7/17/2018
3.3.0-alpha0005 1,526 7/17/2018
3.3.0-alpha0004 1,282 7/17/2018
3.3.0-alpha0003 1,549 7/15/2018
3.3.0-alpha0001 1,541 7/11/2018
3.2.0 2,242 7/12/2018
3.1.2 1,974 7/11/2018
3.1.1 1,963 7/4/2018
3.1.0 3,841 6/20/2018
3.1.0-alpha0019 1,539 7/4/2018
3.1.0-alpha0017 1,387 7/2/2018
3.1.0-alpha0016 1,515 6/30/2018
3.1.0-alpha0014 1,583 6/26/2018
3.1.0-alpha0011 1,350 6/23/2018
3.1.0-alpha0010 1,582 6/20/2018
3.1.0-alpha0009 1,323 6/20/2018
3.1.0-alpha0008 1,347 6/19/2018
3.1.0-alpha0007 1,547 6/17/2018
3.1.0-alpha0006 1,546 6/14/2018
3.1.0-alpha0005 1,536 6/14/2018
3.1.0-alpha0004 1,640 5/28/2018
3.0.1 2,225 7/4/2018
3.0.0 6,267 5/24/2018
2.4.0-alpha0027 1,518 5/23/2018
2.4.0-alpha0026 1,608 5/23/2018
2.4.0-alpha0025 1,523 5/22/2018
2.4.0-alpha0024 1,512 5/18/2018
2.4.0-alpha0023 1,355 5/16/2018
2.4.0-alpha0022 1,663 5/16/2018
2.4.0-alpha0021 1,536 5/15/2018
2.4.0-alpha0020 1,553 5/15/2018
2.4.0-alpha0019 1,638 4/20/2018
2.4.0-alpha0017 1,548 4/19/2018
2.4.0-alpha0016 1,535 4/13/2018
2.4.0-alpha0015 1,518 4/3/2018
2.4.0-alpha0014 1,581 4/1/2018
2.4.0-alpha0013 1,928 3/30/2018
2.4.0-alpha0009 1,555 2/20/2018
2.4.0-alpha0002 1,419 12/1/2017
2.3.3 6,844 4/24/2018
2.3.1 17,716 2/20/2018
2.3.0 2,078 2/19/2018
2.3.0-alpha0006 1,977 11/21/2017
2.3.0-alpha0005 1,347 11/13/2017
2.3.0-alpha0002 1,711 9/18/2017
2.2.0 42,873 11/13/2017
2.2.0-alpha0009 1,382 9/14/2017
2.2.0-alpha0008 1,323 9/11/2017
2.2.0-alpha0007 1,337 9/10/2017
2.2.0-alpha0006 1,361 8/18/2017
2.2.0-alpha0002 1,359 8/18/2017
2.1.0 3,293 8/18/2017
2.1.0-alpha0022 1,324 8/18/2017
2.1.0-alpha0020 1,382 7/24/2017
2.1.0-alpha0018 1,414 7/13/2017
2.1.0-alpha0016 1,374 7/12/2017
2.1.0-alpha0011 1,426 7/11/2017
2.1.0-alpha0005 1,399 7/3/2017
2.1.0-alpha0002 1,398 7/3/2017
2.0.4 2,760 7/24/2017
2.0.4-unstable0013 1,556 6/26/2017
2.0.4-unstable0011 1,475 6/26/2017
2.0.4-unstable0010 1,530 6/11/2017
2.0.4-unstable0009 1,484 6/1/2017
2.0.4-unstable0007 3,226 5/4/2017
2.0.4-unstable0004 1,517 5/1/2017
2.0.4-unstable0003 1,525 5/1/2017
2.0.4-unstable0002 1,541 4/30/2017
2.0.4-unstable0001 1,455 4/27/2017
2.0.4-alpha0038 1,388 7/1/2017
2.0.3-unstable0064 1,440 4/27/2017
2.0.3-unstable0058 1,448 3/28/2017
2.0.3-unstable0057 1,435 3/15/2017
2.0.3-unstable0055 1,676 2/10/2017
2.0.3-unstable0053 1,496 2/9/2017
2.0.3-unstable0052 1,526 2/8/2017
1.1.4.506 2,069 7/6/2017
1.1.3.500 2,019 6/28/2017
1.1.2.497 1,916 6/21/2017
1.1.1.494 2,901 5/30/2017
1.1.0.492 2,073 5/4/2017
1.0.4.483 6,819 4/26/2017
1.0.3.481 1,965 4/4/2017
1.0.2.478 2,019 3/15/2017
1.0.1.475 2,167 2/10/2017
1.0.0.469 1,945 2/8/2017
1.0.0 1,942 6/30/2017
0.63.7.467 2,184 2/7/2017
0.63.6.463 1,948 2/7/2017
0.63.6.460 1,908 2/5/2017
0.63.5.454 2,369 10/17/2016
0.63.4.453 1,977 10/10/2016
0.63.3.452 2,045 9/26/2016
0.63.1.451 2,240 9/19/2016
0.63.1.450 2,038 9/11/2016
0.63.0.448 3,863 8/12/2016
0.62.1.445 2,034 8/8/2016
0.62.0.444 2,021 8/8/2016
0.61.1.443 2,020 8/5/2016
0.61.0.442 2,248 8/2/2016
0.60.1.441 2,121 7/31/2016
0.60.0.440 2,142 7/25/2016
0.59.0.439 2,060 7/18/2016
0.59.0.437 1,978 7/18/2016
0.59.0.436 1,953 7/18/2016
0.59.0.434 2,357 6/6/2016
0.58.0.433 2,269 5/2/2016
0.57.2.432 2,045 5/2/2016
0.57.2.431 2,308 4/25/2016
0.57.2.430 2,058 4/20/2016
0.57.1.429 1,942 4/20/2016
0.57.0.428 1,966 4/18/2016
0.56.0.427 2,218 4/1/2016
0.55.1.426 2,404 3/17/2016
0.55.0.425 3,375 3/1/2016
0.54.3.424 2,383 2/2/2016
0.54.2.423 1,990 2/1/2016
0.54.1.421 1,951 2/1/2016
0.54.0.420 2,010 1/28/2016
0.53.6.419 2,024 1/25/2016
0.53.6.418 2,040 1/6/2016
0.53.5.417 1,984 1/6/2016
0.53.5.416 2,050 1/5/2016
0.53.4.415 2,076 12/23/2015
0.53.3.414 6,499 12/9/2015
0.53.2.413 2,404 12/1/2015
0.53.1.412 2,371 11/28/2015
0.53.0.411 2,183 11/19/2015
0.52.0.410 2,104 11/18/2015
0.51.0.409 2,053 11/17/2015
0.51.0.408 2,021 11/16/2015
0.50.12.407 6,488 10/22/2015
0.50.12.406 2,113 10/22/2015
0.50.11.404 2,059 10/20/2015
0.50.10.403 2,085 10/10/2015
0.50.9.401 2,427 10/5/2015
0.50.8.400 3,295 9/28/2015
0.50.7.399 2,643 8/18/2015
0.50.6.398 2,438 8/11/2015
0.50.5.397 2,500 8/11/2015
0.50.5.396 2,084 8/11/2015
0.50.4.395 2,402 8/8/2015
0.50.3.394 2,419 8/7/2015
0.50.2.393 2,235 8/1/2015
0.50.1.392 2,496 6/17/2015
0.50.0.391 2,264 6/8/2015
0.49.3.390 2,174 5/20/2015
0.49.2.389 2,046 5/18/2015
0.49.1.388 2,017 5/18/2015
0.49.0.387 2,004 5/17/2015
0.48.1.386 2,039 5/10/2015
0.48.0.385 2,049 5/10/2015
0.47.10.384 2,031 5/8/2015
0.47.10.383 2,186 5/6/2015
0.47.10.382 2,141 5/5/2015
0.47.10.381 2,205 4/27/2015
0.47.10.380 2,652 4/1/2015
0.47.10.379 2,146 4/1/2015
0.47.9.378 2,117 3/31/2015
0.47.9.377 2,086 3/31/2015
0.47.9.376 2,134 3/30/2015
0.47.8.375 2,089 3/28/2015
0.47.7.374 2,403 3/25/2015
0.47.6.373 2,843 3/18/2015
0.47.5.372 2,056 3/17/2015
0.47.4.371 2,127 3/16/2015
0.47.3.370 2,134 3/15/2015
0.47.2.369 2,049 3/12/2015
0.47.1.368 2,178 3/4/2015
0.47.0.367 2,139 3/4/2015
0.46.1.366 2,142 3/3/2015
0.46.0.365 2,061 3/2/2015
0.45.0.364 2,274 3/2/2015
0.44.3.363 2,178 2/24/2015
0.44.2.362 2,381 2/24/2015
0.44.1.361 2,496 2/22/2015
0.44.0.360 2,402 2/18/2015
0.43.1.359 2,357 2/12/2015
0.43.0.358 2,129 2/7/2015
0.42.0.357 2,086 2/5/2015
0.41.0.356 2,080 2/4/2015
0.40.6.355 2,116 2/3/2015
0.40.3.354 2,106 2/2/2015
0.40.3.353 2,139 1/26/2015
0.40.3.352 2,154 1/20/2015
0.40.3.351 2,133 1/19/2015
0.40.2.350 2,114 1/19/2015
0.40.1.349 2,138 1/17/2015
0.40.1.348 2,201 1/15/2015
0.40.1.347 2,106 1/13/2015
0.40.1.346 2,130 1/12/2015
0.40.0.345 2,139 1/9/2015
0.40.0.344 2,124 1/9/2015
0.40.0.343 2,137 1/8/2015
0.40.0.342 2,101 1/8/2015
0.39.6.340 2,254 1/6/2015
0.39.5.339 2,123 1/5/2015
0.39.4.338 2,634 1/1/2015
0.39.4.337 2,491 12/23/2014
0.39.4.336 2,431 12/13/2014
0.39.2.335 2,336 12/12/2014
0.39.2.334 2,319 12/9/2014
0.39.2.333 2,320 12/5/2014
0.39.1.332 2,287 12/3/2014
0.39.1.331 2,269 12/2/2014
0.39.0.330 2,242 12/1/2014
0.38.2.329 2,258 11/26/2014
0.38.2.328 2,245 11/26/2014
0.38.1.327 2,197 11/25/2014
0.38.0.326 2,259 11/22/2014
0.38.0.325 2,317 11/20/2014
0.38.0.324 2,328 11/14/2014
0.37.2.323 2,384 11/14/2014
0.37.2.322 2,601 11/5/2014
0.37.2.321 2,214 10/29/2014
0.37.2.320 2,069 10/29/2014
0.37.2.319 2,152 10/28/2014
0.37.1.318 2,177 10/25/2014
0.37.1.317 2,224 10/16/2014
0.37.1.316 2,117 10/13/2014
0.37.0.315 2,220 10/12/2014
0.36.5.314 2,188 10/11/2014
0.36.5.313 2,107 10/9/2014
0.36.4.312 2,082 10/8/2014
0.36.4.311 2,108 10/8/2014
0.36.4.310 2,117 10/3/2014
0.36.3.309 2,194 10/1/2014
0.36.2.308 2,109 9/28/2014
0.36.1.307 2,112 9/20/2014
0.36.1.306 2,129 9/17/2014
0.36.0.305 2,133 9/15/2014
0.35.6.304 2,178 9/1/2014
0.35.6.303 2,135 8/28/2014
0.35.6.302 2,187 8/16/2014
0.35.6.301 2,221 8/15/2014
0.35.5.300 2,131 8/14/2014
0.35.4.299 2,130 8/14/2014
0.35.4.298 2,167 8/13/2014
0.35.4.297 2,152 8/11/2014
0.35.3.296 2,088 8/10/2014
0.35.3.295 2,178 8/8/2014
0.35.3.294 2,091 8/5/2014
0.35.1.288 2,061 8/1/2014
0.35.1.287 2,131 8/1/2014
0.35.1.286 2,127 8/1/2014
0.35.1.285 2,111 7/29/2014
0.35.1.284 2,111 7/23/2014
0.35.1.283 2,107 7/23/2014
0.35.0.282 2,100 7/22/2014
0.35.0.281 2,104 7/15/2014
0.34.0.280 2,396 7/11/2014
0.34.0.279 2,073 7/9/2014
0.33.2.278 2,115 7/9/2014
0.33.2.277 2,090 7/2/2014
0.33.1.276 2,466 6/24/2014
0.33.1.275 2,115 6/19/2014
0.33.0.274 2,138 6/19/2014
0.33.0.273 2,161 6/16/2014
0.32.3.272 2,119 6/14/2014
0.32.2.271 2,201 6/5/2014
0.32.1.270 2,164 6/1/2014
0.32.1.269 2,145 6/1/2014
0.32.1.268 2,111 5/26/2014
0.32.0.267 2,128 5/23/2014
0.32.0.266 2,141 5/22/2014
0.32.0.265 2,107 5/21/2014
0.32.0.264 2,099 5/21/2014
0.32.0.263 2,143 5/20/2014
0.32.0.262 2,181 5/19/2014
0.31.1.261 2,127 5/19/2014
0.31.1.260 2,169 5/19/2014
0.31.0.259 2,170 5/16/2014
0.30.2.258 2,120 5/15/2014
0.30.2.257 2,121 5/14/2014
0.30.2.254 2,211 5/8/2014
0.30.2.252 2,171 4/30/2014
0.30.2.251 2,259 4/30/2014
0.30.1.250 2,145 4/29/2014
0.30.0.249 2,185 4/28/2014
0.30.0.248 2,263 4/24/2014
0.30.0.247 2,172 4/17/2014
0.29.0.246 2,269 4/16/2014
0.28.5.245 2,315 4/14/2014
0.28.4.242 2,268 4/5/2014
0.28.4.241 2,260 4/4/2014
0.28.4.240 2,267 4/3/2014
0.28.4.232 2,248 3/31/2014
0.28.3.231 2,255 3/27/2014
0.28.3.230 2,233 3/27/2014
0.28.3.229 2,211 3/19/2014
0.28.2.227 2,266 3/14/2014
0.28.2.226 2,241 3/13/2014
0.28.2.225 2,206 3/5/2014
0.28.1.224 2,145 3/4/2014
0.27.5.222 2,212 2/28/2014
0.27.5.221 2,254 2/28/2014
0.27.4.220 2,259 2/26/2014
0.27.3.219 2,301 2/25/2014
0.27.2.218 2,167 2/25/2014
0.27.1.216 2,243 2/14/2014
0.27.0.215 2,228 2/12/2014
0.26.7.214 2,227 2/12/2014
0.26.7.213 2,203 2/11/2014
0.26.7.212 2,193 2/10/2014
0.26.7.211 2,235 2/10/2014
0.26.6.210 2,272 2/10/2014
0.26.5.209 2,207 2/10/2014
0.26.5.208 2,190 2/5/2014
0.26.5.207 2,174 2/4/2014
0.26.4.206 2,167 2/4/2014
0.26.3.204 2,191 2/4/2014
0.26.3.203 2,219 2/3/2014