Huobi.Net 5.2.3

dotnet add package Huobi.Net --version 5.2.3
NuGet\Install-Package Huobi.Net -Version 5.2.3
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="Huobi.Net" Version="5.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Huobi.Net --version 5.2.3
#r "nuget: Huobi.Net, 5.2.3"
#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.
// Install Huobi.Net as a Cake Addin
#addin nuget:?package=Huobi.Net&version=5.2.3

// Install Huobi.Net as a Cake Tool
#tool nuget:?package=Huobi.Net&version=5.2.3

.Huobi.Net Huobi.Net

.NET License

Huobi.Net is a strongly typed client library for accessing the Huobi REST and Websocket API. All data is mapped to readable models and enum values. Additional features include an implementation for maintaining a client side order book, easy integration with other exchange client libraries and more.

Supported Frameworks

The library is targeting both .NET Standard 2.0 and .NET Standard 2.1 for optimal compatibility

.NET implementation Version Support
.NET Core 2.0 and higher
.NET Framework 4.6.1 and higher
Mono 5.4 and higher
Xamarin.iOS 10.14 and higher
Xamarin.Android 8.0 and higher
UWP 10.0.16299 and higher
Unity 2018.1 and higher

Get the library

Nuget version Nuget downloads

dotnet add package Huobi.Net

How to use

REST Endpoints

// Get the ETH/USDT ticker via rest request
var restClient = new HuobiRestClient();
var tickerResult = await restClient.SpotApi.ExchangeData.GetTickerAsync("ETHUSDT");
var lastPrice = tickerResult.Data.ClosePrice;

Websocket streams

// Subscribe to ETH/USDT ticker updates via the websocket API
var socketClient = new HuobiSocketClient();
var tickerSubscriptionResult = socketClient.SpotApi.SubscribeToTickerUpdatesAsync("ethusdt", (update) =>
{
	var lastPrice = update.Data.ClosePrice;
});

For information on the clients, dependency injection, response processing and more see the Huobi.Net documentation, CryptoExchange.Net documentation, or have a look at the examples here or here.

CryptoExchange.Net

Huobi.Net is based on the CryptoExchange.Net base library. Other exchange API implementations based on the CryptoExchange.Net base library are available and follow the same logic.

CryptoExchange.Net also allows for easy access to different exchange API's.

Exchange Repository Nuget
Binance JKorf/Binance.Net Nuget version
BingX JKorf/BingX.Net Nuget version
Bitfinex JKorf/Bitfinex.Net Nuget version
Bitget JKorf/Bitget.Net Nuget version
Bybit JKorf/Bybit.Net Nuget version
CoinEx JKorf/CoinEx.Net Nuget version
CoinGecko JKorf/CoinGecko.Net Nuget version
Kraken JKorf/Kraken.Net Nuget version
Kucoin JKorf/Kucoin.Net Nuget version
Mexc JKorf/Mexc.Net Nuget version
OKX JKorf/OKX.Net Nuget version

Discord

Nuget version
A Discord server is available here. Feel free to join for discussion and/or questions around the CryptoExchange.Net and implementation libraries.

Supported functionality

Spot Api

API Supported Location
Reference Data restClient.SpotApi.ExchangeData
Market Data restClient.SpotApi.ExchangeData
Account restClient.SpotApi.Account
Wallet restClient.SpotApi.Account
Sub user management Partial restClient.SpotApi.Account
Trading restClient.SpotApi.Trading
Conditional Order restClient.SpotApi.Trading
Margin Loan restClient.SpotApi.Account
Margin Loan restClient.SpotApi.Account
Websocket Market Data socketClient.SpotApi
Websocket Account and Order socketClient.SpotApi

Coin-M Futures Api

API Supported Location
* X

Coin-M Swap Api

API Supported Location
* X

USDT-M Api

API Supported Location
Reference Data restClient.UsdtMarginSwapApi.ExchangeData
Swap Market Data Interface restClient.UsdtMarginSwapApi.ExchangeData
Swap Account Interface restClient.UsdtMarginSwapApi.Account
Swap Trade Interface restClient.UsdtMarginSwapApi.Trading
Swap Strategy Order Interface X
Swap Transferring Interface X restClient.SpotApi.Account
Websocket Market Interface socketClient.UsdtMarginSwapApi
Websocket Index and Basis Interface socketClient.UsdtMarginSwapApi
Orders And Account WebSocket X
WebSocket System updates X

Support the project

I develop and maintain this package on my own for free in my spare time, any support is greatly appreciated.

Make a one time donation in a crypto currency of your choice. If you prefer to donate a currency not listed here please contact me.

Btc: bc1q277a5n54s2l2mzlu778ef7lpkwhjhyvghuv8qf
Eth: 0xcb1b63aCF9fef2755eBf4a0506250074496Ad5b7
USDT (TRX) TKigKeJPXZYyMVDgMyXxMf17MWYia92Rjd

Alternatively, sponsor me on Github using Github Sponsors.

Release notes

  • Version 5.2.3 - 12 Apr 2024

    • Fix for futures broker id reference
  • Version 5.2.2 - 03 Apr 2024

    • Updated string comparision for improved performance
    • Fix for error parsing rest client
    • Removed pre-send symbol validation
  • Version 5.2.1 - 24 Mar 2024

  • Version 5.2.0 - 16 Mar 2024

  • Version 5.1.0 - 25 Feb 2024

    • Updated CryptoExchange.Net and implemented reworked websocket message handling. For release notes for the CryptoExchange.Net base library see: https://github.com/JKorf/CryptoExchange.Net?tab=readme-ov-file#release-notes
    • Fixed issue in DI registration causing http client to not be correctly injected
    • Removed redundant HuobiRestClient constructor overload
    • Updated some namespaces
  • Version 5.0.5 - 03 Dec 2023

    • Updated CryptoExchange.Net
  • Version 5.0.4 - 19 Nov 2023

    • Added support for sending broker id
  • Version 5.0.3 - 24 Oct 2023

    • Updated CryptoExchange.Net
  • Version 5.0.2 - 09 Oct 2023

    • Updated CryptoExchange.Net version
    • Added ISpotClient to DI injection
  • Version 5.0.1 - 25 Aug 2023

    • Updated CryptoExchange.Net
  • Version 5.0.0 - 25 Jun 2023

    • Updated CryptoExchange.Net to version 6.0.0
    • Renamed HuobiClient to HuobiRestClient
    • Renamed **Streams to **Api on the HuobiSocketClient
    • Updated endpoints to consistently use a base url without any path as basis to make switching environments/base urls clearer
    • Added IHuobiOrderBookFactory and implementation for creating order books
    • Updated dependency injection register method (AddHuobi)
  • Version 4.2.4 - 18 Mar 2023

    • Updated CryptoExchange.Net
  • Version 4.2.3 - 14 Feb 2023

    • Updated CryptoExchange.Net
  • Version 4.2.2 - 05 Feb 2023

    • Fixed leverageRate parameter for margin swap orders
  • Version 4.2.1 - 29 Dec 2022

    • Fixed GetCurrentFeeRatesAsync deserialization
  • Version 4.2.0 - 17 Nov 2022

    • Added Usdt Margin Swap API
    • Updated CryptoExchange.Net
    • Added user fee rate endpoint
  • Version 4.1.8 - 31 Jul 2022

    • Added missing account types
    • Fixed culture issue authenticating requests
  • Version 4.1.7 - 18 Jul 2022

    • Updated CryptoExchange.Net
  • Version 4.1.6 - 16 Jul 2022

    • Updated CryptoExchange.Net
  • Version 4.1.5 - 10 Jul 2022

    • Updated CryptoExchange.Net
  • Version 4.1.4 - 12 Jun 2022

    • Updated CryptoExchange.Net
  • Version 4.1.3 - 24 May 2022

    • Updated CryptoExchange.Net
  • Version 4.1.2 - 22 May 2022

    • Updated CryptoExchange.Net
  • Version 4.1.1 - 12 May 2022

    • Fixed CryptoExchange.Net reference
  • Version 4.1.0 - 12 May 2022

    • Added algo order endpoints
    • Added margin endpoints
    • Updated Url for partial order book stream
    • Removed symbol restriction on GetOpenOrdersAsync
  • Version 4.0.10 - 08 May 2022

    • Updated CryptoExchange.Net
  • Version 4.0.9 - 01 May 2022

    • Updated CryptoExchange.Net which fixed an timing related issue in the websocket reconnection logic
    • Added seconds representation to KlineInterval enum
  • Version 4.0.8 - 14 Apr 2022

    • Updated CryptoExchange.Net
  • Version 4.0.7 - 14 Mar 2022

    • Added GetUserIdAsync endpoint
    • Added GetSubAccountUsersAsync endpoint
    • Added GetSubUserAccountsAsync endpoint
  • Version 4.0.6 - 10 Mar 2022

    • Updated CryptoExchange.Net
    • Fixed CancellationToken not being passed to Common GetRecentTradesAsync
  • Version 4.0.5 - 08 Mar 2022

    • Updated CryptoExchange.Net
  • Version 4.0.4 - 01 Mar 2022

    • Updated CryptoExchange.Net improving the websocket reconnection robustness
  • Version 4.0.3 - 27 Feb 2022

    • Updated CryptoExchange.Net to fix timestamping issue when request is ratelimiter
  • Version 4.0.2 - 25 Feb 2022

    • Fixed missing Side property on GetUserTradeAsync response model
  • Version 4.0.1 - 24 Feb 2022

    • Updated CryptoExchange.Net
  • Version 4.0.0 - 18 Feb 2022

    • Added Github.io page for documentation: https://jkorf.github.io/Huobi.Net/

    • Added unit tests for parsing the returned JSON for each endpoint and subscription

    • Added AddHuobi extension method on IServiceCollection for easy dependency injection

    • Added URL reference to API endpoint documentation for each endpoint

    • Added default rate limiter

    • Refactored OrderType to be split in Type and Side to be consistent across exchange implementations

    • Refactored client structure to be consistent across exchange implementations

    • Renamed various properties to be consistent across exchange implementations

    • Cleaned up project structure

    • Fixed various models

    • Updated CryptoExchange.Net, see https://github.com/JKorf/CryptoExchange.Net#release-notes

    • See https://jkorf.github.io/Huobi.Net/MigrationGuide.html for additional notes for updating from V3 to V4

  • Version 3.2.4 - 03 Nov 2021

    • Fix for invalid check in SubscribeToOrderDetailsUpdatesAsync
  • Version 3.2.3 - 08 Oct 2021

    • Updated CryptoExchange.Net to fix some socket issues
  • Version 3.2.2 - 06 Oct 2021

    • Updated CryptoExchange.Net, fixing socket issue when calling from .Net Framework
    • Fixed issue in HuobiSymbolOrderBook syncing
  • Version 3.2.1 - 05 Oct 2021

    • Fixed incorrect sanity check in SubscribeToOrderUpdatesAsync
  • Version 3.2.0 - 29 Sep 2021

    • Added missing AccountTypes
    • Renamed Amount to Quantity in parameters and properties
    • Implemented Market-By-Price streams
    • Updated CryptoExchange.Net
  • Version 3.1.0 - 20 Sep 2021

    • Added missing SetApiCredentials method
    • Updated CryptoExchange.Net
  • Version 3.0.5 - 15 Sep 2021

    • Updated CryptoExchange.Net
  • Version 3.0.4 - 02 Sep 2021

    • Fix for disposing order book closing socket even if there are other connections
  • Version 3.0.3 - 26 Aug 2021

    • Updated CryptoExchange.Net
  • Version 3.0.2 - 24 Aug 2021

    • Updated CryptoExchange.Net, improving websocket and SymbolOrderBook performance
    • Fix for 15minute klines via IExchangeClient
  • Version 3.0.1 - 13 Aug 2021

    • Fix for OperationCancelledException being thrown when closing a socket from a .net framework project
  • Version 3.0.0 - 12 Aug 2021

  • Version 3.0.0-beta3 - 09 Aug 2021

    • Renamed GetOrderInfoAsync to GetOrderAsync
    • Renamed GetOrderInfoByClientOrderIdAsync to GetOrderByClientOrderIdAsync
    • Renamed GetSymbolTradesAsync to GetUserTradeHistoryAsync
    • Renamed PlaceWithdrawAsync to WithdrawAsync
    • Renamed GetTradesAsync to GetTradeHistoryAsync
  • Version 3.0.0-beta2 - 26 Jul 2021

    • Updated CryptoExchange.Net
  • Version 3.0.0-beta1 - 09 Jul 2021

    • Added Async postfix for async methods
    • Updated CryptoExchange.Net
  • Version 2.5.5 - 28 apr 2021

    • Updated CryptoExchange.Net
  • Version 2.5.4 - 19 apr 2021

    • Updated CryptoExchange.Net
  • Version 2.5.3 - 08 apr 2021

    • Added missing withdraw methods to client interface
  • Version 2.5.2 - 30 mrt 2021

    • Updated CryptoExchange.Net
    • Added missing methods in client interface
  • Version 2.5.1 - 01 mrt 2021

    • Added Nuget SymbolPackage
  • Version 2.5.0 - 01 mrt 2021

    • Added config for deterministic build
    • Updated CryptoExchange.Net
  • Version 2.4.0 - 22 jan 2021

    • Added GetWithdrawDeposit endpoint
    • Fixed ClientOrderId parsing
    • Updated for ICommonKline
  • Version 2.3.3 - 15 jan 2021

    • Updated PlaceOrder paramters
  • Version 2.3.2 - 14 jan 2021

    • Updated CryptoExchange.Net
  • Version 2.3.1 - 05 jan 2021

    • Fixed missing symbol property on socket ticker
  • Version 2.3.0 - 05 jan 2021

    • Added GetDepositAddress endpoint
    • Added Withdraw endpoint
    • Fix ClientOrderId deserialization on order
    • Added NextTime property for pagination on GetHistoryOrders
    • Updated HuobiOrderTrade model
    • Fixed ticker models
  • Version 2.2.0 - 21 dec 2020

    • Update CryptoExchange.Net
    • Updated to latest IExchangeClient
  • Version 2.1.1 - 11 dec 2020

    • Updated CryptoExchange.Net
    • Implemented IExchangeClient
  • Version 2.1.0 - 25 nov 2020

    • Updated account socket subscriptions to V2 API
  • Version 2.0.15 - 19 nov 2020

    • Added some V2 asset endpoints
    • Updated CryptoExchange.Net
  • Version 2.0.14 - 08 Oct 2020

    • Added symbol properties
    • Updated CryptoExchange.Net
  • Version 2.0.13 - 28 Aug 2020

    • Updated CryptoExchange.Net
  • Version 2.0.12 - 12 Aug 2020

    • Updated CryptoExchange.Net
  • Version 2.0.11 - 03 Aug 2020

    • Added best offer stream
  • Version 2.0.10 - 20 Jul 2020

    • Fixed transactionType mapping
  • Version 2.0.10 - 20 Jul 2020

    • Fixed TransactionType mapping
  • Version 2.0.9 - 07 Jul 2020

    • Fixed error parsing
    • Updated ticker model
  • Version 2.0.8 - 21 Jun 2020

    • Updated CryptoExchange
  • Version 2.0.7 - 16 Jun 2020

    • Updated CryptoExchange.Net
  • Version 2.0.6 - 07 Jun 2020

    • Updated CryptoExchange.Net to fix order book desync
  • Version 2.0.5 - 03 Mar 2020

    • Added clientOrderId to orders, added clientOrderId endpoints
  • Version 2.0.4 - 27 Jan 2020

    • Updated CryptoExchange.Net
  • Version 2.0.3 - 01 Nov 2019

    • Fixed websocket client authentication
  • Version 2.0.1 - 23 Oct 2019

    • Fixed validation length symbols again
  • Version 2.0.1 - 23 Oct 2019

    • Fixed validation length symbols
  • Version 2.0.0 - 23 Oct 2019

    • See CryptoExchange.Net 3.0 release notes
    • Added input validation
    • Added CancellationToken support to all requests
    • Now using IEnumerable<> for collections
    • Renamed Market → Symbol
    • Renamed MarketDepth → OrderBook
    • Renamed QueryXXX → GetXXX
  • Version 1.1.9 - 11 Sep 2019

    • Updated CryptoExchange.Net
  • Version 1.1.8 - 07 Aug 2019

    • Updated CryptoExchange.Net
  • Version 1.1.7 - 05 Aug 2019

    • added code docs xml
  • Version 1.1.6 - 01 Aug 2019

    • Added HistoryOrders endpoint, made symbol parameter optional for order retrieving methods
  • Version 1.1.5 - 09 jul 2019

    • Updated HuobiSymbolOrderBook
  • Version 1.1.4 - 27 jun 2019

    • Added Loan and Interest to HuobiBalanceTypes enum, fixing deserialization issue
  • Version 1.1.3 - 24 jun 2019

    • Extended HuobiSymbol object
  • Version 1.1.2 - 17 may 2019

    • Fix for deserializing stop-orders created on the website
  • Version 1.1.1 - 17 may 2019

    • Added filter direction parameter to order/trade get methods
    • Added limit parameter to book depth
    • Added merge step parameter to order book implementation
  • Version 1.1.0 - 14 may 2019

    • Added 4 hour kline to enum
    • Added option to sign public requests to fix rate limiting issues
    • Added an order book implementation for easily keeping an updated order book
    • Added additional constructor to ApiCredentials to be able to read from file
  • Version 1.0.4 - 01 may 2019

    • Updated to latest CryptoExchange.Net
      • Adds response header to REST call result
      • Added rate limiter per API key
      • Unified socket client workings
    • Fixed authentication for russian API
  • Version 1.0.3 - 25 mar 2019

    • Added missing ConfigureAwait(false)
    • Made decimals nullable for new markets in market data
  • Version 1.0.2 - 18 mar 2019

    • Fixed amount parameter in PlaceOrder when precision = 0
  • Version 1.0.1 - 07 mar 2019

    • Updated CryptoExchange.Net
  • Version 1.0.0 - 27 feb 2019

    • Sub account support added
    • Fixed account type json mapping
    • Update CryptoExchange.Net
  • Version 0.0.5 - 15 feb 2019

    • Fixed sync issue while placing order concurrently
  • Version 0.0.4 - 12 feb 2019

    • Fixed order json mapping
  • Version 0.0.3 - 01 feb 2019

    • Updated CryptoExchange.Net
  • Version 0.0.2 - 17 dec 2018

    • Fix for reconnecting sometimes throwing an error
    • Fix for order update fields
  • Version 0.0.1 - 07 dec 2018

    • Initial release
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Huobi.Net:

Package Downloads
exchange-client-1

Exchange client gather all exchanges via jkorf and it uses common client sources

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Huobi.Net:

Repository Stars
JKorf/CryptoExchange.Net
Base for exchanges
Version Downloads Last updated
5.2.3 78 4/12/2024
5.2.2 76 4/3/2024
5.2.1 207 3/24/2024
5.2.0 195 3/16/2024
5.1.0 645 2/25/2024
5.1.0-beta2 193 2/18/2024
5.1.0-beta1 230 2/6/2024
5.0.5 2,645 12/3/2023
5.0.4 423 11/19/2023
5.0.3 1,521 10/24/2023
5.0.2 771 10/9/2023
5.0.1 4,521 8/25/2023
5.0.0 2,555 6/25/2023
4.2.4 3,889 3/18/2023
4.2.3 897 2/14/2023
4.2.2 467 2/5/2023
4.2.1 980 12/29/2022
4.2.0 1,133 11/17/2022
4.1.8 2,439 7/31/2022
4.1.7 823 7/18/2022
4.1.6 662 7/16/2022
4.1.5 781 7/10/2022
4.1.4 3,180 6/12/2022
4.1.3 812 5/24/2022
4.1.2 816 5/22/2022
4.1.1 739 5/12/2022
4.1.0 580 5/12/2022
4.0.10 698 5/8/2022
4.0.9 666 5/1/2022
4.0.8 1,328 4/14/2022
4.0.7 901 3/14/2022
4.0.6 661 3/10/2022
4.0.5 648 3/8/2022
4.0.4 2,056 3/1/2022
4.0.3 607 2/27/2022
4.0.2 589 2/25/2022
4.0.1 646 2/24/2022
4.0.0 646 2/18/2022
4.0.0-beta4 354 2/5/2022
4.0.0-beta3 348 1/31/2022
4.0.0-beta2 323 1/24/2022
4.0.0-beta1 392 1/15/2022
4.0.0-alpha7 329 1/7/2022
4.0.0-alpha6 357 1/3/2022
4.0.0-alpha5 336 1/1/2022
4.0.0-alpha4 339 12/27/2021
4.0.0-alpha3 340 12/22/2021
4.0.0-alpha2 321 12/21/2021
4.0.0-alpha1 347 12/7/2021
3.2.4 2,183 11/3/2021
3.2.3 2,231 10/8/2021
3.2.2 532 10/6/2021
3.2.1 455 10/5/2021
3.2.0 518 9/29/2021
3.1.0 709 9/20/2021
3.0.5 541 9/15/2021
3.0.4 622 9/2/2021
3.0.3 520 8/26/2021
3.0.2 676 8/24/2021
3.0.1 693 8/13/2021
3.0.0 514 8/12/2021
3.0.0-beta3 379 8/9/2021
3.0.0-beta2 364 7/26/2021
3.0.0-beta1 410 7/9/2021
2.6.0-beta4 388 6/7/2021
2.6.0-beta3 389 5/26/2021
2.6.0-beta2 412 5/6/2021
2.6.0-beta1 378 4/30/2021
2.5.5 2,286 4/28/2021
2.5.4 638 4/19/2021
2.5.3 634 4/8/2021
2.5.2 716 3/30/2021
2.5.1 1,122 3/1/2021
2.5.0 720 3/1/2021
2.4.0 726 1/22/2021
2.3.3 597 1/15/2021
2.3.2 584 1/14/2021
2.3.1 609 1/5/2021
2.3.0 561 1/5/2021
2.2.0 627 12/21/2020
2.1.1 766 12/11/2020
2.1.0 655 11/25/2020
2.0.15 639 11/19/2020
2.0.14 779 10/8/2020
2.0.13 1,219 8/28/2020
2.0.12 710 8/12/2020
2.0.11 687 8/3/2020
2.0.10 682 7/20/2020
2.0.9 824 7/7/2020
2.0.8 761 6/21/2020
2.0.7 681 6/16/2020
2.0.6 780 6/7/2020
2.0.5 6,796 3/3/2020
2.0.4 1,112 1/27/2020
2.0.3 1,421 11/1/2019
2.0.2 786 10/23/2019
2.0.1 731 10/23/2019
2.0.0 671 10/23/2019
1.1.9 1,767 9/11/2019
1.1.8 993 8/7/2019
1.1.7 733 8/5/2019
1.1.6 814 8/1/2019
1.1.5 822 7/9/2019
1.1.4 820 6/27/2019
1.1.3 820 6/24/2019
1.1.2 1,199 5/17/2019
1.1.1 737 5/17/2019
1.1.0 790 5/14/2019
1.0.4 841 5/1/2019
1.0.3 922 3/25/2019
1.0.2 745 3/18/2019
1.0.1 806 3/7/2019
1.0.0 832 2/27/2019
0.0.5 906 2/15/2019
0.0.4 815 2/12/2019
0.0.3 803 2/1/2019
0.0.2 912 12/17/2018
0.0.1 1,151 12/7/2018