Stripe.net 48.6.0-alpha.2

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

This is only supported on objects returned directly from the Stripe.net SDK. If you are serializing Stripe objects to JSON you will need to handle undocumented properties separately.

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;

Serializing Stripe resources to JSON

Stripe resources returned from a Stripe .NET library method can be serialized to a JSON string, which will contain all publicly documented fields for that object (see Serialization and RawJObject below):

Newtonsoft Json.NET
using Newtonsoft.Json;

...

var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonConvert.SerializeObject(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }

If you are using .NET 6 or above, you can also use System.Text.Json to serialize the same string value:

System.Text.Json
using System.Text.Json;
...
var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonSerializer.Serialize(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }
ASP.NET

If you are using .NET 6 or have installed the [Microsoft.AspNetCore.Mvc.NewtonsoftJson][https://www.nuget.org/packages/microsoft.aspnetcore.mvc.newtonsoftjson] package, you can return Stripe objects from ASP.NET controller methods:

using System.Text.Json;

public class HomeController : Controller
{
...
    public IActionResult Index()
    {
        return Json(_client.V1.Customers.List());
      // { "data": [{"id": "cus_1234", "name": "Jenny Rosen"}, ...], "has_more": false }
    }
}
Serialization and RawJObject

The RawJObject property is ignored on serialization in both Json.NET and System.Text.Json, which means that if you serialize a SDK response to a JSON string and the deserialize it back into a Stripe object, this property may be null or empty. If you rely on RawJObject you will need to serialize those values separately.

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 (142)

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 (26)

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
formcms/formcms
Open-source headless CMS built with ASP.NET Core (C#) and React, featuring REST APIs, GraphQL, and a GrapesJS page designer.
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
Version Downloads Last Updated
49.2.0-beta.1 205 10/29/2025
49.2.0-alpha.2 110 10/30/2025
49.2.0-alpha.1 114 10/29/2025
49.1.0 5,249 10/29/2025
49.1.0-beta.1 1,477 10/1/2025
49.1.0-alpha.4 128 10/23/2025
49.1.0-alpha.3 70 10/17/2025
49.1.0-alpha.2 139 10/9/2025
49.1.0-alpha.1 140 10/1/2025
49.0.0 122,379 9/30/2025
48.6.0-beta.1 4,343 8/27/2025
48.6.0-alpha.2 296 9/17/2025
48.6.0-alpha.1 194 8/27/2025
48.5.0 315,221 8/27/2025
48.5.0-beta.2 1,077 8/8/2025
48.5.0-beta.1 2,571 7/30/2025
48.4.0 234,792 7/30/2025
48.4.0-beta.2 1,992 7/9/2025
48.4.0-beta.1 578 7/1/2025
48.3.0 330,780 7/1/2025
48.3.0-beta.2 322 6/26/2025
48.3.0-beta.1 18,167 5/28/2025
48.2.0 332,809 5/28/2025
48.2.0-beta.2 11,597 4/30/2025
48.2.0-beta.1 187 4/30/2025
48.1.0 330,185 4/30/2025
48.1.0-beta.4 5,690 4/17/2025
48.1.0-beta.3 1,458 4/10/2025
48.1.0-beta.2 7,057 4/2/2025
48.0.2 133,865 4/15/2025
48.0.1 12,426 4/14/2025
48.0.0 205,740 4/1/2025
47.5.0-beta.1 4,319 3/18/2025
47.4.0 810,430 2/24/2025
47.4.0-beta.1 30,870 2/7/2025
47.3.0 503,486 1/27/2025
47.3.0-beta.3 12,473 1/23/2025
47.3.0-beta.2 654 1/18/2025
47.3.0-beta.1 5,652 1/9/2025
47.2.0 494,953 12/18/2024
47.2.0-beta.3 1,774 12/12/2024
47.2.0-beta.2 658 12/5/2024
47.2.0-beta.1 18,607 11/21/2024
47.1.0 566,402 11/20/2024
47.1.0-beta.3 4,253 11/15/2024
47.1.0-beta.2 2,068 11/7/2024
47.1.0-beta.1 4,284 10/29/2024
47.0.0 530,274 10/29/2024
46.3.0-beta.1 14,737 10/18/2024
46.2.2 26,309 10/29/2024
46.2.1 218,589 10/18/2024
46.2.0 220,004 10/9/2024
46.2.0-beta.3 1,459 10/8/2024
46.1.0 82,083 10/3/2024
46.0.0 47,934 10/1/2024
45.15.0-beta.1 14,867 9/18/2024
45.14.0 746,442 9/18/2024
45.13.0 86,208 9/13/2024
45.12.0 5,494 9/13/2024
45.12.0-beta.1 1,799 9/5/2024
45.11.0 152,001 9/5/2024
45.10.0 151,553 8/29/2024
45.10.0-beta.1 3,356 8/23/2024
45.9.0 94,235 8/23/2024
45.9.0-beta.2 225 8/22/2024
45.9.0-beta.1 4,681 8/15/2024
45.8.0 136,798 8/15/2024
45.8.0-beta.1 2,492 8/12/2024
45.7.0 100,627 8/9/2024
45.7.0-beta.1 5,143 8/1/2024
45.6.0 137,216 8/1/2024
45.6.0-beta.1 6,122 7/25/2024
45.5.0 118,074 7/25/2024
45.4.0 147,929 7/18/2024
45.3.0 217,763 7/11/2024
45.3.0-beta.1 76,485 7/5/2024
45.2.0 115,577 7/5/2024
45.2.0-beta.1 3,478 6/27/2024
45.1.0 135,128 6/27/2024
45.0.0 181,590 6/24/2024
44.13.0 353,295 6/17/2024
44.13.0-beta.1 3,372 6/13/2024
44.12.0 75,800 6/13/2024
44.12.0-beta.1 461 6/6/2024
44.11.0 142,297 6/6/2024
44.11.0-beta.1 2,157 5/30/2024
44.10.0 324,873 5/30/2024
44.10.0-beta.1 7,157 5/23/2024
44.9.0 133,589 5/23/2024
44.9.0-beta.1 2,414 5/16/2024
44.8.0 104,403 5/16/2024
44.7.0 138,604 5/9/2024
44.7.0-beta.1 212 5/9/2024
44.6.0 8,920 5/9/2024
44.6.0-beta.1 2,279 5/2/2024
44.5.0 115,075 5/2/2024
44.5.0-beta.1 9,191 4/25/2024
44.4.0 142,457 4/25/2024
44.4.0-beta.1 1,298 4/18/2024
44.3.0 214,463 4/18/2024
44.2.0 51,607 4/16/2024
44.2.0-beta.1 787 4/12/2024
44.1.0 207,328 4/11/2024
44.0.0 198,283 4/10/2024
43.23.0 88,596 4/9/2024
43.23.0-beta.1 2,960 4/4/2024
43.22.0 117,989 4/4/2024
43.22.0-beta.1 34,704 3/28/2024
43.21.0 129,039 3/28/2024
43.21.0-beta.1 1,248 3/21/2024
43.20.0 240,664 3/21/2024
43.20.0-beta.1 624 3/14/2024
43.19.0 179,243 3/14/2024
43.19.0-beta.1 11,886 3/8/2024
43.18.0 134,320 3/7/2024
43.18.0-beta.1 1,794 2/29/2024
43.17.0 95,754 2/29/2024
43.17.0-beta.1 9,918 2/22/2024
43.16.0 99,028 2/22/2024
43.16.0-beta.1 4,906 2/16/2024
43.15.0 148,076 2/16/2024
43.15.0-beta.1 1,283 2/8/2024
43.14.0 153,684 2/8/2024
43.14.0-beta.1 1,531 2/2/2024
43.13.0 244,573 2/1/2024
43.13.0-beta.1 1,408 1/26/2024
43.12.0 150,056 1/25/2024
43.12.0-beta.1 3,577 1/18/2024
43.11.0 144,154 1/18/2024
43.11.0-beta.1 459 1/12/2024
43.10.0 84,293 1/12/2024
43.10.0-beta.1 1,646 1/4/2024
43.9.0 135,370 1/4/2024
43.9.0-beta.1 2,266 12/22/2023
43.8.0 110,915 12/22/2023
43.8.0-beta.1 1,017 12/15/2023
43.7.0 134,690 12/15/2023
43.7.0-beta.1 547 12/8/2023
43.6.0 189,220 12/7/2023
43.6.0-beta.1 664 11/30/2023
43.5.0 90,177 11/30/2023
43.5.0-beta.1 2,811 11/21/2023
43.4.0 285,195 11/21/2023
43.4.0-beta.1 3,107 11/17/2023
43.3.0 121,698 11/17/2023
43.3.0-beta.1 958 11/10/2023
43.2.0 149,174 11/9/2023
43.2.0-beta.1 501 11/2/2023
43.1.0 146,773 11/2/2023
43.1.0-beta.2 1,119 10/26/2023
43.1.0-beta.1 1,464 10/17/2023
43.0.0 364,284 10/16/2023
42.10.0 40,679 10/16/2023
42.10.0-beta.1 2,037 10/11/2023
42.9.0 77,361 10/11/2023
42.9.0-beta.1 2,182 10/5/2023
42.8.0 113,019 10/5/2023
42.8.0-beta.1 1,053 9/29/2023
42.7.0 113,630 9/28/2023
42.7.0-beta.1 10,220 9/22/2023
42.6.0 149,203 9/21/2023
42.6.0-beta.1 4,147 9/15/2023
42.5.0 94,086 9/15/2023
42.5.0-beta.1 3,266 9/7/2023
42.4.0 105,357 9/7/2023
42.4.0-beta.1 1,232 9/1/2023
42.3.0 78,932 8/31/2023
42.2.0 140,524 8/24/2023
42.1.0 76,389 8/17/2023
42.0.0 20,849 8/16/2023
42.0.0-beta.1 246 8/24/2023
41.29.0-beta.1 4,916 8/11/2023
41.28.0 282,584 8/11/2023
41.28.0-beta.1 2,252 8/3/2023
41.27.0 118,306 8/3/2023
41.27.0-beta.1 1,837 7/28/2023
41.26.0 111,779 7/27/2023
41.25.0 125,712 7/20/2023
41.25.0-beta.1 1,066 7/13/2023
41.24.0 106,217 7/13/2023
41.23.0 126,243 7/6/2023
41.23.0-beta.1 7,062 6/30/2023
41.22.0 99,003 6/29/2023
41.22.0-beta.1 485 6/22/2023
41.21.0 135,261 6/22/2023
41.21.0-beta.2 2,879 6/15/2023
41.21.0-beta.1 546 6/8/2023
41.20.0 201,927 6/8/2023
41.20.0-beta.1 727 6/1/2023
41.19.0 136,497 6/1/2023
41.19.0-beta.1 2,889 5/25/2023
41.18.0 369,057 5/25/2023
41.18.0-beta.1 650 5/19/2023
41.17.0 108,426 5/19/2023
41.17.0-beta.1 2,047 5/11/2023
41.16.0 4,276,489 5/11/2023
41.16.0-beta.1 1,201 5/5/2023
41.15.0 138,182 5/4/2023
41.15.0-beta.1 823 4/27/2023
41.14.0 169,883 4/27/2023
41.14.0-beta.3 766 4/20/2023
41.14.0-beta.2 1,880 4/13/2023
41.14.0-beta.1 1,421 4/6/2023
41.13.0 447,602 4/6/2023
41.13.0-beta.1 2,956 3/30/2023
41.12.0 149,143 3/30/2023
41.12.0-beta.1 931 3/24/2023
41.11.0 110,172 3/23/2023
41.11.0-beta.1 5,574 3/17/2023
41.10.0 101,832 3/17/2023
41.10.0-beta.1 2,354 3/9/2023
41.9.0 315,990 3/9/2023
41.9.0-beta.1 8,895 3/3/2023
41.8.0 82,336 3/2/2023
41.8.0-beta.2 1,041 2/24/2023
41.8.0-beta.1 1,992 2/17/2023
41.7.0 223,487 2/16/2023
41.7.0-beta.1 6,190 2/2/2023
41.6.0 295,518 2/2/2023
41.6.0-beta.2 762 1/27/2023
41.6.0-beta.1 1,377 1/19/2023
41.5.0 229,876 1/19/2023
41.5.0-beta.2 514 1/12/2023
41.5.0-beta.1 4,866 1/5/2023
41.4.0 243,071 1/5/2023
41.4.0-beta.1 1,506 12/22/2022
41.3.0 134,412 12/22/2022
41.3.0-beta.2 5,400 12/16/2022
41.3.0-beta.1 4,422 12/8/2022
41.2.0 221,883 12/6/2022
41.1.0 430,999 11/17/2022
41.0.0 56,533 11/16/2022
40.17.0-beta.1 1,078 11/10/2022
40.16.0 324,533 11/8/2022
40.15.0 265,012 11/3/2022
40.15.0-beta.2 676 11/2/2022
40.15.0-beta.1 4,625 10/22/2022
40.14.0 192,938 10/20/2022
40.14.0-beta.1 1,087 10/14/2022
40.13.0 252,758 10/13/2022
40.13.0-beta.1 2,421 10/7/2022
40.12.0 85,311 10/6/2022
40.12.0-beta.2 382 10/4/2022
40.12.0-beta.1 341 10/4/2022
40.11.0 110,174 9/29/2022
40.11.0-beta.1 1,044 9/26/2022
40.10.0 116,274 9/22/2022
40.9.0 146,799 9/15/2022
40.8.0 133,966 9/9/2022
40.7.0 87,025 9/6/2022
40.6.0 157,476 8/31/2022
40.5.0 82,057 8/26/2022
40.5.0-beta.1 747 8/26/2022
40.4.0 218,702 8/23/2022
40.4.0-beta.1 843 8/23/2022
40.3.0 164,869 8/19/2022
40.3.0-beta.1 556 8/11/2022
40.2.0 130,503 8/11/2022
40.1.0 74,877 8/9/2022
40.1.0-beta.1 399 8/3/2022
40.0.0 296,741 8/2/2022
39.126.0 602,039 7/26/2022
39.125.0 108,541 7/25/2022
39.125.0-beta.1 468 7/22/2022
39.124.0 173,616 7/18/2022
39.123.0 270,380 7/12/2022
39.123.0-beta.1 1,825 7/7/2022
39.122.0 118,426 7/7/2022
39.121.0 297,300 6/29/2022
39.120.0 111,013 6/23/2022
39.119.0 138,637 6/17/2022
39.119.0-beta.1 521 6/15/2022
39.118.0 151,789 6/9/2022
39.117.0 48,052 6/8/2022
39.116.0 108,339 6/1/2022
39.115.0 105,519 5/26/2022
39.114.0 132,923 5/23/2022
39.113.0 13,520 5/23/2022
39.112.0 39,413 5/20/2022
39.111.0 318,540 5/11/2022
39.110.0 232,715 5/5/2022
39.109.0 10,429 5/5/2022
39.108.0 31,952 5/3/2022
39.107.0 142,479 4/21/2022
39.106.0 371,368 4/20/2022
39.105.0 261,483 4/13/2022
39.104.0 190,805 4/8/2022
39.103.0 220,511 4/1/2022
39.102.0 33,181 3/30/2022
39.101.0 20,169 3/29/2022
39.100.0 76,445 3/25/2022
39.99.0 65,524 3/23/2022
39.98.0 73,169 3/18/2022
39.97.0 211,404 3/11/2022
39.96.0 95,428 3/9/2022
39.95.0 140,300 3/2/2022
39.94.0 9,354 3/2/2022
39.93.0 60,919 2/26/2022
39.92.0 38,705 2/23/2022
39.91.0 527,768 2/16/2022
39.90.0 146,539 2/6/2022
39.89.0 330,497 1/25/2022
39.88.0 100,392 1/20/2022
39.87.0 15,279 1/19/2022
39.86.0 62,832 1/13/2022
39.85.0 34,869 1/12/2022
39.84.0 293,295 12/22/2021
39.83.0 112,642 12/15/2021
39.82.0 68,444 12/9/2021
39.81.0 12,678 12/9/2021
39.80.0 572,940 11/20/2021
39.79.0 22,433 11/17/2021
39.78.1 12,786 11/16/2021
39.78.0 5,037 11/16/2021
39.77.0 47,388 11/11/2021
39.76.0 126,310 11/4/2021
39.75.1 7,277 11/4/2021
39.75.0 147,254 11/1/2021
39.74.0 258,456 10/20/2021
39.73.0 124,846 10/11/2021
39.72.0 9,466 10/11/2021
39.71.0 28,306 10/7/2021
39.70.0 77,268 9/29/2021
39.69.0 70,883 9/24/2021
39.68.0 224,577 9/16/2021
39.67.0 8,664 9/15/2021
39.66.0 132,718 9/2/2021
39.65.0 6,336 9/1/2021
39.64.0 238,250 8/27/2021
39.63.0 253,166 8/11/2021
39.62.0 172,639 7/28/2021
39.61.0 128,588 7/22/2021
39.60.0 20,998 7/21/2021
39.59.0 244,148 7/14/2021
39.58.0 64,870 7/9/2021
39.57.0 101,773 6/30/2021
39.56.1 7,117 6/30/2021
39.56.0 11,072 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 45,354 6/25/2021
39.54.0 72,500 6/16/2021
39.53.0 355,696 6/7/2021
39.52.0 34,879 6/4/2021
39.51.0 64,147 6/4/2021
39.50.0 224,696 5/26/2021
39.49.0 93,897 5/20/2021
39.48.0 181,523 5/7/2021
39.47.0 51,266 5/6/2021
39.46.0 5,630 5/5/2021
39.45.0 146,067 4/16/2021
39.44.0 166,563 4/12/2021
39.43.0 141,592 4/3/2021
39.42.0 155,017 3/31/2021
39.41.0 125,247 3/26/2021
39.40.0 195,360 3/22/2021
39.39.0 224,952 3/1/2021
39.38.0 299,693 2/23/2021
39.37.0 88,820 2/18/2021
39.36.0 16,436 2/17/2021
39.35.0 105,099 2/9/2021
39.34.0 140,358 2/3/2021
39.33.0 247,967 1/21/2021
39.32.0 142,661 1/7/2021
39.31.0 287,155 12/16/2020
39.30.0 68,674 12/11/2020
39.29.0 181,902 12/4/2020
39.28.0 218,707 11/24/2020
39.27.0 55,457 11/20/2020
39.26.0 16,609 11/19/2020
39.25.0 28,114 11/18/2020
39.24.0 10,939 11/18/2020
39.23.0 221,460 11/9/2020
39.22.0 46,860 11/4/2020
39.21.0 79,222 10/29/2020
39.20.0 27,023 10/27/2020
39.19.0 39,357 10/26/2020
39.18.0 17,136 10/23/2020
39.17.0 15,850 10/23/2020
39.16.0 123,530 10/14/2020
39.15.0 22,459 10/13/2020
39.14.0 6,673 10/12/2020
39.13.0 25,817 10/9/2020
39.12.0 27,956 10/9/2020
39.11.0 124,515 10/3/2020
39.10.0 42,175 9/30/2020
39.9.0 19,277 9/30/2020
39.8.0 19,690 9/29/2020
39.7.0 48,214 9/25/2020
39.6.0 29,823 9/23/2020
39.5.0 57,365 9/22/2020
39.4.0 113,504 9/13/2020
39.3.0 100,317 9/8/2020
39.2.0 52,241 9/3/2020
39.1.2 51,934 9/1/2020
37.35.0 493,349 8/27/2020
37.34.0 126,650 8/19/2020
37.33.0 43,289 8/18/2020
37.32.0 10,530 8/17/2020
37.31.0 27,520 8/13/2020
37.30.0 76,183 8/7/2020
37.29.0 36,777 8/6/2020
37.28.0 15,910 8/4/2020
37.27.0 80,146 7/29/2020
37.26.0 140,095 7/25/2020
37.25.0 7,645 7/25/2020
37.24.0 23,995 7/22/2020
37.23.0 10,748 7/21/2020
37.22.0 6,904 7/21/2020
37.21.0 12,146 7/21/2020
37.20.0 16,409 7/18/2020
37.19.0 8,436 7/17/2020
37.18.0 89,098 7/15/2020
37.17.0 45,858 7/13/2020
37.16.0 105,597 7/6/2020
37.15.1 38,947 7/3/2020
37.15.0 34,209 7/1/2020
37.14.0 203,627 6/25/2020
37.13.0 42,286 6/23/2020
37.12.0 37,292 6/22/2020
37.11.0 17,497 6/18/2020
37.10.0 93,709 6/11/2020
37.9.0 11,716 6/11/2020
37.8.0 226,936 6/3/2020
37.7.0 5,898 6/3/2020
37.6.0 58,610 5/29/2020
37.5.0 32,895 5/28/2020
37.4.0 162,984 5/22/2020
37.3.0 92,608 5/21/2020
37.2.0 5,913 5/20/2020
37.1.0 75,484 5/19/2020
37.0.0 70,496 5/18/2020
36.12.2 80,053 5/14/2020
36.12.1 5,630 5/14/2020
36.12.0 5,750 5/13/2020
36.11.0 84,252 5/12/2020
36.10.0 19,221 5/11/2020
36.9.0 29,378 5/8/2020
36.8.1 40,545 5/5/2020
36.8.0 33,074 5/1/2020
36.7.0 19,186 4/29/2020
36.6.0 31,567 4/24/2020
36.5.0 25,592 4/22/2020
36.4.0 6,078 4/22/2020
36.3.0 10,381 4/21/2020
36.2.0 22,480 4/18/2020
36.1.0 18,926 4/17/2020
36.0.0 15,010 4/16/2020
35.17.0 40,192 4/14/2020
35.16.0 22,469 4/13/2020
35.15.0 7,944 4/13/2020
35.14.0 17,419 4/10/2020
35.13.0 6,870 4/9/2020
35.12.1 200,181 4/8/2020
35.12.0 55,972 4/3/2020
35.11.1 230,582 3/31/2020
35.11.0 38,110 3/31/2020
35.10.0 56,617 3/26/2020
35.9.0 44,921 3/25/2020
35.8.0 9,298 3/24/2020
35.7.1 7,801 3/23/2020
35.7.0 39,262 3/20/2020
35.6.0 313,349 3/13/2020
35.5.0 8,713 3/12/2020
35.4.0 6,846 3/12/2020
35.3.0 93,766 3/5/2020
35.2.0 6,046 3/4/2020
35.1.0 8,609 3/4/2020
35.0.0 28,235 3/4/2020
34.26.0 121,081 2/24/2020
34.25.0 23,289 2/21/2020
34.24.0 10,540 2/21/2020
34.23.0 131,098 2/17/2020
34.22.0 38,906 2/13/2020
34.21.0 6,972 2/12/2020
34.20.1 11,918 2/12/2020
34.20.0 95,102 2/6/2020
34.19.0 51,088 2/3/2020
34.18.0 57,527 1/31/2020
34.17.0 61,427 1/25/2020
34.16.1 13,908 1/22/2020
34.16.0 45,683 1/17/2020
34.15.0 283,818 1/15/2020
34.14.0 8,747 1/14/2020
34.13.0 62,276 1/10/2020
34.12.0 26,214 1/6/2020
34.11.0 17,183 1/4/2020
34.10.1 10,588 1/3/2020
34.10.0 31,770 12/31/2019
34.9.0 111,731 12/24/2019
34.8.0 35,146 12/21/2019
34.7.0 11,581 12/19/2019
34.6.0 34,121 12/17/2019
34.5.0 60,802 12/13/2019
34.4.0 8,971 12/12/2019
34.3.0 32,749 12/9/2019
34.2.0 5,677 12/9/2019
34.1.0 104,925 12/4/2019
34.0.0 23,211 12/4/2019
33.9.0 49,575 12/2/2019
33.8.0 37,341 11/26/2019
33.7.0 22,877 11/25/2019
33.6.0 21,132 11/22/2019
33.5.0 10,468 11/21/2019
33.4.0 15,881 11/19/2019
33.3.0 77,994 11/8/2019
33.2.0 11,098 11/7/2019
33.1.0 15,285 11/6/2019
33.0.0 29,224 11/6/2019
32.2.0 35,128 11/4/2019
32.1.3 40,345 10/28/2019
32.1.2 9,759 10/25/2019
32.1.1 5,123 10/24/2019
32.1.0 16,348 10/24/2019
32.0.0 23,971 10/19/2019
31.2.0 6,983 10/18/2019
31.1.0 120,035 10/11/2019
31.0.0 6,944 10/10/2019
30.1.0 51,242 10/10/2019
30.0.1 7,159 10/9/2019
30.0.0 44,902 10/9/2019
29.6.0 56,556 10/3/2019
29.5.0 65,223 9/27/2019
29.4.0 23,398 9/26/2019
29.3.0 11,914 9/26/2019
29.2.1 31,908 9/23/2019
29.2.0 41,569 9/19/2019
29.1.0 167,791 9/13/2019
29.0.1 14,064 9/12/2019
29.0.0 96,488 9/10/2019
28.11.0 50,986 9/9/2019
28.10.0 96,618 9/4/2019
28.9.0 22,987 9/3/2019
28.8.0 357,306 8/30/2019
28.7.0 6,393 8/29/2019
28.6.0 182,593 8/27/2019
28.5.0 59,242 8/23/2019
28.4.0 23,073 8/21/2019
28.3.0 18,890 8/20/2019
28.2.0 162,411 8/16/2019
28.1.0 50,303 8/15/2019
28.0.0 59,840 8/14/2019
27.25.1 18,846 8/14/2019
27.24.0 64,000 8/9/2019
27.23.0 11,626 8/8/2019
27.22.0 5,632 8/8/2019
27.21.0 141,291 8/2/2019
27.20.0 32,438 8/1/2019
27.19.0 35,440 7/31/2019
27.18.0 32,213 7/26/2019
27.17.0 14,848 7/25/2019
27.16.1 121,584 7/23/2019
27.16.0 60,633 7/22/2019
27.15.0 105,233 7/19/2019
27.14.0 37,928 7/18/2019
27.13.0 48,234 7/16/2019
27.12.0 7,196 7/15/2019
27.11.0 30,729 7/11/2019
27.10.0 22,137 7/10/2019
27.9.1 39,628 7/10/2019
27.9.0 39,011 7/5/2019
27.8.1 52,793 7/3/2019
27.8.0 10,317 7/2/2019
27.7.0 5,908 7/2/2019
27.6.0 7,718 7/1/2019
27.5.0 12,691 7/1/2019
27.4.0 25,947 6/26/2019
27.3.2 59,567 6/20/2019
27.3.1 26,740 6/18/2019
27.3.0 11,468 6/17/2019
27.2.0 34,808 6/14/2019
27.1.3 12,272 6/12/2019
27.1.2 13,283 6/11/2019
27.1.1 5,605 6/10/2019
27.1.0 6,205 6/10/2019
27.0.0 16,220 6/7/2019
26.1.0 24,009 6/6/2019
26.0.0 130,674 5/24/2019
25.19.1 22,648 5/22/2019
25.19.0 39,476 5/17/2019
25.18.0 20,228 5/14/2019
25.17.0 18,812 5/10/2019
25.16.1 20,823 5/8/2019
25.16.0 14,452 5/6/2019
25.15.0 54,225 5/4/2019
25.14.0 8,547 5/3/2019
25.13.0 27,430 4/30/2019
25.12.0 27,376 4/25/2019
25.11.0 5,448 4/24/2019
25.10.0 39,953 4/23/2019
25.9.0 20,391 4/18/2019
25.8.0 68,197 4/17/2019
25.7.1 6,040 4/16/2019
25.7.0 12,442 4/15/2019
25.6.0 38,126 4/10/2019
25.5.0 5,324 4/9/2019
25.4.0 15,917 4/5/2019
25.3.0 167,640 3/29/2019
25.2.0 30,501 3/25/2019
25.1.0 17,177 3/22/2019
25.0.0 30,059 3/19/2019
24.6.0 16,292 3/19/2019
24.5.0 44,323 3/14/2019
24.4.1 28,399 3/11/2019
24.3.0 41,665 3/7/2019
24.2.0 6,508 3/6/2019
24.1.0 40,180 2/28/2019
24.0.2 176,703 2/20/2019
24.0.1 6,116 2/20/2019
23.2.0 5,830 2/19/2019
23.1.0 8,477 2/18/2019
23.0.0 17,728 2/14/2019
22.9.0 12,313 2/12/2019
22.8.1 44,672 2/4/2019
22.8.0 97,592 1/25/2019
22.7.0 36,233 1/20/2019
22.6.0 8,807 1/18/2019
22.5.0 6,313 1/17/2019
22.4.0 32,302 1/10/2019
22.3.0 43,142 1/9/2019
22.2.0 5,952 1/9/2019
22.1.0 8,761 1/8/2019
22.0.0 13,125 1/7/2019
21.9.0 34,074 1/3/2019
21.8.1 6,828 1/3/2019
21.8.0 45,215 12/27/2018
21.7.1 16,476 12/21/2018
21.7.0 268,588 11/28/2018
21.6.0 15,043 11/27/2018
21.5.0 40,094 11/26/2018
21.4.1 30,982 11/16/2018
21.4.0 11,434 11/14/2018
21.3.0 5,879 11/14/2018
21.2.0 12,267 11/12/2018
21.1.0 13,394 11/9/2018
21.0.0 10,334 11/9/2018
20.4.1 12,068 11/8/2018
20.4.0 23,576 11/5/2018
20.3.0 11,799 10/31/2018
20.2.0 20,309 10/25/2018
20.1.0 22,309 10/23/2018
20.0.0 8,359 10/22/2018
19.10.0 276,578 10/9/2018
19.9.2 42,078 9/28/2018
19.9.1 12,080 9/27/2018
19.9.0 135,970 9/26/2018
19.8.0 19,065 9/24/2018
19.7.0 100,543 9/20/2018
19.6.0 51,180 9/11/2018
19.5.0 24,105 9/6/2018
19.4.0 7,859 9/6/2018
19.3.0 21,093 9/4/2018
19.2.0 29,125 8/29/2018
19.1.0 10,924 8/28/2018
19.0.1 7,185 8/27/2018
18.0.0 31,533 8/23/2018
17.11.0 29,078 8/23/2018
17.10.0 17,134 8/21/2018
17.9.0 16,754 8/16/2018
17.8.0 351,616 8/3/2018
17.7.0 46,293 7/31/2018
17.6.0 36,595 7/27/2018
17.5.0 9,650 7/26/2018
17.4.0 19,432 7/23/2018
17.3.1 88,842 7/16/2018
17.3.0 23,533 7/13/2018
17.2.0 6,281 7/13/2018
17.1.0 7,930 7/12/2018
17.0.0 7,024 7/11/2018
16.16.1 37,175 7/11/2018
16.16.0 18,779 7/6/2018
16.14.0 33,623 6/29/2018
16.13.0 7,178 6/28/2018
16.12.0 47,550 6/20/2018
16.11.0 6,153 6/20/2018
16.10.0 106,146 6/13/2018
16.9.0 18,756 6/12/2018
16.8.0 7,060 6/12/2018
16.7.0 17,603 6/6/2018
16.6.0 6,464 6/6/2018
16.5.0 9,397 6/6/2018
16.4.0 28,554 6/1/2018
16.3.0 51,947 5/23/2018
16.1.0 121,821 5/10/2018
16.0.0 7,680 5/10/2018
15.8.0 15,298 5/8/2018
15.7.0 13,205 5/3/2018
15.6.2 33,130 4/25/2018
15.6.1 82,888 4/19/2018
15.6.0 37,774 4/18/2018
15.5.0 17,157 4/16/2018
15.3.2 215,579 4/9/2018
15.3.1 16,434 4/6/2018
15.3.0 44,128 4/4/2018
15.2.1 60,260 3/27/2018
15.2.0 6,967 3/26/2018
15.1.0 10,775 3/23/2018
15.0.0 28,775 3/21/2018
14.0.0 16,291 3/16/2018
13.5.0 34,206 3/15/2018
13.4.0 10,862 3/13/2018
13.3.1 30,211 3/5/2018
13.3.0 19,916 3/1/2018
13.2.0 10,989 2/27/2018
13.1.0 827,912 2/22/2018
13.0.1 13,041 2/19/2018
13.0.0 34,030 2/13/2018
12.1.0 265,734 1/19/2018
12.0.0 13,917 1/16/2018
11.10.0 72,764 12/26/2017
11.9.0 77,754 11/29/2017
11.8.2 19,183 11/23/2017
11.8.1 16,206 11/23/2017
11.7.1 90,107 10/31/2017
11.7.0 6,250 10/31/2017
11.6.1 24,095 10/24/2017
11.6.0 44,011 10/19/2017
11.5.0 43,898 10/17/2017
11.4.0 9,184 10/13/2017
11.3.0 7,709 10/11/2017
11.2.0 10,930 10/10/2017
11.1.0 6,097 10/10/2017
11.0.0 19,732 10/10/2017
10.4.0 256,846 8/8/2017
10.3.0 61,224 7/14/2017
10.2.0 69,464 6/28/2017
10.1.0 7,145 6/27/2017
10.0.0 60,447 6/6/2017
9.1.0 23,019 6/1/2017
9.0.0 54,434 5/13/2017
8.4.0 27,208 5/5/2017
8.3.0 9,347 5/2/2017
8.2.0 31,330 4/27/2017
8.1.1 16,924 4/19/2017
8.1.0 6,487 4/19/2017
8.0.0 13,754 4/13/2017
7.63.0 5,326 11/17/2020 7.63.0 is deprecated.
7.8.0 55,352 4/6/2017
7.7.0 11,828 4/1/2017
7.6.1 13,355 3/28/2017
7.6.0 24,623 3/17/2017
7.5.0 6,939 3/16/2017
7.4.0 15,370 3/7/2017
7.3.0 35,708 3/3/2017
7.2.0 19,743 2/28/2017
7.1.2 12,991 2/24/2017
7.1.1 8,599 2/23/2017
7.1.0 12,668 2/21/2017
7.0.5 68,068 2/21/2017
7.0.4 48,977 2/11/2017
7.0.3 48,115 1/19/2017
7.0.2 38,281 1/10/2017
7.0.1 22,698 12/25/2016
7.0.0 35,620 12/19/2016
6.13.0 16,576 12/17/2016
6.12.1 6,704 12/16/2016
6.12.0 84,833 11/29/2016
6.11.1 22,080 11/21/2016
6.11.0 12,629 11/8/2016
6.10.0 15,169 10/29/2016
6.9.0 73,639 10/18/2016
6.8.0 33,150 10/4/2016
6.7.0 18,207 9/26/2016
6.6.0 20,926 9/11/2016
6.5.0 30,693 9/1/2016
6.4.0 72,544 8/6/2016
6.3.6 24,693 7/29/2016
6.3.5 20,327 7/6/2016
6.3.4 36,788 6/25/2016
6.3.3 83,758 5/14/2016
6.3.2 43,017 4/25/2016
6.3.1 30,253 4/17/2016
6.3.0 6,322 4/17/2016
6.2.2 15,095 4/12/2016
6.2.1 9,013 4/4/2016
6.2.0 6,335 4/3/2016
6.1.1 6,209 4/1/2016
6.1.0 38,371 3/25/2016
6.0.1 42,298 3/15/2016
6.0.0 16,262 3/10/2016
5.3.0 57,946 2/14/2016
5.2.0 20,582 1/25/2016
5.1.3 13,637 1/8/2016
5.1.2 62,928 12/2/2015
5.1.1 10,705 11/29/2015
5.1.0 8,994 11/28/2015
5.0.1 57,576 11/19/2015
5.0.0 14,589 10/23/2015
4.2.1 20,320 9/13/2015
4.2.0 64,117 7/26/2015
4.1.0 12,939 7/11/2015
4.0.2 11,173 7/3/2015
4.0.1 16,995 7/2/2015
4.0.0 6,407 7/2/2015
3.0.2 13,154 6/17/2015
3.0.1 6,543 6/17/2015
3.0.0 8,908 5/28/2015
2.9.0 92,192 4/12/2015
2.8.0 32,114 3/14/2015
2.7.2 17,657 2/17/2015
2.7.1 7,018 2/17/2015
2.7.0 6,838 2/16/2015
2.6.0 7,270 2/14/2015
2.5.1 13,291 2/7/2015
2.5.0 7,106 1/31/2015
2.4.1 6,514 1/31/2015
2.4.0 6,959 1/25/2015
2.3.5 9,456 1/21/2015
2.3.4 26,059 12/4/2014
2.3.3 28,238 11/3/2014
2.3.2 7,195 10/26/2014
2.3.1 6,634 10/26/2014
2.3.0 14,194 9/4/2014
2.2.6 51,381 7/15/2014
2.2.5 11,151 6/22/2014
2.2.4 7,190 6/17/2014
2.2.3 7,059 6/13/2014
2.2.2 9,486 5/29/2014
2.2.1 6,643 5/28/2014
2.2.0 6,351 5/27/2014
2.1.2 7,112 5/14/2014
2.1.1 6,987 5/13/2014
2.1.0 8,976 4/20/2014
2.0.1 7,349 4/13/2014
2.0.0 7,384 4/5/2014
1.7.7 8,701 3/17/2014
1.7.6 21,456 1/18/2014
1.7.5 6,725 1/12/2014
1.7.4 8,154 12/25/2013
1.7.3 6,317 12/25/2013
1.7.2 6,348 12/24/2013
1.7.1 7,299 12/1/2013
1.7.0 9,146 11/3/2013
1.6.3 8,064 10/19/2013
1.6.2 10,467 8/30/2013
1.6.1 9,502 8/15/2013
1.6.0 6,234 8/10/2013
1.5.7 8,686 7/18/2013
1.5.6 6,984 6/30/2013
1.5.5 20,788 5/27/2013
1.5.4 7,123 5/7/2013
1.5.3 7,913 3/30/2013
1.5.2 6,389 3/26/2013
1.5.1 6,452 3/13/2013
1.5.0 6,448 3/4/2013
1.4.3 6,145 3/4/2013
1.4.2 6,403 3/4/2013
1.4.1 6,458 2/24/2013
1.4.0 6,454 2/12/2013
1.3.1 6,271 2/11/2013
1.3.0 6,235 2/11/2013
1.2.1 6,376 1/24/2013
1.2.0 7,087 12/2/2012
1.1.18 15,800 11/4/2012
1.1.17 7,111 9/7/2012
1.1.16 6,387 9/5/2012
1.1.15 6,189 8/27/2012
1.1.14 6,621 8/4/2012
1.1.13 14,463 6/10/2012
1.1.12 6,629 4/21/2012
1.1.11 6,627 4/8/2012
1.1.10 16,203 3/25/2012
1.1.9 6,259 3/5/2012
1.1.8 6,295 2/26/2012
1.1.7 6,242 2/26/2012
1.1.6 6,487 2/26/2012
0.5.2 27,131 11/28/2015