Radzen.Blazor 4.3.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Radzen.Blazor --version 4.3.4
NuGet\Install-Package Radzen.Blazor -Version 4.3.4
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="Radzen.Blazor" Version="4.3.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Radzen.Blazor --version 4.3.4
#r "nuget: Radzen.Blazor, 4.3.4"
#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 Radzen.Blazor as a Cake Addin
#addin nuget:?package=Radzen.Blazor&version=4.3.4

// Install Radzen.Blazor as a Cake Tool
#tool nuget:?package=Radzen.Blazor&version=4.3.4

Radzen Blazor is a set of 70+ free native Blazor UI controls packed with DataGrid, Scheduler, Charts and robust theming including Material design and Fluent UI.

Radzen Blazor Components

Why choose Radzen Blazor Components?

✨ Free

Radzen Blazor Components are open source and free for commercial use. You can install them from nuget or build your own copy from source.

Paid support is available as part of the Radzen Professional subscription.

💻 Native

The components are implemented in C# and take full advantage of the Blazor framework. They do not depend on or wrap existing JavaScript frameworks or libraries.

Blazor Server and Blazor WebAssembly are fully supported.

🌱 Growing

We add new components and features on a regular basis.

Short development cycle. We release as soon as new stuff is available. No more quarterly releases.

Support exceeding your expectations

💬 Community Support

Everybody is welcome to visit the Radzen Community forum. Join the growing community and participate in the discussions!

🎯 Dedicated Support

The Radzen team monitors the forum threads, but does not guarantee a response to every question. For guaranteed responses you may consider the dedicated support option.

Dedicated support for the Radzen Blazor Components is available as part of the Radzen Professional subscription.

Our flagship product Radzen Studio provides tons of productivity features for Blazor developers:

  • The first in the industry WYSIWYG Blazor design time canvas
  • Scaffolding a complete CRUD applications from a database
  • Built-in security - authentication and authorization
  • Visual Studio Code and Professional support
  • Deployment to IIS and Azure
  • Dedicated support with 24 hour guaranteed response time

Get started with Radzen Blazor Components

1. Install

Radzen Blazor Components are distributed as a Radzen.Blazor nuget package. You can add them to your project in one of the following ways

  • Install the package from command line by running dotnet add package Radzen.Blazor
  • Add the project from the Visual Nuget Package Manager
  • Manually edit the .csproj file and add a project reference

2. Import the namespace

Open the _Imports.razor file of your Blazor application and add this line @using Radzen.Blazor.

3. Include a theme

Radzen Blazor components come with five free themes: Material, Standard, Default, Dark, Software and Humanistic.

To use a theme

  1. Pick a theme. The online demos allow you to preview the available options via the theme dropdown located in the header. The Material theme is currently selected by default.
  2. Include the theme CSS file in your Blazor application. Open Pages\_Layout.cshtml (Blazor Server .NET 6+), Pages\_Host.cshtml (Blazor Server before .NET 6) or wwwroot/index.html (Blazor WebAssembly) and include the CSS file of a theme CSS file by adding this snippet
    <link rel="stylesheet" href="_content/Radzen.Blazor/css/material-base.css">
    

To include a different theme (i.e. Standard) just change the name of the CSS file:

<link rel="stylesheet" href="_content/Radzen.Blazor/css/standard-base.css">

4. Include Radzen.Blazor.js

Open Pages\_Layout.cshtml (Blazor Server .NET 6+), Pages\_Host.cshtml (Blazor Server before .NET 6) or wwwroot/index.html (Blazor WebAssembly) and include this snippet:

<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>

5. Use a component

Use any Radzen Blazor component by typing its tag name in a Blazor page e.g.

<RadzenButton Text="Hi"></RadzenButton>
Data-binding a property
<RadzenButton Text=@text />
<RadzenTextBox @bind-Value=@text />
@code {
  string text = "Hi";
}
Handing events
<RadzenButton Click="@ButtonClicked" Text="Hi"></RadzenButton>
@code {
  void ButtonClicked()
  {

  }
}
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 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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (45)

Showing the top 5 NuGet packages that depend on Radzen.Blazor:

Package Downloads
FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

Rystem.RepositoryFramework.Web.Components

Rystem.RepositoryFramework allows you to use correctly concepts like repository pattern, CQRS and DDD. You have interfaces for your domains, auto-generated api, auto-generated HttpClient to simplify connection "api to front-end", a functionality for auto-population in memory of your models, a functionality to simulate exceptions and waiting time from external sources to improve your implementation/business test and load test.

Service.Extensions.Blazor.Components The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extensions to provide consistent configurations and patterns for your service.

FenixAlliance.ABS.SDK

Application Component for the Alliance Business Suite.

Service.Extensions.Blazor.Components.Dynamic The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extensions to provide consistent configurations and patterns for your service.

GitHub repositories (9)

Showing the top 5 popular GitHub repositories that depend on Radzen.Blazor:

Repository Stars
radzenhq/radzen-blazor
Radzen Blazor is a set of 70+ free native Blazor UI components packed with DataGrid, Scheduler, Charts and robust theming including Material design and FluentUI.
openbullet/OpenBullet2
OpenBullet reinvented
Webreaper/Damselfly
Damselfly is a server-based Photograph Management app. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names. Damselfly includes support for object/face detection.
simpleidserver/SimpleIdServer
OpenID, OAuth 2.0, SCIM2.0, UMA2.0, FAPI, CIBA & OPENBANKING Framework for ASP.NET Core
CuriousDrive/BlazingChat
BlazingChat is a Blazor WebAssembly app developed by CuriousDrive for the community. This is a sample application for developers who are just getting started with Blazor.
Version Downloads Last updated
4.29.7 928 4/15/2024
4.29.6 5,388 4/10/2024
4.29.5 1,568 4/9/2024
4.29.4 2,152 4/8/2024
4.29.3 697 4/8/2024
4.29.2 5,219 4/4/2024
4.29.1 7,638 3/29/2024
4.29.0 515 3/29/2024
4.28.10 2,265 3/28/2024
4.28.9 2,853 3/27/2024
4.28.8 3,881 3/26/2024
4.28.7 309 3/26/2024
4.28.6 2,864 3/25/2024
4.28.5 3,419 3/22/2024
4.28.4 4,015 3/21/2024
4.28.3 5,696 3/20/2024
4.28.2 3,117 3/19/2024
4.28.1 2,754 3/18/2024
4.28.0 1,014 3/18/2024
4.27.1 8,678 3/14/2024
4.27.0 1,186 3/14/2024
4.26.1 7,386 3/12/2024
4.26.0 6,411 3/11/2024
4.25.12 10,556 3/7/2024
4.25.11 6,880 3/5/2024
4.25.10 7,515 3/4/2024
4.25.9 7,244 2/29/2024
4.25.8 4,586 2/28/2024
4.25.7 13,345 2/26/2024
4.25.6 3,873 2/23/2024
4.25.5 4,265 2/22/2024
4.25.4 1,844 2/22/2024
4.25.3 4,685 2/21/2024
4.25.2 611 2/21/2024
4.25.1 4,971 2/20/2024
4.25.0 802 2/20/2024
4.24.7 28,943 2/13/2024
4.24.6 13,841 2/7/2024
4.24.5 19,073 2/1/2024
4.24.4 16,012 1/30/2024
4.24.3 10,002 1/26/2024
4.24.2 19,493 1/22/2024
4.24.1 13,887 1/18/2024
4.24.0 11,966 1/15/2024
4.23.9 7,746 1/12/2024
4.23.8 20,071 1/9/2024
4.23.7 12,124 1/4/2024
4.23.6 10,410 1/4/2024
4.23.5 6,648 1/2/2024
4.23.4 31,786 12/18/2023
4.23.3 12,662 12/14/2023
4.23.2 21,966 12/11/2023
4.23.1 9,437 12/8/2023
4.23.0 4,904 12/7/2023
4.22.1 40,362 11/29/2023
4.22.0 9,924 11/27/2023
4.21.4 15,850 11/23/2023
4.21.3 43,476 11/16/2023
4.21.2 2,570 11/16/2023
4.21.1 12,932 11/14/2023
4.21.0 3,308 11/14/2023
4.20.4 21,295 11/10/2023
4.20.3 1,768 11/9/2023
4.20.2 1,795 11/9/2023
4.20.1 17,408 11/6/2023
4.20.0 12,449 11/2/2023
4.19.1 15,113 10/30/2023
4.19.0 25,877 10/23/2023
4.18.1 30,256 10/18/2023
4.18.0 13,071 10/16/2023
4.17.1 14,794 10/10/2023
4.17.0 6,097 10/9/2023
4.16.4 22,050 10/4/2023
4.16.3 20,452 9/28/2023
4.16.2 18,870 9/22/2023
4.16.1 8,532 9/21/2023
4.16.0 20,833 9/18/2023
4.15.14 23,464 9/13/2023
4.15.13 2,433 9/13/2023
4.15.12 6,732 9/12/2023
4.15.11 18,963 9/7/2023
4.15.10 12,758 9/4/2023
4.15.9 11,907 9/1/2023
4.15.8 15,428 8/29/2023
4.15.7 17,042 8/24/2023
4.15.6 14,963 8/21/2023
4.15.5 9,438 8/18/2023
4.15.4 38,089 8/11/2023
4.15.3 1,755 8/11/2023
4.15.2 3,389 8/10/2023
4.15.1 9,152 8/10/2023
4.15.0 10,324 8/8/2023
4.14.4 34,576 7/31/2023
4.14.3 9,824 7/27/2023
4.14.2 10,269 7/25/2023
4.14.1 16,621 7/19/2023
4.14.0 10,979 7/18/2023
4.13.6 17,525 7/14/2023
4.13.5 48,953 7/3/2023
4.13.4 34,599 6/26/2023
4.13.3 17,391 6/20/2023
4.13.2 24,425 6/15/2023
4.13.1 22,990 6/13/2023
4.13.0 41,743 6/7/2023
4.12.1 9,474 6/5/2023
4.12.0 25,038 5/31/2023
4.11.2 35,750 5/23/2023
4.11.1 26,205 5/16/2023
4.11.0 6,711 5/15/2023
4.10.4 21,896 5/9/2023
4.10.3 15,270 5/4/2023
4.10.2 8,446 5/2/2023
4.10.1 13,350 4/27/2023
4.10.0 29,189 4/20/2023
4.9.2 14,683 4/18/2023
4.9.1 22,245 4/12/2023
4.9.0 1,869 4/12/2023
4.8.4 36,696 4/4/2023
4.8.3 14,559 3/30/2023
4.8.2 12,188 3/27/2023
4.8.1 2,249 3/27/2023
4.8.0 8,355 3/24/2023
4.7.14 6,718 3/23/2023
4.7.13 18,970 3/20/2023
4.7.12 452,605 3/16/2023
4.7.11 14,265 3/14/2023
4.7.10 8,326 3/13/2023
4.7.9 21,680 3/9/2023
4.7.8 16,939 3/7/2023
4.7.7 5,816 3/6/2023
4.7.6 8,813 3/3/2023
4.7.5 12,279 3/2/2023
4.7.4 17,671 2/27/2023
4.7.3 2,174 2/27/2023
4.7.2 11,775 2/23/2023
4.7.1 42,587 2/16/2023
4.7.0 27,483 2/13/2023
4.6.8 11,867 2/9/2023
4.6.7 6,844 2/9/2023
4.6.6 17,809 2/6/2023
4.6.5 13,623 2/1/2023
4.6.4 9,648 1/30/2023
4.6.3 20,385 1/26/2023
4.6.2 15,154 1/23/2023
4.6.1 42,392 1/20/2023
4.6.0 13,286 1/19/2023
4.5.3 10,171 1/16/2023
4.5.2 22,349 1/12/2023
4.5.1 3,669 1/12/2023
4.5.0 12,715 1/9/2023
4.4.9 11,122 1/5/2023
4.4.8 9,026 1/3/2023
4.4.7 38,402 12/19/2022
4.4.6 24,358 12/13/2022
4.4.5 11,069 12/12/2022
4.4.4 12,224 12/8/2022
4.4.3 10,212 12/5/2022
4.4.2 3,497 12/5/2022
4.4.1 18,974 11/30/2022
4.4.0 6,595 11/30/2022
4.3.10 7,962 11/28/2022
4.3.9 4,972 11/28/2022
4.3.8 14,838 11/24/2022
4.3.7 17,374 11/21/2022
4.3.6 22,198 11/16/2022
4.3.5 8,556 11/15/2022
4.3.4 5,506 11/14/2022
4.3.3 2,388 11/14/2022
4.3.2 38,079 11/10/2022
4.3.1 11,703 11/9/2022
4.3.0 3,635 11/8/2022
4.2.3 7,906 11/7/2022
4.2.2 9,450 11/3/2022
4.2.1 5,217 11/2/2022
4.2.0 5,795 10/31/2022
4.1.15 11,055 10/27/2022
4.1.14 9,012 10/24/2022
4.1.13 2,907 10/24/2022
4.1.12 5,347 10/21/2022
4.1.11 4,430 10/21/2022
4.1.10 7,174 10/20/2022
4.1.9 10,661 10/17/2022
4.1.8 11,115 10/13/2022
4.1.7 45,887 10/6/2022
4.1.6 13,480 10/3/2022
4.1.5 7,060 9/29/2022
4.1.4 19,446 9/27/2022
4.1.3 6,033 9/26/2022
4.1.2 3,445 9/26/2022
4.1.1 15,943 9/22/2022
4.1.0 10,049 9/21/2022
4.0.0 22,575 9/15/2022
3.20.12 52,087 9/12/2022
3.20.11 12,873 9/8/2022
3.20.10 40,191 9/5/2022
3.20.9 7,686 9/1/2022
3.20.8 31,975 8/30/2022
3.20.7 6,396 8/29/2022
3.20.6 15,659 8/25/2022
3.20.5 30,912 8/22/2022
3.20.4 12,102 8/17/2022
3.20.3 24,556 8/11/2022
3.20.2 25,263 8/5/2022
3.20.1 4,524 8/4/2022
3.20.0 4,551 8/4/2022
3.19.12 17,264 8/1/2022
3.19.11 13,469 7/28/2022
3.19.10 13,035 7/25/2022
3.19.9 4,255 7/23/2022
3.19.8 6,384 7/21/2022
3.19.7 65,583 7/19/2022
3.19.6 7,323 7/18/2022
3.19.5 60,188 7/14/2022
3.19.4 18,506 7/12/2022
3.19.3 23,165 7/7/2022
3.19.2 34,753 7/4/2022
3.19.1 33,370 6/23/2022
3.19.0 2,916 6/23/2022
3.18.16 36,629 6/16/2022
3.18.15 29,098 6/13/2022
3.18.14 40,089 6/9/2022
3.18.13 106,157 6/2/2022
3.18.12 103,454 5/26/2022
3.18.11 10,343 5/23/2022
3.18.10 104,612 5/19/2022
3.18.9 23,340 5/16/2022
3.18.8 42,256 5/9/2022
3.18.7 18,589 5/2/2022
3.18.6 16,596 4/28/2022
3.18.5 4,358 4/27/2022
3.18.4 57,258 4/21/2022
3.18.3 17,564 4/18/2022
3.18.2 13,369 4/13/2022
3.18.1 7,595 4/11/2022
3.18.0 35,443 4/7/2022
3.17.3 25,617 3/31/2022
3.17.2 11,491 3/28/2022
3.17.1 5,322 3/25/2022
3.17.0 25,660 3/24/2022
3.16.7 12,894 3/21/2022
3.16.6 15,458 3/17/2022
3.16.5 1,965 3/17/2022
3.16.4 2,069 3/17/2022
3.16.3 50,910 3/7/2022
3.16.2 28,337 3/3/2022
3.16.1 9,223 2/28/2022
3.16.0 16,110 2/24/2022
3.15.6 16,288 2/21/2022
3.15.5 18,562 2/18/2022
3.15.4 6,514 2/17/2022
3.15.3 9,736 2/14/2022
3.15.2 13,720 2/11/2022
3.15.1 4,671 2/10/2022
3.15.0 4,920 2/9/2022
3.14.12 9,322 2/4/2022
3.14.11 27,252 2/3/2022
3.14.10 14,722 1/31/2022
3.14.9 3,882 1/29/2022
3.14.8 11,110 1/27/2022
3.14.7 10,592 1/24/2022
3.14.6 44,591 1/20/2022
3.14.5 8,067 1/20/2022
3.14.4 2,392 1/20/2022
3.14.3 2,451 1/20/2022
3.14.2 34,869 1/13/2022
3.14.1 12,470 1/10/2022
3.14.0 9,957 1/6/2022
3.13.12 33,992 12/30/2021
3.13.11 30,525 12/27/2021
3.13.10 6,182 12/23/2021
3.13.9 3,629 12/23/2021
3.13.8 28,805 12/20/2021
3.13.7 37,585 12/16/2021
3.13.6 12,036 12/13/2021
3.13.5 11,290 12/9/2021
3.13.4 12,154 12/6/2021
3.13.3 10,444 12/1/2021
3.13.2 27,670 11/25/2021
3.13.1 13,575 11/24/2021
3.13.0 7,198 11/24/2021
3.12.5 5,197 11/23/2021
3.12.4 1,802 11/23/2021
3.12.3 4,192 11/22/2021
3.12.2 12,523 11/18/2021
3.12.1 12,707 11/15/2021
3.12.0 10,790 11/11/2021
3.11.12 33,600 11/4/2021
3.11.11 16,158 11/1/2021
3.11.10 7,001 10/28/2021
3.11.9 17,115 10/21/2021
3.11.8 4,420 10/19/2021
3.11.7 3,687 10/18/2021
3.11.6 8,800 10/14/2021
3.11.5 1,885 10/14/2021
3.11.4 42,623 10/11/2021
3.11.3 7,223 10/7/2021
3.11.2 9,170 10/5/2021
3.11.1 8,402 9/30/2021
3.11.0 2,208 9/30/2021
3.10.2 14,848 9/27/2021
3.10.1 7,047 9/23/2021
3.10.0 16,568 9/21/2021
3.9.10 21,355 9/16/2021
3.9.9 15,078 9/9/2021
3.9.8 9,046 9/3/2021
3.9.7 7,880 8/31/2021
3.9.6 5,566 8/30/2021
3.9.5 7,151 8/25/2021
3.9.4 2,806 8/25/2021
3.9.3 13,584 8/23/2021
3.9.2 8,968 8/18/2021
3.9.1 2,740 8/18/2021
3.9.0 2,141 8/18/2021
3.8.2 15,378 8/9/2021
3.8.1 10,525 8/3/2021
3.8.0 7,321 7/29/2021
3.7.3 11,402 7/26/2021
3.7.2 7,164 7/21/2021
3.7.1 9,546 7/19/2021
3.7.0 2,004 7/19/2021
3.6.8 16,263 7/13/2021
3.6.7 6,115 7/8/2021
3.6.6 6,995 7/5/2021
3.6.5 1,887 7/5/2021
3.6.4 3,578 7/5/2021
3.6.3 11,864 7/1/2021
3.6.2 4,967 7/1/2021
3.6.1 21,242 6/28/2021
3.6.0 14,884 6/23/2021
3.5.3 47,264 6/17/2021
3.5.2 11,978 6/14/2021
3.5.1 12,839 6/10/2021
3.5.0 11,277 6/7/2021
3.4.2 7,278 6/3/2021
3.4.1 5,132 6/3/2021
3.4.0 1,911 6/3/2021
3.3.2 10,558 5/27/2021
3.3.1 12,613 5/20/2021
3.3.0 6,207 5/18/2021
3.2.9 9,657 5/13/2021
3.2.8 14,178 5/6/2021
3.2.7 23,930 4/26/2021
3.2.6 12,845 4/21/2021
3.2.5 4,214 4/19/2021
3.2.4 3,286 4/19/2021
3.2.3 7,785 4/14/2021
3.2.2 21,512 4/8/2021
3.2.1 4,760 4/6/2021
3.2.0 5,949 4/2/2021
3.1.11 4,099 4/1/2021
3.1.10 7,548 3/29/2021
3.1.9 7,279 3/26/2021
3.1.8 4,224 3/25/2021
3.1.7 8,937 3/22/2021
3.1.6 14,685 3/15/2021
3.1.5 17,942 3/8/2021
3.1.4 8,723 3/4/2021
3.1.3 9,903 3/1/2021
3.1.2 7,639 2/25/2021
3.1.1 25,083 2/22/2021
3.1.0 20,160 2/17/2021
3.0.10 6,082 2/15/2021
3.0.9 11,130 2/11/2021
3.0.8 8,199 2/8/2021
3.0.7 10,204 2/4/2021
3.0.6 6,780 2/2/2021
3.0.5 2,043 2/2/2021
3.0.4 5,179 2/1/2021
3.0.3 5,020 1/28/2021
3.0.2 9,250 1/25/2021
3.0.1 6,062 1/21/2021
3.0.0 7,298 1/19/2021
2.18.16 15,583 1/15/2021
2.18.15 2,983 1/14/2021
2.18.14 2,095 1/14/2021
2.18.13 4,726 1/13/2021
2.18.12 2,587 1/12/2021
2.18.11 2,352 1/12/2021
2.18.10 7,868 1/6/2021
2.18.9 7,554 1/4/2021
2.18.8 24,447 12/23/2020
2.18.7 2,039 12/23/2020
2.18.6 13,568 12/15/2020
2.18.5 3,000 12/14/2020
2.18.4 5,110 12/9/2020
2.18.3 3,921 12/7/2020
2.18.2 6,154 12/3/2020
2.18.1 2,342 11/30/2020
2.18.0 486 11/30/2020
2.17.11 4,549 11/27/2020
2.17.10 5,504 11/24/2020
2.17.9 2,678 11/23/2020
2.17.8 509 11/23/2020
2.17.7 2,032 11/21/2020
2.17.6 386 11/21/2020
2.17.5 611 11/20/2020
2.17.4 1,007 11/20/2020
2.17.3 1,196 11/19/2020
2.17.2 3,845 11/17/2020
2.17.1 6,320 11/16/2020
2.17.0 1,025 11/16/2020
2.16.5 2,158 11/13/2020
2.16.4 466 11/13/2020
2.16.3 2,141 11/12/2020
2.16.2 8,712 11/9/2020
2.16.1 2,590 11/6/2020
2.16.0 1,525 11/5/2020
2.15.21 1,677 11/3/2020
2.15.20 2,921 10/31/2020
2.15.19 6,004 10/27/2020
2.15.18 1,853 10/26/2020
2.15.17 4,770 10/22/2020
2.15.16 1,090 10/21/2020
2.15.15 3,814 10/19/2020
2.15.14 3,115 10/15/2020
2.15.13 382 10/15/2020
2.15.12 3,844 10/13/2020
2.15.11 2,007 10/12/2020
2.15.10 1,680 10/9/2020
2.15.9 790 10/8/2020
2.15.8 2,932 10/6/2020
2.15.7 4,870 10/2/2020
2.15.6 1,440 10/1/2020
2.15.5 3,621 9/28/2020
2.15.4 3,582 9/24/2020
2.15.3 375 9/24/2020
2.15.2 327 9/24/2020
2.15.1 291 9/24/2020
2.15.0 609 9/24/2020
2.14.6 861 9/23/2020
2.14.5 1,597 9/23/2020
2.14.4 364 9/23/2020
2.14.3 1,580 9/21/2020
2.14.2 397 9/21/2020
2.14.1 1,594 9/18/2020
2.14.0 902 9/17/2020
2.13.0 8,686 9/16/2020
2.12.3 4,153 9/14/2020
2.12.2 3,406 9/12/2020
2.12.1 2,454 9/11/2020
2.12.0 4,199 9/10/2020
2.11.19 7,212 9/9/2020
2.11.18 4,595 9/7/2020
2.11.17 7,670 9/2/2020
2.11.16 3,846 8/31/2020
2.11.15 2,217 8/31/2020
2.11.14 11,773 8/25/2020
2.11.13 5,262 8/21/2020
2.11.12 4,919 8/19/2020
2.11.11 3,784 8/18/2020
2.11.10 2,717 8/17/2020
2.11.9 5,524 8/12/2020
2.11.8 5,463 8/10/2020
2.11.7 2,682 8/7/2020
2.11.6 3,790 8/5/2020
2.11.5 2,137 8/5/2020
2.11.4 2,933 8/3/2020
2.11.3 6,881 7/29/2020
2.11.2 20,835 7/29/2020
2.11.1 4,278 7/27/2020
2.11.0 2,322 7/27/2020
2.10.22 2,802 7/27/2020
2.10.21 2,136 7/27/2020
2.10.20 6,695 7/20/2020
2.10.19 5,061 7/16/2020
2.10.18 2,145 7/16/2020
2.10.17 2,765 7/15/2020
2.10.16 4,847 7/13/2020
2.10.15 4,242 7/9/2020
2.10.14 2,870 7/8/2020
2.10.13 2,746 7/7/2020
2.10.12 2,911 7/6/2020
2.10.11 2,685 7/6/2020
2.10.10 4,442 7/1/2020
2.10.9 2,272 7/1/2020
2.10.8 2,439 6/30/2020
2.10.7 4,756 6/25/2020
2.10.6 3,630 6/23/2020
2.10.5 3,387 6/22/2020
2.10.4 2,300 6/22/2020
2.10.3 9,482 6/17/2020
2.10.2 6,334 6/11/2020
2.10.1 2,307 6/11/2020
2.10.0 3,178 6/10/2020
2.9.11 3,971 6/8/2020
2.9.10 6,075 6/2/2020
2.9.9 4,284 6/1/2020
2.9.8 2,701 5/30/2020
2.9.7 3,659 5/28/2020
2.9.6 3,843 5/26/2020
2.9.5 2,234 5/26/2020
2.9.4 2,792 5/25/2020
2.9.3 2,211 5/25/2020
2.9.2 4,699 5/22/2020
2.9.1 4,487 5/20/2020
2.9.0 2,490 5/19/2020
2.8.4 2,733 5/18/2020
2.8.3 2,354 5/18/2020
2.8.2 2,180 5/18/2020
2.8.1 2,657 5/15/2020
2.8.0 3,124 5/14/2020
2.7.3 3,001 5/13/2020
2.7.2 3,792 5/12/2020
2.7.1 2,879 5/11/2020
2.7.0 2,040 5/11/2020
2.6.10 3,182 5/7/2020
2.6.9 2,873 5/6/2020
2.6.8 2,525 5/5/2020
2.6.7 2,964 5/4/2020
2.6.6 4,096 5/1/2020
2.6.5 2,813 4/30/2020
2.6.4 3,699 4/27/2020
2.6.3 4,440 4/23/2020
2.6.2 2,123 4/23/2020
2.6.1 2,586 4/23/2020
2.6.0 4,058 4/22/2020
2.5.11 2,353 4/21/2020
2.5.10 2,644 4/20/2020
2.5.9 3,171 4/16/2020
2.5.8 5,732 4/8/2020
2.5.7 2,559 4/7/2020
2.5.6 2,534 4/6/2020
2.5.5 2,328 4/6/2020
2.5.4 2,221 4/6/2020
2.5.3 2,227 4/6/2020
2.5.2 2,526 4/6/2020
2.5.1 2,431 4/4/2020
2.5.0 2,575 4/3/2020
2.4.6 2,924 4/2/2020
2.4.5 3,568 3/31/2020
2.4.4 3,070 3/27/2020
2.4.3 2,378 3/26/2020
2.4.2 2,482 3/25/2020
2.4.1 2,991 3/23/2020
2.4.0 4,210 3/19/2020
2.3.9 3,000 3/16/2020
2.3.8 3,135 3/12/2020
2.3.7 4,073 3/9/2020
2.3.6 2,320 3/9/2020
2.3.5 2,657 3/6/2020
2.3.4 2,194 3/6/2020
2.3.3 3,852 3/5/2020
2.3.2 2,546 3/3/2020
2.3.1 2,214 3/3/2020
2.3.0 2,300 3/3/2020
2.2.6 2,657 3/2/2020
2.2.5 5,694 2/27/2020
2.2.4 2,276 2/27/2020
2.2.3 2,233 2/26/2020
2.2.2 2,441 2/26/2020
2.2.1 3,437 2/21/2020
2.2.0 2,447 2/20/2020
2.1.23 3,984 2/17/2020
2.1.22 3,551 2/14/2020
2.1.21 2,399 2/13/2020
2.1.20 2,612 2/12/2020
2.1.19 2,548 2/11/2020
2.1.18 2,825 2/7/2020
2.1.17 3,410 2/5/2020
2.1.16 2,575 2/3/2020
2.1.15 2,130 2/3/2020
2.1.14 4,017 1/28/2020
2.1.13 2,304 1/28/2020
2.1.12 2,493 1/27/2020
2.1.11 2,656 1/24/2020
2.1.10 3,304 1/23/2020
2.1.9 3,458 1/18/2020
2.1.8 2,300 1/17/2020
2.1.7 3,445 1/16/2020
2.1.6 6,354 1/15/2020
2.1.5 2,247 1/15/2020
2.1.4 2,723 1/13/2020
2.1.3 2,735 1/11/2020
2.1.2 2,535 1/11/2020
2.1.1 2,312 1/11/2020
2.1.0 2,594 1/9/2020
2.0.13 4,784 12/20/2019
2.0.12 2,653 12/18/2019
2.0.11 2,539 12/17/2019
2.0.10 2,549 12/16/2019
2.0.9 2,451 12/16/2019
2.0.8 2,583 12/13/2019
2.0.7 2,402 12/12/2019
2.0.6 2,332 12/12/2019
2.0.5 2,452 12/12/2019
2.0.4 2,894 12/9/2019
2.0.3 2,361 12/9/2019
2.0.2 3,190 12/5/2019
2.0.1 2,555 12/4/2019
2.0.0 2,532 12/4/2019
1.2.13 3,777 12/3/2019
1.2.12 2,503 12/3/2019
1.2.11 2,418 12/2/2019
1.2.10 2,445 12/2/2019
1.2.9 2,756 11/27/2019
1.2.8 2,342 11/27/2019
1.2.7 2,370 11/26/2019
1.2.6 2,769 11/25/2019
1.2.5 2,938 11/22/2019
1.2.4 2,460 11/21/2019
1.2.3 2,444 11/21/2019
1.2.2 2,272 11/21/2019
1.2.1 2,335 11/20/2019
1.2.0 2,282 11/20/2019
1.1.35 2,412 11/20/2019
1.1.34 2,450 11/19/2019
1.1.33 3,323 11/15/2019
1.1.32 2,306 11/15/2019
1.1.31 2,265 11/15/2019
1.1.30 2,545 11/12/2019
1.1.29 2,612 11/11/2019
1.1.28 2,342 11/11/2019
1.1.27 2,334 11/11/2019
1.1.26 2,492 11/7/2019
1.1.25 2,415 11/6/2019
1.1.24 2,371 11/5/2019
1.1.23 2,302 11/5/2019
1.1.22 2,466 11/4/2019
1.1.21 2,774 10/30/2019
1.1.20 2,338 10/30/2019
1.1.19 2,345 10/29/2019
1.1.18 2,552 10/28/2019
1.1.17 2,481 10/25/2019
1.1.16 2,515 10/24/2019
1.1.15 2,403 10/23/2019
1.1.14 2,295 10/22/2019
1.1.13 2,338 10/22/2019
1.1.12 2,373 10/21/2019
1.1.11 2,523 10/18/2019
1.1.10 2,361 10/17/2019
1.1.9 2,310 10/17/2019
1.1.8 2,322 10/17/2019
1.1.7 2,427 10/16/2019
1.1.6 2,457 10/15/2019
1.1.5 2,412 10/14/2019
1.1.4 2,306 10/13/2019
1.1.3 2,362 10/13/2019
1.1.2 2,317 10/13/2019
1.1.1 2,410 10/11/2019
1.1.0 2,405 10/11/2019
1.0.14 2,396 10/10/2019
1.0.13 2,442 10/9/2019
1.0.12 2,306 10/9/2019
1.0.11 2,428 10/7/2019
1.0.10 2,427 10/5/2019
1.0.9 2,484 10/4/2019
1.0.8 2,411 10/2/2019
1.0.7 2,288 10/2/2019
1.0.6 2,346 10/1/2019
1.0.5 2,306 10/1/2019
1.0.4 2,340 10/1/2019
1.0.3 2,539 9/30/2019
1.0.2 2,585 9/27/2019
1.0.1 2,364 9/25/2019
1.0.0 2,585 9/24/2019
0.0.82 496 9/23/2019
0.0.81 481 9/20/2019
0.0.80 432 9/20/2019
0.0.79 461 9/19/2019
0.0.78 445 9/19/2019
0.0.77 484 9/18/2019
0.0.76 518 9/17/2019
0.0.75 437 9/17/2019
0.0.74 441 9/17/2019
0.0.73 461 9/16/2019
0.0.72 497 9/13/2019
0.0.71 671 9/6/2019
0.0.70 453 9/6/2019
0.0.69 588 9/5/2019
0.0.68 479 9/4/2019
0.0.67 458 9/2/2019
0.0.66 588 8/28/2019
0.0.65 484 8/27/2019
0.0.64 432 8/26/2019
0.0.63 458 8/24/2019
0.0.62 502 8/21/2019
0.0.61 774 8/15/2019
0.0.60 538 8/14/2019
0.0.59 463 8/14/2019
0.0.58 459 8/13/2019
0.0.57 456 8/12/2019
0.0.56 504 8/9/2019
0.0.55 476 8/8/2019
0.0.54 460 8/8/2019
0.0.53 432 8/8/2019
0.0.52 458 8/7/2019
0.0.51 438 8/6/2019
0.0.50 452 8/6/2019
0.0.49 656 8/5/2019
0.0.48 433 8/5/2019
0.0.47 530 8/1/2019
0.0.46 484 7/31/2019
0.0.45 476 7/31/2019
0.0.44 491 7/30/2019
0.0.43 583 7/26/2019
0.0.42 526 7/24/2019
0.0.41 509 7/17/2019
0.0.40 466 7/15/2019
0.0.39 438 7/15/2019
0.0.38 443 7/14/2019
0.0.37 494 7/11/2019
0.0.36 442 7/11/2019
0.0.35 474 7/10/2019
0.0.34 638 6/25/2019
0.0.33 434 6/25/2019
0.0.32 466 6/21/2019
0.0.31 506 6/19/2019
0.0.30 465 6/17/2019
0.0.29 581 6/14/2019
0.0.28 450 6/14/2019
0.0.27 446 6/14/2019
0.0.26 444 6/14/2019
0.0.25 484 6/13/2019
0.0.24 2,460 6/6/2019
0.0.23 2,437 6/6/2019
0.0.22 2,512 5/30/2019
0.0.21 2,404 5/28/2019
0.0.20 2,388 5/27/2019
0.0.19 2,447 5/23/2019
0.0.18 2,366 5/22/2019
0.0.17 2,566 5/20/2019
0.0.16 2,488 5/17/2019
0.0.14 2,560 3/29/2019
0.0.13 2,452 3/7/2019
0.0.12 2,537 2/19/2019
0.0.11 2,490 2/19/2019
0.0.10 2,520 2/13/2019
0.0.9 2,490 2/11/2019
0.0.8 2,961 2/6/2019
0.0.6 2,632 1/25/2019
0.0.5 2,471 1/8/2019
0.0.4 2,869 12/13/2018
0.0.3 2,662 11/29/2018
0.0.2 2,494 11/23/2018
0.0.1 3,379 11/19/2018