Stripe.net 48.2.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.2.0
                    
NuGet\Install-Package Stripe.net -Version 48.2.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.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stripe.net" Version="48.2.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.2.0
                    
#r "nuget: Stripe.net, 48.2.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.
#addin nuget:?package=Stripe.net&version=48.2.0
                    
Install Stripe.net as a Cake Addin
#tool nuget:?package=Stripe.net&version=48.2.0
                    
Install Stripe.net 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

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.

Use StripeConfiguration.ApiKey property to set the secret key.

StripeConfiguration.ApiKey = "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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
Customer customer = service.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 service = new CustomerService();
var customers = service.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 service = new CustomerService();
var customers = service.ListAutoPaging();

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

Per-request configuration

All of 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 service = new CustomerService();
var customer = service.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 service = new CustomerService();
var customer = service.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, choose the version that includes support for the preview feature you are interested in 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");

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

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

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
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
bhrugen/Bulky
bhrugen/Mango_Microservices
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
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.3.0-beta.1 740 5/28/2025
48.2.0 70,590 5/28/2025
48.2.0-beta.2 2,989 4/30/2025
48.2.0-beta.1 129 4/30/2025
48.1.0 144,153 4/30/2025
48.1.0-beta.4 2,365 4/17/2025
48.1.0-beta.3 1,245 4/10/2025
48.1.0-beta.2 1,655 4/2/2025
48.0.2 68,165 4/15/2025
48.0.1 6,394 4/14/2025
48.0.0 95,336 4/1/2025
47.5.0-beta.1 2,188 3/18/2025
47.4.0 463,258 2/24/2025
47.4.0-beta.1 16,365 2/7/2025
47.3.0 347,580 1/27/2025
47.3.0-beta.3 7,598 1/23/2025
47.3.0-beta.2 582 1/18/2025
47.3.0-beta.1 4,599 1/9/2025
47.2.0 346,940 12/18/2024
47.2.0-beta.3 1,657 12/12/2024
47.2.0-beta.2 578 12/5/2024
47.2.0-beta.1 17,870 11/21/2024
47.1.0 419,057 11/20/2024
47.1.0-beta.3 2,760 11/15/2024
47.1.0-beta.2 1,127 11/7/2024
47.1.0-beta.1 4,138 10/29/2024
47.0.0 385,504 10/29/2024
46.3.0-beta.1 10,580 10/18/2024
46.2.2 19,535 10/29/2024
46.2.1 161,951 10/18/2024
46.2.0 186,540 10/9/2024
46.2.0-beta.3 1,415 10/8/2024
46.1.0 70,340 10/3/2024
46.0.0 32,092 10/1/2024
45.15.0-beta.1 13,133 9/18/2024
45.14.0 455,872 9/18/2024
45.13.0 69,743 9/13/2024
45.12.0 2,998 9/13/2024
45.12.0-beta.1 1,739 9/5/2024
45.11.0 128,841 9/5/2024
45.10.0 123,404 8/29/2024
45.10.0-beta.1 3,277 8/23/2024
45.9.0 76,946 8/23/2024
45.9.0-beta.2 183 8/22/2024
45.9.0-beta.1 4,461 8/15/2024
45.8.0 111,556 8/15/2024
45.8.0-beta.1 2,361 8/12/2024
45.7.0 86,365 8/9/2024
45.7.0-beta.1 4,192 8/1/2024
45.6.0 102,328 8/1/2024
45.6.0-beta.1 5,170 7/25/2024
45.5.0 101,694 7/25/2024
45.4.0 110,834 7/18/2024
45.3.0 161,973 7/11/2024
45.3.0-beta.1 53,529 7/5/2024
45.2.0 104,557 7/5/2024
45.2.0-beta.1 3,412 6/27/2024
45.1.0 119,355 6/27/2024
45.0.0 130,255 6/24/2024
44.13.0 278,938 6/17/2024
44.13.0-beta.1 3,331 6/13/2024
44.12.0 66,622 6/13/2024
44.12.0-beta.1 408 6/6/2024
44.11.0 113,989 6/6/2024
44.11.0-beta.1 2,108 5/30/2024
44.10.0 255,670 5/30/2024
44.10.0-beta.1 6,562 5/23/2024
44.9.0 113,758 5/23/2024
44.9.0-beta.1 2,315 5/16/2024
44.8.0 93,079 5/16/2024
44.7.0 114,743 5/9/2024
44.7.0-beta.1 185 5/9/2024
44.6.0 6,588 5/9/2024
44.6.0-beta.1 1,807 5/2/2024
44.5.0 99,102 5/2/2024
44.5.0-beta.1 7,059 4/25/2024
44.4.0 123,561 4/25/2024
44.4.0-beta.1 1,137 4/18/2024
44.3.0 174,676 4/18/2024
44.2.0 44,851 4/16/2024
44.2.0-beta.1 744 4/12/2024
44.1.0 158,608 4/11/2024
44.0.0 116,738 4/10/2024
43.23.0 75,476 4/9/2024
43.23.0-beta.1 2,638 4/4/2024
43.22.0 90,602 4/4/2024
43.22.0-beta.1 34,663 3/28/2024
43.21.0 113,462 3/28/2024
43.21.0-beta.1 1,198 3/21/2024
43.20.0 218,596 3/21/2024
43.20.0-beta.1 582 3/14/2024
43.19.0 164,545 3/14/2024
43.19.0-beta.1 9,926 3/8/2024
43.18.0 114,809 3/7/2024
43.18.0-beta.1 807 2/29/2024
43.17.0 82,679 2/29/2024
43.17.0-beta.1 9,530 2/22/2024
43.16.0 88,407 2/22/2024
43.16.0-beta.1 4,855 2/16/2024
43.15.0 129,812 2/16/2024
43.15.0-beta.1 1,212 2/8/2024
43.14.0 125,728 2/8/2024
43.14.0-beta.1 1,381 2/2/2024
43.13.0 207,172 2/1/2024
43.13.0-beta.1 1,365 1/26/2024
43.12.0 130,671 1/25/2024
43.12.0-beta.1 3,540 1/18/2024
43.11.0 125,671 1/18/2024
43.11.0-beta.1 412 1/12/2024
43.10.0 76,251 1/12/2024
43.10.0-beta.1 1,525 1/4/2024
43.9.0 114,736 1/4/2024
43.9.0-beta.1 2,217 12/22/2023
43.8.0 100,188 12/22/2023
43.8.0-beta.1 999 12/15/2023
43.7.0 122,631 12/15/2023
43.7.0-beta.1 514 12/8/2023
43.6.0 174,122 12/7/2023
43.6.0-beta.1 599 11/30/2023
43.5.0 82,429 11/30/2023
43.5.0-beta.1 2,712 11/21/2023
43.4.0 265,243 11/21/2023
43.4.0-beta.1 2,806 11/17/2023
43.3.0 104,636 11/17/2023
43.3.0-beta.1 921 11/10/2023
43.2.0 130,614 11/9/2023
43.2.0-beta.1 466 11/2/2023
43.1.0 126,589 11/2/2023
43.1.0-beta.2 1,067 10/26/2023
43.1.0-beta.1 1,386 10/17/2023
43.0.0 324,558 10/16/2023
42.10.0 33,815 10/16/2023
42.10.0-beta.1 1,605 10/11/2023
42.9.0 70,764 10/11/2023
42.9.0-beta.1 2,142 10/5/2023
42.8.0 100,521 10/5/2023
42.8.0-beta.1 1,017 9/29/2023
42.7.0 98,535 9/28/2023
42.7.0-beta.1 8,645 9/22/2023
42.6.0 128,949 9/21/2023
42.6.0-beta.1 4,078 9/15/2023
42.5.0 89,528 9/15/2023
42.5.0-beta.1 2,507 9/7/2023
42.4.0 91,349 9/7/2023
42.4.0-beta.1 1,177 9/1/2023
42.3.0 71,585 8/31/2023
42.2.0 119,341 8/24/2023
42.1.0 67,330 8/17/2023
42.0.0 16,757 8/16/2023
42.0.0-beta.1 195 8/24/2023
41.29.0-beta.1 4,814 8/11/2023
41.28.0 243,722 8/11/2023
41.28.0-beta.1 2,157 8/3/2023
41.27.0 104,424 8/3/2023
41.27.0-beta.1 1,703 7/28/2023
41.26.0 100,403 7/27/2023
41.25.0 119,443 7/20/2023
41.25.0-beta.1 931 7/13/2023
41.24.0 101,045 7/13/2023
41.23.0 119,459 7/6/2023
41.23.0-beta.1 6,487 6/30/2023
41.22.0 92,749 6/29/2023
41.22.0-beta.1 411 6/22/2023
41.21.0 99,448 6/22/2023
41.21.0-beta.2 2,806 6/15/2023
41.21.0-beta.1 466 6/8/2023
41.20.0 196,422 6/8/2023
41.20.0-beta.1 590 6/1/2023
41.19.0 128,891 6/1/2023
41.19.0-beta.1 2,622 5/25/2023
41.18.0 306,068 5/25/2023
41.18.0-beta.1 581 5/19/2023
41.17.0 104,211 5/19/2023
41.17.0-beta.1 1,901 5/11/2023
41.16.0 2,702,200 5/11/2023
41.16.0-beta.1 822 5/5/2023
41.15.0 124,818 5/4/2023
41.15.0-beta.1 746 4/27/2023
41.14.0 155,178 4/27/2023
41.14.0-beta.3 683 4/20/2023
41.14.0-beta.2 1,511 4/13/2023
41.14.0-beta.1 1,339 4/6/2023
41.13.0 415,719 4/6/2023
41.13.0-beta.1 2,631 3/30/2023
41.12.0 139,698 3/30/2023
41.12.0-beta.1 853 3/24/2023
41.11.0 104,462 3/23/2023
41.11.0-beta.1 4,254 3/17/2023
41.10.0 97,156 3/17/2023
41.10.0-beta.1 2,282 3/9/2023
41.9.0 308,406 3/9/2023
41.9.0-beta.1 8,586 3/3/2023
41.8.0 79,702 3/2/2023
41.8.0-beta.2 959 2/24/2023
41.8.0-beta.1 1,897 2/17/2023
41.7.0 211,371 2/16/2023
41.7.0-beta.1 5,848 2/2/2023
41.6.0 276,491 2/2/2023
41.6.0-beta.2 633 1/27/2023
41.6.0-beta.1 1,288 1/19/2023
41.5.0 222,610 1/19/2023
41.5.0-beta.2 449 1/12/2023
41.5.0-beta.1 4,790 1/5/2023
41.4.0 228,227 1/5/2023
41.4.0-beta.1 1,410 12/22/2022
41.3.0 129,355 12/22/2022
41.3.0-beta.2 3,888 12/16/2022
41.3.0-beta.1 4,284 12/8/2022
41.2.0 206,851 12/6/2022
41.1.0 372,023 11/17/2022
41.0.0 35,899 11/16/2022
40.17.0-beta.1 922 11/10/2022
40.16.0 298,605 11/8/2022
40.15.0 254,000 11/3/2022
40.15.0-beta.2 610 11/2/2022
40.15.0-beta.1 4,550 10/22/2022
40.14.0 186,607 10/20/2022
40.14.0-beta.1 1,011 10/14/2022
40.13.0 222,759 10/13/2022
40.13.0-beta.1 2,289 10/7/2022
40.12.0 80,429 10/6/2022
40.12.0-beta.2 297 10/4/2022
40.12.0-beta.1 270 10/4/2022
40.11.0 103,017 9/29/2022
40.11.0-beta.1 974 9/26/2022
40.10.0 109,817 9/22/2022
40.9.0 133,763 9/15/2022
40.8.0 128,307 9/9/2022
40.7.0 83,855 9/6/2022
40.6.0 143,180 8/31/2022
40.5.0 78,383 8/26/2022
40.5.0-beta.1 663 8/26/2022
40.4.0 211,995 8/23/2022
40.4.0-beta.1 776 8/23/2022
40.3.0 158,779 8/19/2022
40.3.0-beta.1 480 8/11/2022
40.2.0 123,784 8/11/2022
40.1.0 67,350 8/9/2022
40.1.0-beta.1 326 8/3/2022
40.0.0 283,203 8/2/2022
39.126.0 549,762 7/26/2022
39.125.0 103,573 7/25/2022
39.125.0-beta.1 391 7/22/2022
39.124.0 157,470 7/18/2022
39.123.0 253,677 7/12/2022
39.123.0-beta.1 1,751 7/7/2022
39.122.0 114,166 7/7/2022
39.121.0 279,124 6/29/2022
39.120.0 99,203 6/23/2022
39.119.0 132,692 6/17/2022
39.119.0-beta.1 441 6/15/2022
39.118.0 139,331 6/9/2022
39.117.0 45,812 6/8/2022
39.116.0 102,763 6/1/2022
39.115.0 97,363 5/26/2022
39.114.0 124,860 5/23/2022
39.113.0 11,611 5/23/2022
39.112.0 36,914 5/20/2022
39.111.0 304,405 5/11/2022
39.110.0 218,960 5/5/2022
39.109.0 8,697 5/5/2022
39.108.0 29,772 5/3/2022
39.107.0 134,161 4/21/2022
39.106.0 340,595 4/20/2022
39.105.0 245,695 4/13/2022
39.104.0 183,685 4/8/2022
39.103.0 198,002 4/1/2022
39.102.0 30,074 3/30/2022
39.101.0 17,960 3/29/2022
39.100.0 67,407 3/25/2022
39.99.0 61,716 3/23/2022
39.98.0 71,356 3/18/2022
39.97.0 198,356 3/11/2022
39.96.0 92,016 3/9/2022
39.95.0 126,865 3/2/2022
39.94.0 7,706 3/2/2022
39.93.0 58,964 2/26/2022
39.92.0 36,481 2/23/2022
39.91.0 481,840 2/16/2022
39.90.0 137,593 2/6/2022
39.89.0 325,929 1/25/2022
39.88.0 93,720 1/20/2022
39.87.0 13,182 1/19/2022
39.86.0 58,645 1/13/2022
39.85.0 32,838 1/12/2022
39.84.0 274,665 12/22/2021
39.83.0 101,593 12/15/2021
39.82.0 65,803 12/9/2021
39.81.0 10,586 12/9/2021
39.80.0 544,018 11/20/2021
39.79.0 20,268 11/17/2021
39.78.1 11,198 11/16/2021
39.78.0 3,503 11/16/2021
39.77.0 45,447 11/11/2021
39.76.0 123,897 11/4/2021
39.75.1 5,748 11/4/2021
39.75.0 143,364 11/1/2021
39.74.0 253,920 10/20/2021
39.73.0 121,470 10/11/2021
39.72.0 7,743 10/11/2021
39.71.0 26,341 10/7/2021
39.70.0 73,907 9/29/2021
39.69.0 66,356 9/24/2021
39.68.0 207,629 9/16/2021
39.67.0 7,026 9/15/2021
39.66.0 128,779 9/2/2021
39.65.0 4,780 9/1/2021
39.64.0 201,002 8/27/2021
39.63.0 242,055 8/11/2021
39.62.0 165,490 7/28/2021
39.61.0 122,404 7/22/2021
39.60.0 19,420 7/21/2021
39.59.0 236,435 7/14/2021
39.58.0 61,667 7/9/2021
39.57.0 95,885 6/30/2021
39.56.1 5,463 6/30/2021
39.56.0 9,100 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 42,679 6/25/2021
39.54.0 69,301 6/16/2021
39.53.0 343,420 6/7/2021
39.52.0 32,110 6/4/2021
39.51.0 62,553 6/4/2021
39.50.0 221,648 5/26/2021
39.49.0 87,921 5/20/2021
39.48.0 170,212 5/7/2021
39.47.0 49,674 5/6/2021
39.46.0 4,103 5/5/2021
39.45.0 140,119 4/16/2021
39.44.0 156,026 4/12/2021
39.43.0 137,558 4/3/2021
39.42.0 152,672 3/31/2021
39.41.0 121,941 3/26/2021
39.40.0 176,416 3/22/2021
39.39.0 218,793 3/1/2021
39.38.0 294,654 2/23/2021
39.37.0 86,104 2/18/2021
39.36.0 14,910 2/17/2021
39.35.0 102,830 2/9/2021
39.34.0 135,879 2/3/2021
39.33.0 237,335 1/21/2021
39.32.0 137,150 1/7/2021
39.31.0 274,415 12/16/2020
39.30.0 67,116 12/11/2020
39.29.0 179,305 12/4/2020
39.28.0 208,226 11/24/2020
39.27.0 53,260 11/20/2020
39.26.0 15,067 11/19/2020
39.25.0 26,427 11/18/2020
39.24.0 9,329 11/18/2020
39.23.0 211,951 11/9/2020
39.22.0 45,232 11/4/2020
39.21.0 76,298 10/29/2020
39.20.0 25,030 10/27/2020
39.19.0 37,722 10/26/2020
39.18.0 15,569 10/23/2020
39.17.0 13,826 10/23/2020
39.16.0 121,265 10/14/2020
39.15.0 20,825 10/13/2020
39.14.0 5,122 10/12/2020
39.13.0 23,142 10/9/2020
39.12.0 25,022 10/9/2020
39.11.0 120,360 10/3/2020
39.10.0 39,572 9/30/2020
39.9.0 17,600 9/30/2020
39.8.0 17,810 9/29/2020
39.7.0 45,586 9/25/2020
39.6.0 27,503 9/23/2020
39.5.0 54,500 9/22/2020
39.4.0 111,247 9/13/2020
39.3.0 93,351 9/8/2020
39.2.0 50,146 9/3/2020
39.1.2 49,480 9/1/2020
37.35.0 443,937 8/27/2020
37.34.0 122,274 8/19/2020
37.33.0 40,844 8/18/2020
37.32.0 8,476 8/17/2020
37.31.0 25,341 8/13/2020
37.30.0 74,334 8/7/2020
37.29.0 34,575 8/6/2020
37.28.0 14,372 8/4/2020
37.27.0 77,346 7/29/2020
37.26.0 135,243 7/25/2020
37.25.0 6,116 7/25/2020
37.24.0 22,146 7/22/2020
37.23.0 9,170 7/21/2020
37.22.0 5,371 7/21/2020
37.21.0 10,594 7/21/2020
37.20.0 14,743 7/18/2020
37.19.0 6,898 7/17/2020
37.18.0 84,453 7/15/2020
37.17.0 41,510 7/13/2020
37.16.0 103,820 7/6/2020
37.15.1 37,157 7/3/2020
37.15.0 32,347 7/1/2020
37.14.0 196,970 6/25/2020
37.13.0 40,365 6/23/2020
37.12.0 35,721 6/22/2020
37.11.0 15,770 6/18/2020
37.10.0 88,460 6/11/2020
37.9.0 10,179 6/11/2020
37.8.0 210,275 6/3/2020
37.7.0 4,350 6/3/2020
37.6.0 56,722 5/29/2020
37.5.0 31,211 5/28/2020
37.4.0 149,975 5/22/2020
37.3.0 81,867 5/21/2020
37.2.0 4,372 5/20/2020
37.1.0 68,395 5/19/2020
37.0.0 68,449 5/18/2020
36.12.2 76,224 5/14/2020
36.12.1 4,092 5/14/2020
36.12.0 4,220 5/13/2020
36.11.0 77,431 5/12/2020
36.10.0 17,683 5/11/2020
36.9.0 27,512 5/8/2020
36.8.1 38,963 5/5/2020
36.8.0 30,115 5/1/2020
36.7.0 17,628 4/29/2020
36.6.0 29,893 4/24/2020
36.5.0 23,100 4/22/2020
36.4.0 4,537 4/22/2020
36.3.0 8,847 4/21/2020
36.2.0 20,930 4/18/2020
36.1.0 17,396 4/17/2020
36.0.0 12,581 4/16/2020
35.17.0 32,835 4/14/2020
35.16.0 20,886 4/13/2020
35.15.0 6,410 4/13/2020
35.14.0 15,773 4/10/2020
35.13.0 5,340 4/9/2020
35.12.1 193,141 4/8/2020
35.12.0 52,493 4/3/2020
35.11.1 222,110 3/31/2020
35.11.0 36,547 3/31/2020
35.10.0 52,862 3/26/2020
35.9.0 41,873 3/25/2020
35.8.0 7,736 3/24/2020
35.7.1 6,258 3/23/2020
35.7.0 36,723 3/20/2020
35.6.0 304,854 3/13/2020
35.5.0 7,151 3/12/2020
35.4.0 5,322 3/12/2020
35.3.0 89,787 3/5/2020
35.2.0 4,519 3/4/2020
35.1.0 7,097 3/4/2020
35.0.0 26,658 3/4/2020
34.26.0 111,602 2/24/2020
34.25.0 21,496 2/21/2020
34.24.0 8,992 2/21/2020
34.23.0 125,185 2/17/2020
34.22.0 36,780 2/13/2020
34.21.0 5,447 2/12/2020
34.20.1 10,366 2/12/2020
34.20.0 84,462 2/6/2020
34.19.0 49,440 2/3/2020
34.18.0 55,826 1/31/2020
34.17.0 58,039 1/25/2020
34.16.1 12,369 1/22/2020
34.16.0 42,734 1/17/2020
34.15.0 281,251 1/15/2020
34.14.0 7,138 1/14/2020
34.13.0 59,972 1/10/2020
34.12.0 24,542 1/6/2020
34.11.0 15,585 1/4/2020
34.10.1 9,049 1/3/2020
34.10.0 30,131 12/31/2019
34.9.0 105,597 12/24/2019
34.8.0 33,599 12/21/2019
34.7.0 10,032 12/19/2019
34.6.0 30,702 12/17/2019
34.5.0 58,883 12/13/2019
34.4.0 7,438 12/12/2019
34.3.0 30,772 12/9/2019
34.2.0 4,138 12/9/2019
34.1.0 102,084 12/4/2019
34.0.0 21,357 12/4/2019
33.9.0 46,852 12/2/2019
33.8.0 35,635 11/26/2019
33.7.0 20,659 11/25/2019
33.6.0 19,372 11/22/2019
33.5.0 8,938 11/21/2019
33.4.0 14,317 11/19/2019
33.3.0 74,942 11/8/2019
33.2.0 9,463 11/7/2019
33.1.0 13,753 11/6/2019
33.0.0 27,099 11/6/2019
32.2.0 33,578 11/4/2019
32.1.3 38,754 10/28/2019
32.1.2 8,224 10/25/2019
32.1.1 3,597 10/24/2019
32.1.0 14,798 10/24/2019
32.0.0 22,307 10/19/2019
31.2.0 5,358 10/18/2019
31.1.0 111,056 10/11/2019
31.0.0 5,397 10/10/2019
30.1.0 47,721 10/10/2019
30.0.1 5,630 10/9/2019
30.0.0 38,235 10/9/2019
29.6.0 54,472 10/3/2019
29.5.0 63,463 9/27/2019
29.4.0 21,853 9/26/2019
29.3.0 10,212 9/26/2019
29.2.1 28,181 9/23/2019
29.2.0 38,902 9/19/2019
29.1.0 163,204 9/13/2019
29.0.1 12,537 9/12/2019
29.0.0 93,053 9/10/2019
28.11.0 49,151 9/9/2019
28.10.0 92,891 9/4/2019
28.9.0 21,429 9/3/2019
28.8.0 310,305 8/30/2019
28.7.0 4,856 8/29/2019
28.6.0 174,622 8/27/2019
28.5.0 57,163 8/23/2019
28.4.0 21,518 8/21/2019
28.3.0 17,281 8/20/2019
28.2.0 160,006 8/16/2019
28.1.0 48,065 8/15/2019
28.0.0 57,818 8/14/2019
27.25.1 10,878 8/14/2019
27.24.0 60,295 8/9/2019
27.23.0 10,002 8/8/2019
27.22.0 4,103 8/8/2019
27.21.0 133,479 8/2/2019
27.20.0 30,080 8/1/2019
27.19.0 33,505 7/31/2019
27.18.0 30,529 7/26/2019
27.17.0 13,267 7/25/2019
27.16.1 117,820 7/23/2019
27.16.0 59,089 7/22/2019
27.15.0 97,666 7/19/2019
27.14.0 35,537 7/18/2019
27.13.0 44,083 7/16/2019
27.12.0 5,665 7/15/2019
27.11.0 28,987 7/11/2019
27.10.0 20,586 7/10/2019
27.9.1 37,323 7/10/2019
27.9.0 37,062 7/5/2019
27.8.1 50,380 7/3/2019
27.8.0 8,785 7/2/2019
27.7.0 4,373 7/2/2019
27.6.0 6,182 7/1/2019
27.5.0 11,162 7/1/2019
27.4.0 23,947 6/26/2019
27.3.2 55,642 6/20/2019
27.3.1 24,294 6/18/2019
27.3.0 9,805 6/17/2019
27.2.0 31,122 6/14/2019
27.1.3 10,740 6/12/2019
27.1.2 11,563 6/11/2019
27.1.1 4,088 6/10/2019
27.1.0 4,658 6/10/2019
27.0.0 14,546 6/7/2019
26.1.0 21,853 6/6/2019
26.0.0 128,042 5/24/2019
25.19.1 20,140 5/22/2019
25.19.0 37,891 5/17/2019
25.18.0 18,560 5/14/2019
25.17.0 17,249 5/10/2019
25.16.1 19,182 5/8/2019
25.16.0 12,923 5/6/2019
25.15.0 52,457 5/4/2019
25.14.0 7,015 5/3/2019
25.13.0 25,651 4/30/2019
25.12.0 25,806 4/25/2019
25.11.0 3,910 4/24/2019
25.10.0 38,018 4/23/2019
25.9.0 18,733 4/18/2019
25.8.0 66,602 4/17/2019
25.7.1 4,508 4/16/2019
25.7.0 10,914 4/15/2019
25.6.0 35,712 4/10/2019
25.5.0 3,799 4/9/2019
25.4.0 14,283 4/5/2019
25.3.0 163,665 3/29/2019
25.2.0 28,632 3/25/2019
25.1.0 15,476 3/22/2019
25.0.0 28,492 3/19/2019
24.6.0 14,739 3/19/2019
24.5.0 41,054 3/14/2019
24.4.1 26,735 3/11/2019
24.3.0 40,018 3/7/2019
24.2.0 4,962 3/6/2019
24.1.0 37,863 2/28/2019
24.0.2 170,080 2/20/2019
24.0.1 4,583 2/20/2019
23.2.0 4,277 2/19/2019
23.1.0 6,953 2/18/2019
23.0.0 16,186 2/14/2019
22.9.0 10,794 2/12/2019
22.8.1 42,829 2/4/2019
22.8.0 88,913 1/25/2019
22.7.0 34,502 1/20/2019
22.6.0 7,203 1/18/2019
22.5.0 4,721 1/17/2019
22.4.0 30,649 1/10/2019
22.3.0 40,659 1/9/2019
22.2.0 4,360 1/9/2019
22.1.0 7,168 1/8/2019
22.0.0 11,521 1/7/2019
21.9.0 30,073 1/3/2019
21.8.1 5,272 1/3/2019
21.8.0 43,042 12/27/2018
21.7.1 14,532 12/21/2018
21.7.0 253,513 11/28/2018
21.6.0 13,469 11/27/2018
21.5.0 35,814 11/26/2018
21.4.1 29,433 11/16/2018
21.4.0 9,801 11/14/2018
21.3.0 4,331 11/14/2018
21.2.0 10,735 11/12/2018
21.1.0 11,842 11/9/2018
21.0.0 8,796 11/9/2018
20.4.1 10,546 11/8/2018
20.4.0 21,574 11/5/2018
20.3.0 10,248 10/31/2018
20.2.0 18,749 10/25/2018
20.1.0 20,442 10/23/2018
20.0.0 6,747 10/22/2018
19.10.0 270,807 10/9/2018
19.9.2 40,314 9/28/2018
19.9.1 10,446 9/27/2018
19.9.0 134,415 9/26/2018
19.8.0 17,128 9/24/2018
19.7.0 98,863 9/20/2018
19.6.0 47,977 9/11/2018
19.5.0 22,075 9/6/2018
19.4.0 6,316 9/6/2018
19.3.0 19,178 9/4/2018
19.2.0 27,222 8/29/2018
19.1.0 9,391 8/28/2018
19.0.1 5,649 8/27/2018
18.0.0 28,253 8/23/2018
17.11.0 27,505 8/23/2018
17.10.0 15,505 8/21/2018
17.9.0 15,148 8/16/2018
17.8.0 321,762 8/3/2018
17.7.0 43,657 7/31/2018
17.6.0 32,464 7/27/2018
17.5.0 8,059 7/26/2018
17.4.0 17,704 7/23/2018
17.3.1 85,479 7/16/2018
17.3.0 17,281 7/13/2018
17.2.0 4,629 7/13/2018
17.1.0 6,265 7/12/2018
17.0.0 5,385 7/11/2018
16.16.1 35,215 7/11/2018
16.16.0 17,050 7/6/2018
16.14.0 31,547 6/29/2018
16.13.0 5,472 6/28/2018
16.12.0 45,135 6/20/2018
16.11.0 4,473 6/20/2018
16.10.0 94,268 6/13/2018
16.9.0 17,043 6/12/2018
16.8.0 5,394 6/12/2018
16.7.0 15,958 6/6/2018
16.6.0 4,808 6/6/2018
16.5.0 7,712 6/6/2018
16.4.0 26,596 6/1/2018
16.3.0 49,309 5/23/2018
16.1.0 114,429 5/10/2018
16.0.0 5,953 5/10/2018
15.8.0 13,462 5/8/2018
15.7.0 11,459 5/3/2018
15.6.2 30,991 4/25/2018
15.6.1 81,084 4/19/2018
15.6.0 36,099 4/18/2018
15.5.0 15,167 4/16/2018
15.3.2 196,150 4/9/2018
15.3.1 14,796 4/6/2018
15.3.0 42,386 4/4/2018
15.2.1 58,227 3/27/2018
15.2.0 5,268 3/26/2018
15.1.0 9,024 3/23/2018
15.0.0 27,108 3/21/2018
14.0.0 14,649 3/16/2018
13.5.0 30,577 3/15/2018
13.4.0 9,191 3/13/2018
13.3.1 27,831 3/5/2018
13.3.0 18,196 3/1/2018
13.2.0 9,292 2/27/2018
13.1.0 638,978 2/22/2018
13.0.1 11,400 2/19/2018
13.0.0 32,298 2/13/2018
12.1.0 246,291 1/19/2018
12.0.0 12,210 1/16/2018
11.10.0 69,587 12/26/2017
11.9.0 74,368 11/29/2017
11.8.2 17,289 11/23/2017
11.8.1 14,585 11/23/2017
11.7.1 86,305 10/31/2017
11.7.0 4,654 10/31/2017
11.6.1 22,444 10/24/2017
11.6.0 39,195 10/19/2017
11.5.0 42,081 10/17/2017
11.4.0 7,584 10/13/2017
11.3.0 6,128 10/11/2017
11.2.0 9,344 10/10/2017
11.1.0 4,472 10/10/2017
11.0.0 17,578 10/10/2017
10.4.0 250,671 8/8/2017
10.3.0 59,323 7/14/2017
10.2.0 67,098 6/28/2017
10.1.0 5,528 6/27/2017
10.0.0 57,312 6/6/2017
9.1.0 21,366 6/1/2017
9.0.0 52,529 5/13/2017
8.4.0 21,880 5/5/2017
8.3.0 7,721 5/2/2017
8.2.0 29,580 4/27/2017
8.1.1 15,114 4/19/2017
8.1.0 4,813 4/19/2017
8.0.0 12,088 4/13/2017
7.63.0 3,739 11/17/2020 7.63.0 is deprecated.
7.8.0 50,115 4/6/2017
7.7.0 10,207 4/1/2017
7.6.1 11,749 3/28/2017
7.6.0 22,968 3/17/2017
7.5.0 5,330 3/16/2017
7.4.0 13,723 3/7/2017
7.3.0 32,363 3/3/2017
7.2.0 17,310 2/28/2017
7.1.2 11,358 2/24/2017
7.1.1 6,918 2/23/2017
7.1.0 11,059 2/21/2017
7.0.5 66,455 2/21/2017
7.0.4 46,438 2/11/2017
7.0.3 45,476 1/19/2017
7.0.2 36,290 1/10/2017
7.0.1 21,028 12/25/2016
7.0.0 33,108 12/19/2016
6.13.0 14,922 12/17/2016
6.12.1 5,113 12/16/2016
6.12.0 82,653 11/29/2016
6.11.1 19,850 11/21/2016
6.11.0 10,995 11/8/2016
6.10.0 13,581 10/29/2016
6.9.0 71,687 10/18/2016
6.8.0 31,288 10/4/2016
6.7.0 16,610 9/26/2016
6.6.0 18,932 9/11/2016
6.5.0 29,035 9/1/2016
6.4.0 68,156 8/6/2016
6.3.6 23,098 7/29/2016
6.3.5 18,432 7/6/2016
6.3.4 35,165 6/25/2016
6.3.3 80,774 5/14/2016
6.3.2 41,078 4/25/2016
6.3.1 28,579 4/17/2016
6.3.0 4,720 4/17/2016
6.2.2 13,507 4/12/2016
6.2.1 7,404 4/4/2016
6.2.0 4,741 4/3/2016
6.1.1 4,626 4/1/2016
6.1.0 36,715 3/25/2016
6.0.1 38,615 3/15/2016
6.0.0 14,667 3/10/2016
5.3.0 54,255 2/14/2016
5.2.0 18,861 1/25/2016
5.1.3 11,909 1/8/2016
5.1.2 60,122 12/2/2015
5.1.1 9,004 11/29/2015
5.1.0 7,277 11/28/2015
5.0.1 49,509 11/19/2015
5.0.0 12,846 10/23/2015
4.2.1 18,426 9/13/2015
4.2.0 57,637 7/26/2015
4.1.0 11,283 7/11/2015
4.0.2 9,523 7/3/2015
4.0.1 15,014 7/2/2015
4.0.0 4,761 7/2/2015
3.0.2 11,485 6/17/2015
3.0.1 4,902 6/17/2015
3.0.0 7,254 5/28/2015
2.9.0 90,448 4/12/2015
2.8.0 30,434 3/14/2015
2.7.2 15,765 2/17/2015
2.7.1 5,373 2/17/2015
2.7.0 5,193 2/16/2015
2.6.0 5,588 2/14/2015
2.5.1 11,601 2/7/2015
2.5.0 5,444 1/31/2015
2.4.1 4,853 1/31/2015
2.4.0 5,312 1/25/2015
2.3.5 7,773 1/21/2015
2.3.4 23,865 12/4/2014
2.3.3 26,488 11/3/2014
2.3.2 5,541 10/26/2014
2.3.1 4,954 10/26/2014
2.3.0 12,449 9/4/2014
2.2.6 46,882 7/15/2014
2.2.5 9,481 6/22/2014
2.2.4 5,535 6/17/2014
2.2.3 5,417 6/13/2014
2.2.2 7,836 5/29/2014
2.2.1 4,980 5/28/2014
2.2.0 4,704 5/27/2014
2.1.2 5,452 5/14/2014
2.1.1 5,347 5/13/2014
2.1.0 7,327 4/20/2014
2.0.1 5,697 4/13/2014
2.0.0 5,722 4/5/2014
1.7.7 7,046 3/17/2014
1.7.6 19,777 1/18/2014
1.7.5 5,072 1/12/2014
1.7.4 6,503 12/25/2013
1.7.3 4,666 12/25/2013
1.7.2 4,691 12/24/2013
1.7.1 5,644 12/1/2013
1.7.0 7,427 11/3/2013
1.6.3 6,412 10/19/2013
1.6.2 8,867 8/30/2013
1.6.1 7,894 8/15/2013
1.6.0 4,626 8/10/2013
1.5.7 7,081 7/18/2013
1.5.6 5,351 6/30/2013
1.5.5 19,171 5/27/2013
1.5.4 5,523 5/7/2013
1.5.3 6,235 3/30/2013
1.5.2 4,781 3/26/2013
1.5.1 4,848 3/13/2013
1.5.0 4,852 3/4/2013
1.4.3 4,523 3/4/2013
1.4.2 4,793 3/4/2013
1.4.1 4,842 2/24/2013
1.4.0 4,864 2/12/2013
1.3.1 4,657 2/11/2013
1.3.0 4,629 2/11/2013
1.2.1 4,753 1/24/2013
1.2.0 5,465 12/2/2012
1.1.18 14,182 11/4/2012
1.1.17 5,502 9/7/2012
1.1.16 4,774 9/5/2012
1.1.15 4,575 8/27/2012
1.1.14 5,002 8/4/2012
1.1.13 11,566 6/10/2012
1.1.12 5,022 4/21/2012
1.1.11 5,023 4/8/2012
1.1.10 14,278 3/25/2012
1.1.9 4,655 3/5/2012
1.1.8 4,706 2/26/2012
1.1.7 4,654 2/26/2012
1.1.6 4,862 2/26/2012
0.5.2 23,216 11/28/2015