Stripe.net 48.5.0

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

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 3.1+, and .NET Framework 4.6.1+.

Installation

Using the .NET Core command-line interface (CLI) tools:

dotnet add package Stripe.net

Using the NuGet Command Line Interface (CLI):

nuget install Stripe.net

Using the Package Manager Console:

Install-Package Stripe.net

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "Stripe.net".
  5. Click on the Stripe.net package, select the appropriate version in the right-tab and click Install.

Documentation

For a comprehensive list of examples, check out the API documentation. See video demonstrations covering how to use the library.

Usage

Using StripeClient

In version 46 of the Stripe .NET SDK, we have enhanced the StripeClient class to be the entry point to access all services that had to be previously independently instantiated with global configuration. This improves discoverability during IDE auto-completion and creates a more intuitive developer experience for you.

Each client instantiation can have its own configuration so you can access Stripe API with different API keys or different configuration (like number of retries) on a per client basis and without changing a global configuration.

// StripeClient pattern (Recommended)
var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Get("cus_1234");

// Global Configuration pattern (Legacy)
StripeConfiguration.ApiKey = "sk_test_...";
var service = new CustomerService();
Customer customer = service.Get("cus_1234");

The previous global configuration pattern will continue to be supported.

Authentication

Stripe authenticates API requests using your account’s secret key, which you can find in the Stripe Dashboard. By default, secret keys can be used to perform any API request without restriction.

var client = new StripeClient("sk_test_...");

Creating a resource

The Create method of the service class can be used to create a new resource:

var options = new CustomerCreateOptions
{
    Email = "customer@example.com"
};

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Create(options);

// Newly created customer is returned
Console.WriteLine(customer.Email);

Retrieve a resource

The Retrieve method of the service class can be used to retrieve a resource:

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Get("cus_1234");

Console.WriteLine(customer.Email);

Updating a resource

The Update method of the service class can be used to update a resource:

var options = new CustomerUpdateOptions
{
    Email = "updated-email@example.com"
};

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Update("cus_123", options);

// The updated customer is returned
Console.WriteLine(customer.Email);

Deleting a resource

The Delete method of the service class can be used to delete a resource:

var client = new StripeClient("sk_test_...");
Customer customer = client.V1.Customers.Delete("cus_123", options);

Listing a resource

The List method on the service class can be used to list resources page-by-page.

NOTE The List method returns only a single page, you have to manually continue the iteration using the StartingAfter parameter.

var client = new StripeClient("sk_test_...");
var customers = client.V1.Customers.List();

string lastId = null;

// Enumerate the first page of the list
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

customers = service.List(new CustomerListOptions()
{
    StartingAfter = lastId,
});

// Enumerate the subsequent page
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

Listing a resource with auto-pagination

The ListAutoPaging method on the service class can be used to automatically iterate over all pages.

var client = new StripeClient("sk_test_...");
var customers = client.V1.Customers.ListAutoPaging();

// Enumerate all pages of the list
foreach (Customer customer in customers)
{
   Console.WriteLine(customer.Email);
}

Per-request configuration

All the service methods accept an optional RequestOptions object. This is used if you want to set an idempotency key, if you are using Stripe Connect, or if you want to pass the secret API key on each method.

var requestOptions = new RequestOptions();
requestOptions.ApiKey = "SECRET API KEY";
requestOptions.IdempotencyKey = "SOME STRING";
requestOptions.StripeAccount = "CONNECTED ACCOUNT ID";

Using a custom HttpClient

You can configure the library with your own custom HttpClient:

StripeConfiguration.StripeClient = new StripeClient(
    apiKey,
    httpClient: new SystemNetHttpClient(httpClient));

Please refer to the Advanced client usage wiki page to see more examples of using custom clients, e.g. for using a proxy server, a custom message handler, etc.

Automatic retries

The library automatically retries requests on intermittent failures like on a connection error, timeout, or on certain API responses like a status 409 Conflict. Idempotency keys are always added to requests to make any such subsequent retries safe.

By default, it will perform up to two retries. That number can be configured with StripeConfiguration.MaxNetworkRetries:

StripeConfiguration.MaxNetworkRetries = 0; // Zero retries

How to use undocumented parameters and properties

stripe-dotnet is a typed library and it supports all public properties or parameters.

Stripe sometimes has beta features which introduce new properties or parameters that are not immediately public. The library does not support these properties or parameters until they are public but there is still an approach that allows you to use them.

Parameters

To pass undocumented parameters to Stripe using stripe-dotnet you need to use the AddExtraParam() method, as shown below:

var options = new CustomerCreateOptions
{
    Email = "jenny.rosen@example.com"
}
options.AddExtraParam("secret_feature_enabled", "true");
options.AddExtraParam("secret_parameter[primary]", "primary value");
options.AddExtraParam("secret_parameter[secondary]", "secondary value");

var client = new StripeClient("sk_test_...");
var customer = client.V1.Customers.Create(options);
Properties

To retrieve undocumented properties from Stripe using C# you can use an option in the library to return the raw JSON object and return the property. An example of this is shown below:

var client = new StripeClient("sk_test_...");
var customer = client.V1.Customers.Get("cus_1234");

customer.RawJObject["secret_feature_enabled"];
customer.RawJObject["secret_parameter"]["primary"];
customer.RawJObject["secret_parameter"]["secondary"];

Writing a plugin

If you're writing a plugin that uses the library, we'd appreciate it if you identified using StripeConfiguration.AppInfo:

StripeConfiguration.AppInfo = new AppInfo
{
    Name = "MyAwesomePlugin",
    Url = "https://myawesomeplugin.info",
    Version = "1.2.34",
};

This information is passed along when the library makes calls to the Stripe API. Note that while Name is always required, Url and Version are optional.

Telemetry

By default, the library sends telemetry to Stripe regarding request latency and feature usage. These numbers help Stripe improve the overall latency of its API for all users, and improve popular features.

You can disable this behavior if you prefer:

StripeConfiguration.EnableTelemetry = false;

Public Preview SDKs

Stripe has features in the public preview phase that can be accessed via versions of this package that have the -beta.X suffix like 45.1.0-beta.2. We would love for you to try these as we incrementally release new features and improve them based on your feedback.

To install, pick the latest version with the beta suffix by reviewing the releases page and then use it in the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <replace-with-the-version-of-your-choice>

Note There can be breaking changes between two versions of the public preview SDKs without a bump in the major version. Therefore we recommend pinning the package version to a specific version in your project file. This way you can install the same version each time without breaking changes unless you are intentionally looking for the latest public preview SDK.

Some preview features require a name and version to be set in the Stripe-Version header like feature_beta=v3. If your preview feature has this requirement, use the StripeConfiguration.AddBetaVersion function (available only in the public preview SDKs):

StripeConfiguration.AddBetaVersion("feature_beta", "v3");

Private Preview SDKs

Stripe has features in the private preview phase that can be accessed via versions of this package that have the -alpha.X suffix like 45.2.0-alpha.2. These are invite-only features. Once invited, you can install the private preview SDKs by following the same instructions as for the public preview SDKs above and replacing the term beta with alpha.

Custom requests

If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the RawRequestAsync method on StripeClient.

StripeClient client = new StripeClient();
StripeResponse response = await client.RawRequestAsync(HttpMethod.Get, "/v1/accounts/acc_123");

// Optionally use Deserialize to convert the response to strongly-typed object.
Account account = client.Deserialize<Account>(response.Content)

Support

New features and bug fixes are released on the latest major version of the Stripe .NET client library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.

Development

Contribution guidelines for this project

.NET 8 is required to build and test Stripe.net SDK, you can install it from get.dot.net.

The test suite depends on stripe-mock, so make sure to fetch and run it from a background terminal (stripe-mock's README also contains instructions for installing via Homebrew and other methods):

go install github.com/stripe/stripe-mock@latest
stripe-mock

Lastly, we use just for running common development tasks. You can also read the justfile and run those commands directly.

Run all tests from the src/StripeTests directory:

just test
# or: dotnet test src

Run some tests, filtering by name:

dotnet test src --filter FullyQualifiedName~InvoiceServiceTest

Run tests for a single target framework:

dotnet test src --framework net8.0

The library uses dotnet-format for code formatting. Code must be formatted before PRs are submitted, otherwise CI will fail. Run the formatter with:

just format
# or: dotnet format src/Stripe.net.sln

For any requests, bug or comments, please open an issue or submit a pull request.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 is compatible.  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 is compatible.  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 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  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 (133)

Showing the top 5 NuGet packages that depend on Stripe.net:

Package Downloads
OElite.Common

Package Description

ImmediaC.SimpleCms

ASP.NET Core based CMS

N3O.Umbraco.Payments.Stripe

TODO

Soenneker.Stripe.Client

A .NET typesafe implementation of Stripe's StripeClient

JTigerNova.Web.Lib.Service.ThirdParty

Third Party library of web service functions

GitHub repositories (25)

Showing the top 20 popular GitHub repositories that depend on Stripe.net:

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
exceptionless/Exceptionless
Exceptionless application
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
NiclasOlofsson/MiNET
A (not so) basic Minecraft Pocket Edition server written in C#
bhrugen/Bulky_MVC
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
Librum-Reader/Librum-Server
The Librum server
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
bhrugen/Bulky
bhrugen/Mango_Microservices
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
TryCatchLearn/Skinet3.1
TryCatchLearn/Skinet-v6
Course repository for the Skinet app created on .Net 5.0 and Angular 11
TryCatchLearn/skinet
DevBetterCom/DevBetterWeb
A simple web application for devBetter
RemiBou/Toss.Blazor
Experimental project using AspNetCore Blazor
Version Downloads Last Updated
48.6.0-beta.1 180 8/27/2025
48.6.0-alpha.1 146 8/27/2025
48.5.0 2,149 8/27/2025
48.5.0-beta.2 675 8/8/2025
48.5.0-beta.1 967 7/30/2025
48.4.0 93,437 7/30/2025
48.4.0-beta.2 885 7/9/2025
48.4.0-beta.1 428 7/1/2025
48.3.0 134,278 7/1/2025
48.3.0-beta.2 270 6/26/2025
48.3.0-beta.1 7,451 5/28/2025
48.2.0 215,488 5/28/2025
48.2.0-beta.2 9,078 4/30/2025
48.2.0-beta.1 162 4/30/2025
48.1.0 232,315 4/30/2025
48.1.0-beta.4 4,414 4/17/2025
48.1.0-beta.3 1,389 4/10/2025
48.1.0-beta.2 5,313 4/2/2025
48.0.2 96,919 4/15/2025
48.0.1 8,319 4/14/2025
48.0.0 140,078 4/1/2025
47.5.0-beta.1 3,227 3/18/2025
47.4.0 637,106 2/24/2025
47.4.0-beta.1 22,211 2/7/2025
47.3.0 413,420 1/27/2025
47.3.0-beta.3 9,645 1/23/2025
47.3.0-beta.2 613 1/18/2025
47.3.0-beta.1 5,098 1/9/2025
47.2.0 400,132 12/18/2024
47.2.0-beta.3 1,720 12/12/2024
47.2.0-beta.2 613 12/5/2024
47.2.0-beta.1 18,202 11/21/2024
47.1.0 482,457 11/20/2024
47.1.0-beta.3 3,459 11/15/2024
47.1.0-beta.2 1,343 11/7/2024
47.1.0-beta.1 4,224 10/29/2024
47.0.0 447,049 10/29/2024
46.3.0-beta.1 12,226 10/18/2024
46.2.2 21,412 10/29/2024
46.2.1 184,479 10/18/2024
46.2.0 199,815 10/9/2024
46.2.0-beta.3 1,437 10/8/2024
46.1.0 75,270 10/3/2024
46.0.0 37,862 10/1/2024
45.15.0-beta.1 13,752 9/18/2024
45.14.0 579,201 9/18/2024
45.13.0 76,692 9/13/2024
45.12.0 3,436 9/13/2024
45.12.0-beta.1 1,775 9/5/2024
45.11.0 139,508 9/5/2024
45.10.0 134,244 8/29/2024
45.10.0-beta.1 3,316 8/23/2024
45.9.0 83,850 8/23/2024
45.9.0-beta.2 206 8/22/2024
45.9.0-beta.1 4,580 8/15/2024
45.8.0 121,618 8/15/2024
45.8.0-beta.1 2,418 8/12/2024
45.7.0 92,109 8/9/2024
45.7.0-beta.1 4,618 8/1/2024
45.6.0 118,714 8/1/2024
45.6.0-beta.1 5,551 7/25/2024
45.5.0 108,666 7/25/2024
45.4.0 124,654 7/18/2024
45.3.0 183,639 7/11/2024
45.3.0-beta.1 62,086 7/5/2024
45.2.0 108,892 7/5/2024
45.2.0-beta.1 3,438 6/27/2024
45.1.0 125,265 6/27/2024
45.0.0 153,740 6/24/2024
44.13.0 310,457 6/17/2024
44.13.0-beta.1 3,352 6/13/2024
44.12.0 70,223 6/13/2024
44.12.0-beta.1 428 6/6/2024
44.11.0 124,107 6/6/2024
44.11.0-beta.1 2,138 5/30/2024
44.10.0 283,199 5/30/2024
44.10.0-beta.1 6,735 5/23/2024
44.9.0 120,636 5/23/2024
44.9.0-beta.1 2,372 5/16/2024
44.8.0 97,958 5/16/2024
44.7.0 124,163 5/9/2024
44.7.0-beta.1 203 5/9/2024
44.6.0 6,919 5/9/2024
44.6.0-beta.1 2,010 5/2/2024
44.5.0 105,241 5/2/2024
44.5.0-beta.1 7,982 4/25/2024
44.4.0 131,361 4/25/2024
44.4.0-beta.1 1,209 4/18/2024
44.3.0 191,112 4/18/2024
44.2.0 46,779 4/16/2024
44.2.0-beta.1 768 4/12/2024
44.1.0 177,143 4/11/2024
44.0.0 154,545 4/10/2024
43.23.0 80,540 4/9/2024
43.23.0-beta.1 2,752 4/4/2024
43.22.0 102,440 4/4/2024
43.22.0-beta.1 34,682 3/28/2024
43.21.0 119,138 3/28/2024
43.21.0-beta.1 1,222 3/21/2024
43.20.0 226,531 3/21/2024
43.20.0-beta.1 602 3/14/2024
43.19.0 169,142 3/14/2024
43.19.0-beta.1 10,892 3/8/2024
43.18.0 122,740 3/7/2024
43.18.0-beta.1 1,253 2/29/2024
43.17.0 86,711 2/29/2024
43.17.0-beta.1 9,804 2/22/2024
43.16.0 92,684 2/22/2024
43.16.0-beta.1 4,880 2/16/2024
43.15.0 138,304 2/16/2024
43.15.0-beta.1 1,247 2/8/2024
43.14.0 138,054 2/8/2024
43.14.0-beta.1 1,448 2/2/2024
43.13.0 222,144 2/1/2024
43.13.0-beta.1 1,386 1/26/2024
43.12.0 138,093 1/25/2024
43.12.0-beta.1 3,556 1/18/2024
43.11.0 132,977 1/18/2024
43.11.0-beta.1 436 1/12/2024
43.10.0 78,115 1/12/2024
43.10.0-beta.1 1,613 1/4/2024
43.9.0 122,602 1/4/2024
43.9.0-beta.1 2,236 12/22/2023
43.8.0 103,797 12/22/2023
43.8.0-beta.1 1,011 12/15/2023
43.7.0 127,882 12/15/2023
43.7.0-beta.1 528 12/8/2023
43.6.0 180,631 12/7/2023
43.6.0-beta.1 633 11/30/2023
43.5.0 85,184 11/30/2023
43.5.0-beta.1 2,767 11/21/2023
43.4.0 272,129 11/21/2023
43.4.0-beta.1 2,974 11/17/2023
43.3.0 110,795 11/17/2023
43.3.0-beta.1 943 11/10/2023
43.2.0 138,210 11/9/2023
43.2.0-beta.1 482 11/2/2023
43.1.0 134,691 11/2/2023
43.1.0-beta.2 1,085 10/26/2023
43.1.0-beta.1 1,422 10/17/2023
43.0.0 339,135 10/16/2023
42.10.0 35,642 10/16/2023
42.10.0-beta.1 1,794 10/11/2023
42.9.0 72,438 10/11/2023
42.9.0-beta.1 2,161 10/5/2023
42.8.0 104,338 10/5/2023
42.8.0-beta.1 1,036 9/29/2023
42.7.0 103,381 9/28/2023
42.7.0-beta.1 9,361 9/22/2023
42.6.0 136,571 9/21/2023
42.6.0-beta.1 4,118 9/15/2023
42.5.0 90,884 9/15/2023
42.5.0-beta.1 2,916 9/7/2023
42.4.0 96,417 9/7/2023
42.4.0-beta.1 1,206 9/1/2023
42.3.0 74,259 8/31/2023
42.2.0 127,226 8/24/2023
42.1.0 70,153 8/17/2023
42.0.0 17,862 8/16/2023
42.0.0-beta.1 228 8/24/2023
41.29.0-beta.1 4,860 8/11/2023
41.28.0 259,957 8/11/2023
41.28.0-beta.1 2,209 8/3/2023
41.27.0 109,782 8/3/2023
41.27.0-beta.1 1,775 7/28/2023
41.26.0 104,162 7/27/2023
41.25.0 121,355 7/20/2023
41.25.0-beta.1 992 7/13/2023
41.24.0 102,498 7/13/2023
41.23.0 121,408 7/6/2023
41.23.0-beta.1 6,811 6/30/2023
41.22.0 95,253 6/29/2023
41.22.0-beta.1 451 6/22/2023
41.21.0 113,171 6/22/2023
41.21.0-beta.2 2,849 6/15/2023
41.21.0-beta.1 506 6/8/2023
41.20.0 198,715 6/8/2023
41.20.0-beta.1 643 6/1/2023
41.19.0 132,099 6/1/2023
41.19.0-beta.1 2,752 5/25/2023
41.18.0 335,344 5/25/2023
41.18.0-beta.1 615 5/19/2023
41.17.0 105,601 5/19/2023
41.17.0-beta.1 1,981 5/11/2023
41.16.0 3,306,213 5/11/2023
41.16.0-beta.1 933 5/5/2023
41.15.0 130,042 5/4/2023
41.15.0-beta.1 783 4/27/2023
41.14.0 162,436 4/27/2023
41.14.0-beta.3 725 4/20/2023
41.14.0-beta.2 1,684 4/13/2023
41.14.0-beta.1 1,372 4/6/2023
41.13.0 428,902 4/6/2023
41.13.0-beta.1 2,832 3/30/2023
41.12.0 143,078 3/30/2023
41.12.0-beta.1 888 3/24/2023
41.11.0 106,365 3/23/2023
41.11.0-beta.1 5,049 3/17/2023
41.10.0 98,764 3/17/2023
41.10.0-beta.1 2,317 3/9/2023
41.9.0 311,083 3/9/2023
41.9.0-beta.1 8,676 3/3/2023
41.8.0 80,205 3/2/2023
41.8.0-beta.2 1,000 2/24/2023
41.8.0-beta.1 1,950 2/17/2023
41.7.0 216,266 2/16/2023
41.7.0-beta.1 5,974 2/2/2023
41.6.0 284,090 2/2/2023
41.6.0-beta.2 675 1/27/2023
41.6.0-beta.1 1,334 1/19/2023
41.5.0 225,033 1/19/2023
41.5.0-beta.2 485 1/12/2023
41.5.0-beta.1 4,834 1/5/2023
41.4.0 234,274 1/5/2023
41.4.0-beta.1 1,461 12/22/2022
41.3.0 131,369 12/22/2022
41.3.0-beta.2 4,707 12/16/2022
41.3.0-beta.1 4,371 12/8/2022
41.2.0 212,288 12/6/2022
41.1.0 393,030 11/17/2022
41.0.0 49,661 11/16/2022
40.17.0-beta.1 1,003 11/10/2022
40.16.0 305,871 11/8/2022
40.15.0 259,673 11/3/2022
40.15.0-beta.2 644 11/2/2022
40.15.0-beta.1 4,584 10/22/2022
40.14.0 188,320 10/20/2022
40.14.0-beta.1 1,047 10/14/2022
40.13.0 236,083 10/13/2022
40.13.0-beta.1 2,333 10/7/2022
40.12.0 82,155 10/6/2022
40.12.0-beta.2 339 10/4/2022
40.12.0-beta.1 304 10/4/2022
40.11.0 106,020 9/29/2022
40.11.0-beta.1 1,012 9/26/2022
40.10.0 111,822 9/22/2022
40.9.0 139,164 9/15/2022
40.8.0 129,764 9/9/2022
40.7.0 84,614 9/6/2022
40.6.0 148,244 8/31/2022
40.5.0 79,513 8/26/2022
40.5.0-beta.1 705 8/26/2022
40.4.0 214,647 8/23/2022
40.4.0-beta.1 812 8/23/2022
40.3.0 160,158 8/19/2022
40.3.0-beta.1 513 8/11/2022
40.2.0 125,919 8/11/2022
40.1.0 69,689 8/9/2022
40.1.0-beta.1 361 8/3/2022
40.0.0 288,057 8/2/2022
39.126.0 569,496 7/26/2022
39.125.0 104,878 7/25/2022
39.125.0-beta.1 427 7/22/2022
39.124.0 164,844 7/18/2022
39.123.0 260,082 7/12/2022
39.123.0-beta.1 1,791 7/7/2022
39.122.0 115,570 7/7/2022
39.121.0 286,136 6/29/2022
39.120.0 103,387 6/23/2022
39.119.0 134,707 6/17/2022
39.119.0-beta.1 485 6/15/2022
39.118.0 144,749 6/9/2022
39.117.0 46,166 6/8/2022
39.116.0 104,116 6/1/2022
39.115.0 99,914 5/26/2022
39.114.0 128,002 5/23/2022
39.113.0 11,793 5/23/2022
39.112.0 37,361 5/20/2022
39.111.0 308,789 5/11/2022
39.110.0 223,847 5/5/2022
39.109.0 8,812 5/5/2022
39.108.0 30,130 5/3/2022
39.107.0 136,463 4/21/2022
39.106.0 349,906 4/20/2022
39.105.0 251,737 4/13/2022
39.104.0 185,408 4/8/2022
39.103.0 207,473 4/1/2022
39.102.0 30,634 3/30/2022
39.101.0 18,374 3/29/2022
39.100.0 70,269 3/25/2022
39.99.0 62,667 3/23/2022
39.98.0 71,514 3/18/2022
39.97.0 201,879 3/11/2022
39.96.0 93,130 3/9/2022
39.95.0 131,791 3/2/2022
39.94.0 7,811 3/2/2022
39.93.0 59,256 2/26/2022
39.92.0 36,787 2/23/2022
39.91.0 498,966 2/16/2022
39.90.0 140,223 2/6/2022
39.89.0 327,473 1/25/2022
39.88.0 96,118 1/20/2022
39.87.0 13,517 1/19/2022
39.86.0 59,876 1/13/2022
39.85.0 33,113 1/12/2022
39.84.0 282,018 12/22/2021
39.83.0 105,381 12/15/2021
39.82.0 66,352 12/9/2021
39.81.0 10,899 12/9/2021
39.80.0 556,837 11/20/2021
39.79.0 20,627 11/17/2021
39.78.1 11,290 11/16/2021
39.78.0 3,566 11/16/2021
39.77.0 45,767 11/11/2021
39.76.0 124,497 11/4/2021
39.75.1 5,806 11/4/2021
39.75.0 144,396 11/1/2021
39.74.0 255,048 10/20/2021
39.73.0 122,365 10/11/2021
39.72.0 7,873 10/11/2021
39.71.0 26,581 10/7/2021
39.70.0 74,952 9/29/2021
39.69.0 67,954 9/24/2021
39.68.0 213,326 9/16/2021
39.67.0 7,122 9/15/2021
39.66.0 129,666 9/2/2021
39.65.0 4,856 9/1/2021
39.64.0 211,621 8/27/2021
39.63.0 246,157 8/11/2021
39.62.0 167,913 7/28/2021
39.61.0 124,495 7/22/2021
39.60.0 19,492 7/21/2021
39.59.0 239,421 7/14/2021
39.58.0 62,427 7/9/2021
39.57.0 97,421 6/30/2021
39.56.1 5,568 6/30/2021
39.56.0 9,428 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 43,142 6/25/2021
39.54.0 70,044 6/16/2021
39.53.0 347,240 6/7/2021
39.52.0 32,735 6/4/2021
39.51.0 62,627 6/4/2021
39.50.0 222,301 5/26/2021
39.49.0 89,799 5/20/2021
39.48.0 174,673 5/7/2021
39.47.0 49,758 5/6/2021
39.46.0 4,162 5/5/2021
39.45.0 142,189 4/16/2021
39.44.0 159,975 4/12/2021
39.43.0 138,570 4/3/2021
39.42.0 153,064 3/31/2021
39.41.0 123,026 3/26/2021
39.40.0 183,284 3/22/2021
39.39.0 221,050 3/1/2021
39.38.0 296,309 2/23/2021
39.37.0 86,550 2/18/2021
39.36.0 14,971 2/17/2021
39.35.0 103,232 2/9/2021
39.34.0 137,086 2/3/2021
39.33.0 241,391 1/21/2021
39.32.0 138,884 1/7/2021
39.31.0 279,273 12/16/2020
39.30.0 67,192 12/11/2020
39.29.0 179,781 12/4/2020
39.28.0 211,619 11/24/2020
39.27.0 53,564 11/20/2020
39.26.0 15,130 11/19/2020
39.25.0 26,580 11/18/2020
39.24.0 9,426 11/18/2020
39.23.0 215,638 11/9/2020
39.22.0 45,334 11/4/2020
39.21.0 76,928 10/29/2020
39.20.0 25,328 10/27/2020
39.19.0 37,820 10/26/2020
39.18.0 15,666 10/23/2020
39.17.0 14,207 10/23/2020
39.16.0 121,616 10/14/2020
39.15.0 20,942 10/13/2020
39.14.0 5,197 10/12/2020
39.13.0 23,498 10/9/2020
39.12.0 25,636 10/9/2020
39.11.0 121,515 10/3/2020
39.10.0 40,127 9/30/2020
39.9.0 17,752 9/30/2020
39.8.0 18,025 9/29/2020
39.7.0 46,174 9/25/2020
39.6.0 27,962 9/23/2020
39.5.0 55,046 9/22/2020
39.4.0 111,638 9/13/2020
39.3.0 95,703 9/8/2020
39.2.0 50,487 9/3/2020
39.1.2 49,865 9/1/2020
37.35.0 457,570 8/27/2020
37.34.0 123,369 8/19/2020
37.33.0 41,247 8/18/2020
37.32.0 8,765 8/17/2020
37.31.0 25,692 8/13/2020
37.30.0 74,550 8/7/2020
37.29.0 34,794 8/6/2020
37.28.0 14,436 8/4/2020
37.27.0 77,729 7/29/2020
37.26.0 136,745 7/25/2020
37.25.0 6,179 7/25/2020
37.24.0 22,345 7/22/2020
37.23.0 9,251 7/21/2020
37.22.0 5,433 7/21/2020
37.21.0 10,661 7/21/2020
37.20.0 14,886 7/18/2020
37.19.0 6,960 7/17/2020
37.18.0 85,762 7/15/2020
37.17.0 42,487 7/13/2020
37.16.0 103,983 7/6/2020
37.15.1 37,301 7/3/2020
37.15.0 32,526 7/1/2020
37.14.0 199,093 6/25/2020
37.13.0 40,613 6/23/2020
37.12.0 35,806 6/22/2020
37.11.0 15,918 6/18/2020
37.10.0 89,831 6/11/2020
37.9.0 10,238 6/11/2020
37.8.0 219,213 6/3/2020
37.7.0 4,415 6/3/2020
37.6.0 56,954 5/29/2020
37.5.0 31,345 5/28/2020
37.4.0 155,481 5/22/2020
37.3.0 87,135 5/21/2020
37.2.0 4,437 5/20/2020
37.1.0 71,012 5/19/2020
37.0.0 68,630 5/18/2020
36.12.2 77,654 5/14/2020
36.12.1 4,155 5/14/2020
36.12.0 4,277 5/13/2020
36.11.0 79,366 5/12/2020
36.10.0 17,745 5/11/2020
36.9.0 27,584 5/8/2020
36.8.1 39,044 5/5/2020
36.8.0 30,827 5/1/2020
36.7.0 17,703 4/29/2020
36.6.0 30,001 4/24/2020
36.5.0 23,521 4/22/2020
36.4.0 4,602 4/22/2020
36.3.0 8,911 4/21/2020
36.2.0 21,005 4/18/2020
36.1.0 17,458 4/17/2020
36.0.0 12,894 4/16/2020
35.17.0 35,412 4/14/2020
35.16.0 20,994 4/13/2020
35.15.0 6,473 4/13/2020
35.14.0 15,865 4/10/2020
35.13.0 5,407 4/9/2020
35.12.1 195,363 4/8/2020
35.12.0 53,462 4/3/2020
35.11.1 223,827 3/31/2020
35.11.0 36,611 3/31/2020
35.10.0 53,794 3/26/2020
35.9.0 42,439 3/25/2020
35.8.0 7,806 3/24/2020
35.7.1 6,321 3/23/2020
35.7.0 37,429 3/20/2020
35.6.0 308,062 3/13/2020
35.5.0 7,217 3/12/2020
35.4.0 5,380 3/12/2020
35.3.0 90,832 3/5/2020
35.2.0 4,583 3/4/2020
35.1.0 7,155 3/4/2020
35.0.0 26,741 3/4/2020
34.26.0 114,706 2/24/2020
34.25.0 21,610 2/21/2020
34.24.0 9,066 2/21/2020
34.23.0 127,778 2/17/2020
34.22.0 37,121 2/13/2020
34.21.0 5,507 2/12/2020
34.20.1 10,432 2/12/2020
34.20.0 89,359 2/6/2020
34.19.0 49,574 2/3/2020
34.18.0 55,958 1/31/2020
34.17.0 59,105 1/25/2020
34.16.1 12,434 1/22/2020
34.16.0 43,393 1/17/2020
34.15.0 281,839 1/15/2020
34.14.0 7,233 1/14/2020
34.13.0 60,429 1/10/2020
34.12.0 24,655 1/6/2020
34.11.0 15,682 1/4/2020
34.10.1 9,112 1/3/2020
34.10.0 30,202 12/31/2019
34.9.0 107,893 12/24/2019
34.8.0 33,666 12/21/2019
34.7.0 10,093 12/19/2019
34.6.0 31,642 12/17/2019
34.5.0 59,121 12/13/2019
34.4.0 7,505 12/12/2019
34.3.0 31,012 12/9/2019
34.2.0 4,200 12/9/2019
34.1.0 102,622 12/4/2019
34.0.0 21,591 12/4/2019
33.9.0 47,450 12/2/2019
33.8.0 35,777 11/26/2019
33.7.0 20,991 11/25/2019
33.6.0 19,538 11/22/2019
33.5.0 9,000 11/21/2019
33.4.0 14,398 11/19/2019
33.3.0 75,593 11/8/2019
33.2.0 9,576 11/7/2019
33.1.0 13,816 11/6/2019
33.0.0 27,445 11/6/2019
32.2.0 33,651 11/4/2019
32.1.3 38,842 10/28/2019
32.1.2 8,286 10/25/2019
32.1.1 3,657 10/24/2019
32.1.0 14,867 10/24/2019
32.0.0 22,420 10/19/2019
31.2.0 5,446 10/18/2019
31.1.0 114,570 10/11/2019
31.0.0 5,474 10/10/2019
30.1.0 47,792 10/10/2019
30.0.1 5,695 10/9/2019
30.0.0 39,939 10/9/2019
29.6.0 54,755 10/3/2019
29.5.0 63,605 9/27/2019
29.4.0 21,930 9/26/2019
29.3.0 10,353 9/26/2019
29.2.1 29,188 9/23/2019
29.2.0 39,337 9/19/2019
29.1.0 164,853 9/13/2019
29.0.1 12,600 9/12/2019
29.0.0 93,928 9/10/2019
28.11.0 49,379 9/9/2019
28.10.0 93,517 9/4/2019
28.9.0 21,503 9/3/2019
28.8.0 327,662 8/30/2019
28.7.0 4,916 8/29/2019
28.6.0 177,229 8/27/2019
28.5.0 57,429 8/23/2019
28.4.0 21,583 8/21/2019
28.3.0 17,371 8/20/2019
28.2.0 160,465 8/16/2019
28.1.0 48,441 8/15/2019
28.0.0 58,180 8/14/2019
27.25.1 13,689 8/14/2019
27.24.0 61,653 8/9/2019
27.23.0 10,104 8/8/2019
27.22.0 4,167 8/8/2019
27.21.0 136,186 8/2/2019
27.20.0 30,565 8/1/2019
27.19.0 33,730 7/31/2019
27.18.0 30,691 7/26/2019
27.17.0 13,353 7/25/2019
27.16.1 118,911 7/23/2019
27.16.0 59,152 7/22/2019
27.15.0 100,668 7/19/2019
27.14.0 35,841 7/18/2019
27.13.0 45,285 7/16/2019
27.12.0 5,732 7/15/2019
27.11.0 29,170 7/11/2019
27.10.0 20,649 7/10/2019
27.9.1 37,729 7/10/2019
27.9.0 37,450 7/5/2019
27.8.1 50,602 7/3/2019
27.8.0 8,847 7/2/2019
27.7.0 4,441 7/2/2019
27.6.0 6,247 7/1/2019
27.5.0 11,225 7/1/2019
27.4.0 24,221 6/26/2019
27.3.2 56,682 6/20/2019
27.3.1 24,715 6/18/2019
27.3.0 9,940 6/17/2019
27.2.0 32,028 6/14/2019
27.1.3 10,803 6/12/2019
27.1.2 11,630 6/11/2019
27.1.1 4,149 6/10/2019
27.1.0 4,732 6/10/2019
27.0.0 14,640 6/7/2019
26.1.0 22,285 6/6/2019
26.0.0 128,625 5/24/2019
25.19.1 20,609 5/22/2019
25.19.0 37,977 5/17/2019
25.18.0 18,635 5/14/2019
25.17.0 17,340 5/10/2019
25.16.1 19,334 5/8/2019
25.16.0 12,988 5/6/2019
25.15.0 52,644 5/4/2019
25.14.0 7,079 5/3/2019
25.13.0 25,832 4/30/2019
25.12.0 25,889 4/25/2019
25.11.0 3,976 4/24/2019
25.10.0 38,147 4/23/2019
25.9.0 18,812 4/18/2019
25.8.0 66,682 4/17/2019
25.7.1 4,569 4/16/2019
25.7.0 10,981 4/15/2019
25.6.0 36,161 4/10/2019
25.5.0 3,861 4/9/2019
25.4.0 14,395 4/5/2019
25.3.0 164,692 3/29/2019
25.2.0 28,804 3/25/2019
25.1.0 15,558 3/22/2019
25.0.0 28,573 3/19/2019
24.6.0 14,813 3/19/2019
24.5.0 41,793 3/14/2019
24.4.1 26,844 3/11/2019
24.3.0 40,117 3/7/2019
24.2.0 5,026 3/6/2019
24.1.0 38,099 2/28/2019
24.0.2 173,381 2/20/2019
24.0.1 4,646 2/20/2019
23.2.0 4,351 2/19/2019
23.1.0 7,014 2/18/2019
23.0.0 16,262 2/14/2019
22.9.0 10,852 2/12/2019
22.8.1 43,031 2/4/2019
22.8.0 91,567 1/25/2019
22.7.0 34,668 1/20/2019
22.6.0 7,300 1/18/2019
22.5.0 4,815 1/17/2019
22.4.0 30,774 1/10/2019
22.3.0 40,938 1/9/2019
22.2.0 4,452 1/9/2019
22.1.0 7,259 1/8/2019
22.0.0 11,626 1/7/2019
21.9.0 30,412 1/3/2019
21.8.1 5,348 1/3/2019
21.8.0 43,454 12/27/2018
21.7.1 14,719 12/21/2018
21.7.0 260,089 11/28/2018
21.6.0 13,558 11/27/2018
21.5.0 37,010 11/26/2018
21.4.1 29,504 11/16/2018
21.4.0 9,916 11/14/2018
21.3.0 4,391 11/14/2018
21.2.0 10,801 11/12/2018
21.1.0 11,905 11/9/2018
21.0.0 8,866 11/9/2018
20.4.1 10,607 11/8/2018
20.4.0 21,853 11/5/2018
20.3.0 10,323 10/31/2018
20.2.0 18,815 10/25/2018
20.1.0 20,710 10/23/2018
20.0.0 6,863 10/22/2018
19.10.0 271,866 10/9/2018
19.9.2 40,472 9/28/2018
19.9.1 10,555 9/27/2018
19.9.0 134,489 9/26/2018
19.8.0 17,358 9/24/2018
19.7.0 98,979 9/20/2018
19.6.0 48,764 9/11/2018
19.5.0 22,353 9/6/2018
19.4.0 6,384 9/6/2018
19.3.0 19,314 9/4/2018
19.2.0 27,338 8/29/2018
19.1.0 9,456 8/28/2018
19.0.1 5,719 8/27/2018
18.0.0 29,262 8/23/2018
17.11.0 27,578 8/23/2018
17.10.0 15,579 8/21/2018
17.9.0 15,220 8/16/2018
17.8.0 330,844 8/3/2018
17.7.0 43,778 7/31/2018
17.6.0 33,970 7/27/2018
17.5.0 8,157 7/26/2018
17.4.0 17,851 7/23/2018
17.3.1 86,109 7/16/2018
17.3.0 18,156 7/13/2018
17.2.0 4,748 7/13/2018
17.1.0 6,386 7/12/2018
17.0.0 5,500 7/11/2018
16.16.1 35,474 7/11/2018
16.16.0 17,206 7/6/2018
16.14.0 31,811 6/29/2018
16.13.0 5,591 6/28/2018
16.12.0 45,493 6/20/2018
16.11.0 4,600 6/20/2018
16.10.0 99,065 6/13/2018
16.9.0 17,187 6/12/2018
16.8.0 5,517 6/12/2018
16.7.0 16,044 6/6/2018
16.6.0 4,930 6/6/2018
16.5.0 7,839 6/6/2018
16.4.0 26,802 6/1/2018
16.3.0 49,849 5/23/2018
16.1.0 116,227 5/10/2018
16.0.0 6,134 5/10/2018
15.8.0 13,679 5/8/2018
15.7.0 11,602 5/3/2018
15.6.2 31,321 4/25/2018
15.6.1 81,287 4/19/2018
15.6.0 36,227 4/18/2018
15.5.0 15,432 4/16/2018
15.3.2 202,609 4/9/2018
15.3.1 14,919 4/6/2018
15.3.0 42,560 4/4/2018
15.2.1 58,560 3/27/2018
15.2.0 5,395 3/26/2018
15.1.0 9,179 3/23/2018
15.0.0 27,243 3/21/2018
14.0.0 14,777 3/16/2018
13.5.0 31,600 3/15/2018
13.4.0 9,318 3/13/2018
13.3.1 28,418 3/5/2018
13.3.0 18,349 3/1/2018
13.2.0 9,444 2/27/2018
13.1.0 713,880 2/22/2018
13.0.1 11,490 2/19/2018
13.0.0 32,446 2/13/2018
12.1.0 250,974 1/19/2018
12.0.0 12,368 1/16/2018
11.10.0 70,480 12/26/2017
11.9.0 75,506 11/29/2017
11.8.2 17,487 11/23/2017
11.8.1 14,677 11/23/2017
11.7.1 87,300 10/31/2017
11.7.0 4,744 10/31/2017
11.6.1 22,541 10/24/2017
11.6.0 40,531 10/19/2017
11.5.0 42,308 10/17/2017
11.4.0 7,682 10/13/2017
11.3.0 6,223 10/11/2017
11.2.0 9,439 10/10/2017
11.1.0 4,567 10/10/2017
11.0.0 17,910 10/10/2017
10.4.0 252,670 8/8/2017
10.3.0 59,561 7/14/2017
10.2.0 67,420 6/28/2017
10.1.0 5,631 6/27/2017
10.0.0 58,054 6/6/2017
9.1.0 21,480 6/1/2017
9.0.0 52,751 5/13/2017
8.4.0 23,276 5/5/2017
8.3.0 7,829 5/2/2017
8.2.0 29,727 4/27/2017
8.1.1 15,265 4/19/2017
8.1.0 4,911 4/19/2017
8.0.0 12,220 4/13/2017
7.63.0 3,833 11/17/2020 7.63.0 is deprecated.
7.8.0 51,653 4/6/2017
7.7.0 10,302 4/1/2017
7.6.1 11,841 3/28/2017
7.6.0 23,073 3/17/2017
7.5.0 5,425 3/16/2017
7.4.0 13,831 3/7/2017
7.3.0 33,038 3/3/2017
7.2.0 17,711 2/28/2017
7.1.2 11,458 2/24/2017
7.1.1 7,016 2/23/2017
7.1.0 11,153 2/21/2017
7.0.5 66,547 2/21/2017
7.0.4 46,814 2/11/2017
7.0.3 45,904 1/19/2017
7.0.2 36,521 1/10/2017
7.0.1 21,152 12/25/2016
7.0.0 33,735 12/19/2016
6.13.0 15,027 12/17/2016
6.12.1 5,200 12/16/2016
6.12.0 82,999 11/29/2016
6.11.1 20,295 11/21/2016
6.11.0 11,118 11/8/2016
6.10.0 13,678 10/29/2016
6.9.0 71,938 10/18/2016
6.8.0 31,502 10/4/2016
6.7.0 16,710 9/26/2016
6.6.0 19,233 9/11/2016
6.5.0 29,175 9/1/2016
6.4.0 69,305 8/6/2016
6.3.6 23,189 7/29/2016
6.3.5 18,633 7/6/2016
6.3.4 35,278 6/25/2016
6.3.3 81,500 5/14/2016
6.3.2 41,189 4/25/2016
6.3.1 28,706 4/17/2016
6.3.0 4,826 4/17/2016
6.2.2 13,598 4/12/2016
6.2.1 7,504 4/4/2016
6.2.0 4,832 4/3/2016
6.1.1 4,722 4/1/2016
6.1.0 36,851 3/25/2016
6.0.1 39,615 3/15/2016
6.0.0 14,774 3/10/2016
5.3.0 55,383 2/14/2016
5.2.0 19,021 1/25/2016
5.1.3 12,075 1/8/2016
5.1.2 60,735 12/2/2015
5.1.1 9,159 11/29/2015
5.1.0 7,442 11/28/2015
5.0.1 52,898 11/19/2015
5.0.0 13,017 10/23/2015
4.2.1 18,674 9/13/2015
4.2.0 60,135 7/26/2015
4.1.0 11,409 7/11/2015
4.0.2 9,650 7/3/2015
4.0.1 15,293 7/2/2015
4.0.0 4,891 7/2/2015
3.0.2 11,616 6/17/2015
3.0.1 5,030 6/17/2015
3.0.0 7,385 5/28/2015
2.9.0 90,590 4/12/2015
2.8.0 30,580 3/14/2015
2.7.2 15,900 2/17/2015
2.7.1 5,499 2/17/2015
2.7.0 5,317 2/16/2015
2.6.0 5,729 2/14/2015
2.5.1 11,735 2/7/2015
2.5.0 5,574 1/31/2015
2.4.1 4,979 1/31/2015
2.4.0 5,437 1/25/2015
2.3.5 7,897 1/21/2015
2.3.4 24,116 12/4/2014
2.3.3 26,654 11/3/2014
2.3.2 5,671 10/26/2014
2.3.1 5,087 10/26/2014
2.3.0 12,583 9/4/2014
2.2.6 48,710 7/15/2014
2.2.5 9,618 6/22/2014
2.2.4 5,665 6/17/2014
2.2.3 5,541 6/13/2014
2.2.2 7,963 5/29/2014
2.2.1 5,111 5/28/2014
2.2.0 4,831 5/27/2014
2.1.2 5,582 5/14/2014
2.1.1 5,469 5/13/2014
2.1.0 7,458 4/20/2014
2.0.1 5,828 4/13/2014
2.0.0 5,850 4/5/2014
1.7.7 7,176 3/17/2014
1.7.6 19,917 1/18/2014
1.7.5 5,205 1/12/2014
1.7.4 6,634 12/25/2013
1.7.3 4,798 12/25/2013
1.7.2 4,825 12/24/2013
1.7.1 5,778 12/1/2013
1.7.0 7,562 11/3/2013
1.6.3 6,544 10/19/2013
1.6.2 8,969 8/30/2013
1.6.1 8,000 8/15/2013
1.6.0 4,734 8/10/2013
1.5.7 7,187 7/18/2013
1.5.6 5,459 6/30/2013
1.5.5 19,277 5/27/2013
1.5.4 5,626 5/7/2013
1.5.3 6,384 3/30/2013
1.5.2 4,890 3/26/2013
1.5.1 4,954 3/13/2013
1.5.0 4,956 3/4/2013
1.4.3 4,627 3/4/2013
1.4.2 4,897 3/4/2013
1.4.1 4,946 2/24/2013
1.4.0 4,966 2/12/2013
1.3.1 4,764 2/11/2013
1.3.0 4,732 2/11/2013
1.2.1 4,860 1/24/2013
1.2.0 5,581 12/2/2012
1.1.18 14,294 11/4/2012
1.1.17 5,603 9/7/2012
1.1.16 4,884 9/5/2012
1.1.15 4,681 8/27/2012
1.1.14 5,115 8/4/2012
1.1.13 12,059 6/10/2012
1.1.12 5,131 4/21/2012
1.1.11 5,131 4/8/2012
1.1.10 14,577 3/25/2012
1.1.9 4,760 3/5/2012
1.1.8 4,805 2/26/2012
1.1.7 4,754 2/26/2012
1.1.6 4,970 2/26/2012
0.5.2 24,057 11/28/2015