Soenneker.Blazor.FilePond 2.1.252

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

// Install Soenneker.Blazor.FilePond as a Cake Tool
#tool nuget:?package=Soenneker.Blazor.FilePond&version=2.1.252

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Blazor.FilePond

A Blazor interop library for the file upload library FilePond

This library simplifies the integration of FilePond into Blazor applications, providing access to options, methods, plugins, and events. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the FilePond documentation for details.

Installation

dotnet add package Soenneker.Blazor.FilePond

1. Add the following to your _Imports.razor file

@using Soenneker.Blazor.FilePond

2. Add the following to your Startup.cs file

public void ConfigureServices(IServiceCollection services)
{
    services.AddFilePond();
}

3. Add the stylesheet to your wwwroot/index.html file

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/filepond@4.30.6/dist/filepond.min.css">

4. Add the scripts to your wwwroot/index.html file

<script src="https://cdn.jsdelivr.net/npm/filepond@4.30.6/dist/filepond.min.js"></script>
<script src="_content/Soenneker.Blazor.FilePond/filepondinterop.js"></script>

Usage

<FilePond @ref="FilePond" Options="_options" OnAddFile="OnAddFile"></FilePond>

@code{
    private FilePond? FilePond { get; set; }

    private readonly FilePondOptions _options = new()
    {
        MaxFiles = 20,
        AllowMultiple = true
    };

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (firstRender)
        {
            // Add any plugins you want to use
            //await FilePond!.EnablePlugins(FilePondPluginType.FileValidateType, FilePondPluginType.ImagePreview);
        }
    }

    private async Task OnAddFile((FilePondError? error, FilePondFileItem fileItem) obj)
    {
        Logger.LogInformation("OnAddFile fired: Filename: {fileName}", obj.fileItem.Filename);
        Stream? stream = await FilePond!.GetStreamForFile();
        // do something with the stream
        await stream.DisposeAsync();
    }
}

⚠️ While 95%+ of the FilePond JS has been implemented, there are a few features not yet supported. If you need assistance or want to request a new feature, please open an issue or submit a pull request.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.845 62 6/12/2024
2.1.844 70 6/9/2024
2.1.843 62 6/7/2024
2.1.842 72 6/4/2024
2.1.841 70 6/4/2024
2.1.840 68 6/4/2024
2.1.839 74 6/4/2024
2.1.838 85 6/4/2024
2.1.837 74 6/3/2024
2.1.836 76 6/3/2024
2.1.835 84 6/2/2024
2.1.834 78 6/2/2024
2.1.833 76 6/2/2024
2.1.832 72 6/2/2024
2.1.831 74 6/2/2024
2.1.830 79 6/2/2024
2.1.829 79 6/2/2024
2.1.828 76 6/1/2024
2.1.827 77 6/1/2024
2.1.826 76 6/1/2024
2.1.825 74 5/31/2024
2.1.824 74 5/31/2024
2.1.823 71 5/31/2024
2.1.822 79 5/31/2024
2.1.821 71 5/31/2024
2.1.820 76 5/31/2024
2.1.819 72 5/31/2024
2.1.818 74 5/31/2024
2.1.817 67 5/31/2024
2.1.816 74 5/29/2024
2.1.815 68 5/29/2024
2.1.814 81 5/29/2024
2.1.813 70 5/29/2024
2.1.812 67 5/29/2024
2.1.811 70 5/29/2024
2.1.810 74 5/29/2024
2.1.809 73 5/29/2024
2.1.808 69 5/29/2024
2.1.807 80 5/28/2024
2.1.806 73 5/28/2024
2.1.805 65 5/28/2024
2.1.804 58 5/28/2024
2.1.803 74 5/28/2024
2.1.802 67 5/28/2024
2.1.801 68 5/28/2024
2.1.800 72 5/28/2024
2.1.799 68 5/28/2024
2.1.798 69 5/28/2024
2.1.797 71 5/28/2024
2.1.796 68 5/28/2024
2.1.795 78 5/28/2024
2.1.794 69 5/28/2024
2.1.793 78 5/27/2024
2.1.792 68 5/27/2024
2.1.791 73 5/27/2024
2.1.790 71 5/27/2024
2.1.789 77 5/27/2024
2.1.788 73 5/27/2024
2.1.787 81 5/27/2024
2.1.786 73 5/27/2024
2.1.785 73 5/27/2024
2.1.784 75 5/27/2024
2.1.783 76 5/26/2024
2.1.782 71 5/26/2024
2.1.781 74 5/26/2024
2.1.780 82 5/26/2024
2.1.779 80 5/26/2024
2.1.778 80 5/26/2024
2.1.777 77 5/26/2024
2.1.776 81 5/26/2024
2.1.775 77 5/26/2024
2.1.774 85 5/26/2024
2.1.773 79 5/26/2024
2.1.772 89 5/26/2024
2.1.771 74 5/26/2024
2.1.770 84 5/25/2024
2.1.769 73 5/25/2024
2.1.768 80 5/25/2024
2.1.767 77 5/25/2024
2.1.766 77 5/25/2024
2.1.765 78 5/25/2024
2.1.764 87 5/25/2024
2.1.763 86 5/25/2024
2.1.762 83 5/25/2024
2.1.761 74 5/25/2024
2.1.760 85 5/25/2024
2.1.759 73 5/25/2024
2.1.758 79 5/25/2024
2.1.757 82 5/24/2024
2.1.756 84 5/24/2024
2.1.755 75 5/24/2024
2.1.754 83 5/23/2024
2.1.753 76 5/23/2024
2.1.752 80 5/23/2024
2.1.751 79 5/23/2024
2.1.750 73 5/23/2024
2.1.749 72 5/23/2024
2.1.748 57 5/23/2024
2.1.747 55 5/23/2024
2.1.746 69 5/23/2024
2.1.745 69 5/23/2024
2.1.744 75 5/23/2024
2.1.743 69 5/23/2024
2.1.742 75 5/22/2024
2.1.741 69 5/22/2024
2.1.740 68 5/22/2024
2.1.739 73 5/22/2024
2.1.738 63 5/22/2024
2.1.737 82 5/22/2024
2.1.736 65 5/22/2024
2.1.735 63 5/22/2024
2.1.734 72 5/19/2024
2.1.733 68 5/19/2024
2.1.732 62 5/18/2024
2.1.731 72 5/18/2024
2.1.730 65 5/18/2024
2.1.729 66 5/18/2024
2.1.728 64 5/18/2024
2.1.727 71 5/18/2024
2.1.726 69 5/18/2024
2.1.725 74 5/18/2024
2.1.724 69 5/18/2024
2.1.723 78 5/17/2024
2.1.722 72 5/17/2024
2.1.721 72 5/17/2024
2.1.720 71 5/17/2024
2.1.719 56 5/17/2024
2.1.718 70 5/16/2024
2.1.717 71 5/16/2024
2.1.716 75 5/16/2024
2.1.715 70 5/16/2024
2.1.714 80 5/15/2024
2.1.713 75 5/15/2024
2.1.712 77 5/15/2024
2.1.711 73 5/15/2024
2.1.710 76 5/15/2024
2.1.709 70 5/15/2024
2.1.708 66 5/14/2024
2.1.707 59 5/14/2024
2.1.706 69 5/14/2024
2.1.705 64 5/14/2024
2.1.704 69 5/13/2024
2.1.703 68 5/13/2024
2.1.702 68 5/13/2024
2.1.701 69 5/13/2024
2.1.700 67 5/13/2024
2.1.699 71 5/13/2024
2.1.698 67 5/13/2024
2.1.697 89 5/7/2024
2.1.696 53 5/3/2024
2.1.695 61 5/1/2024
2.1.694 47 5/1/2024
2.1.693 60 5/1/2024
2.1.692 68 4/30/2024
2.1.691 62 4/30/2024
2.1.690 70 4/30/2024
2.1.689 53 4/30/2024
2.1.688 71 4/30/2024
2.1.687 65 4/30/2024
2.1.686 71 4/30/2024
2.1.685 60 4/30/2024
2.1.684 82 4/30/2024
2.1.683 67 4/30/2024
2.1.682 76 4/29/2024
2.1.681 65 4/29/2024
2.1.680 71 4/29/2024
2.1.679 66 4/29/2024
2.1.678 61 4/29/2024
2.1.677 65 4/29/2024
2.1.676 62 4/29/2024
2.1.675 62 4/29/2024
2.1.674 62 4/29/2024
2.1.673 68 4/28/2024
2.1.672 62 4/28/2024
2.1.671 63 4/28/2024
2.1.670 79 4/28/2024
2.1.669 69 4/28/2024
2.1.668 66 4/28/2024
2.1.667 69 4/28/2024
2.1.666 61 4/28/2024
2.1.665 60 4/28/2024
2.1.664 63 4/28/2024
2.1.663 67 4/28/2024
2.1.662 63 4/28/2024
2.1.661 65 4/28/2024
2.1.660 60 4/28/2024
2.1.659 62 4/28/2024
2.1.658 73 4/27/2024
2.1.657 63 4/27/2024
2.1.656 82 4/20/2024
2.1.655 80 4/20/2024
2.1.654 85 4/20/2024
2.1.653 92 4/20/2024
2.1.652 81 4/20/2024
2.1.651 74 4/20/2024
2.1.650 75 4/20/2024
2.1.649 72 4/20/2024
2.1.648 71 4/20/2024
2.1.647 74 4/19/2024
2.1.646 66 4/19/2024
2.1.645 60 4/19/2024
2.1.644 70 4/19/2024
2.1.643 62 4/19/2024
2.1.642 64 4/19/2024
2.1.641 70 4/19/2024
2.1.640 64 4/19/2024
2.1.639 67 4/19/2024
2.1.638 69 4/19/2024
2.1.637 73 4/19/2024
2.1.636 75 4/19/2024
2.1.635 71 4/19/2024
2.1.634 70 4/19/2024
2.1.633 69 4/15/2024
2.1.632 73 4/15/2024
2.1.631 87 4/13/2024
2.1.630 102 4/13/2024
2.1.629 75 4/13/2024
2.1.628 71 4/13/2024
2.1.627 77 4/13/2024
2.1.626 65 4/13/2024
2.1.625 69 4/13/2024
2.1.624 77 4/13/2024
2.1.623 70 4/13/2024
2.1.622 72 4/13/2024
2.1.621 65 4/12/2024
2.1.620 63 4/12/2024
2.1.619 72 4/12/2024
2.1.618 67 4/12/2024
2.1.617 66 4/12/2024
2.1.616 62 4/12/2024
2.1.615 70 4/12/2024
2.1.614 68 4/12/2024
2.1.613 74 4/12/2024
2.1.612 66 4/12/2024
2.1.611 71 4/12/2024
2.1.610 71 4/12/2024
2.1.609 72 4/12/2024
2.1.608 68 4/12/2024
2.1.607 79 4/12/2024
2.1.606 72 4/12/2024
2.1.605 69 4/11/2024
2.1.604 89 4/11/2024
2.1.603 80 4/10/2024
2.1.602 70 4/10/2024
2.1.601 75 4/10/2024
2.1.600 73 4/10/2024
2.1.599 70 4/10/2024
2.1.598 76 4/10/2024
2.1.597 79 4/10/2024
2.1.596 69 4/10/2024
2.1.595 68 4/10/2024
2.1.594 71 4/10/2024
2.1.593 69 4/10/2024
2.1.592 75 4/9/2024
2.1.591 76 4/9/2024
2.1.590 81 4/9/2024
2.1.589 81 4/9/2024
2.1.588 86 4/8/2024
2.1.587 90 4/4/2024
2.1.586 88 4/4/2024
2.1.585 78 4/3/2024
2.1.584 64 4/3/2024
2.1.583 76 4/2/2024
2.1.582 70 4/2/2024
2.1.581 69 4/2/2024
2.1.580 72 4/2/2024
2.1.579 70 4/2/2024
2.1.578 64 4/2/2024
2.1.577 53 4/2/2024
2.1.576 71 4/2/2024
2.1.575 59 4/2/2024
2.1.574 80 4/1/2024
2.1.573 70 4/1/2024
2.1.572 73 4/1/2024
2.1.571 222 3/30/2024
2.1.570 79 3/30/2024
2.1.569 71 3/30/2024
2.1.568 78 3/30/2024
2.1.567 67 3/30/2024
2.1.566 70 3/29/2024
2.1.565 75 3/29/2024
2.1.564 74 3/29/2024
2.1.563 79 3/29/2024
2.1.562 79 3/27/2024
2.1.561 88 3/26/2024
2.1.560 81 3/26/2024
2.1.559 83 3/26/2024
2.1.558 85 3/25/2024
2.1.557 82 3/25/2024
2.1.556 84 3/25/2024
2.1.555 81 3/25/2024
2.1.554 86 3/25/2024
2.1.553 81 3/25/2024
2.1.552 83 3/25/2024
2.1.551 75 3/25/2024
2.1.550 83 3/25/2024
2.1.549 79 3/25/2024
2.1.548 85 3/24/2024
2.1.547 83 3/23/2024
2.1.546 84 3/21/2024
2.1.545 82 3/21/2024
2.1.544 90 3/21/2024
2.1.543 89 3/21/2024
2.1.542 89 3/21/2024
2.1.541 92 3/21/2024
2.1.540 91 3/21/2024
2.1.539 91 3/20/2024
2.1.538 82 3/20/2024
2.1.537 87 3/20/2024
2.1.536 88 3/20/2024
2.1.535 91 3/20/2024
2.1.534 97 3/20/2024
2.1.533 82 3/20/2024
2.1.532 81 3/20/2024
2.1.531 94 3/19/2024
2.1.530 84 3/19/2024
2.1.529 83 3/19/2024
2.1.528 86 3/19/2024
2.1.527 75 3/19/2024
2.1.526 66 3/19/2024
2.1.525 83 3/19/2024
2.1.524 92 3/19/2024
2.1.523 86 3/19/2024
2.1.522 79 3/19/2024
2.1.521 86 3/18/2024
2.1.520 81 3/18/2024
2.1.519 89 3/18/2024
2.1.518 80 3/16/2024
2.1.517 93 3/16/2024
2.1.516 99 3/16/2024
2.1.515 92 3/16/2024
2.1.514 81 3/16/2024
2.1.513 86 3/16/2024
2.1.512 88 3/16/2024
2.1.511 95 3/16/2024
2.1.510 86 3/16/2024
2.1.509 77 3/15/2024
2.1.508 86 3/15/2024
2.1.507 83 3/14/2024
2.1.506 88 3/14/2024
2.1.505 84 3/14/2024
2.1.504 88 3/14/2024
2.1.503 89 3/13/2024
2.1.502 90 3/13/2024
2.1.501 93 3/13/2024
2.1.500 91 3/13/2024
2.1.499 88 3/13/2024
2.1.498 101 3/13/2024
2.1.497 97 3/13/2024
2.1.496 97 3/13/2024
2.1.495 92 3/13/2024
2.1.494 71 3/13/2024
2.1.493 95 3/13/2024
2.1.492 88 3/13/2024
2.1.491 84 3/13/2024
2.1.490 88 3/13/2024
2.1.489 85 3/13/2024
2.1.488 91 3/13/2024
2.1.487 79 3/13/2024
2.1.486 74 3/12/2024
2.1.485 90 3/12/2024
2.1.484 92 3/12/2024
2.1.483 87 3/12/2024
2.1.482 79 3/12/2024
2.1.481 84 3/12/2024
2.1.480 81 3/12/2024
2.1.479 82 3/12/2024
2.1.478 91 3/12/2024
2.1.477 82 3/12/2024
2.1.476 76 3/12/2024
2.1.475 81 3/12/2024
2.1.474 87 3/12/2024
2.1.473 86 3/12/2024
2.1.472 100 3/11/2024
2.1.471 95 3/11/2024
2.1.470 95 3/11/2024
2.1.469 88 3/11/2024
2.1.468 88 3/11/2024
2.1.467 84 3/11/2024
2.1.466 78 3/11/2024
2.1.465 75 3/11/2024
2.1.464 92 3/11/2024
2.1.463 75 3/11/2024
2.1.462 97 3/10/2024
2.1.461 94 3/10/2024
2.1.460 90 3/10/2024
2.1.459 102 3/10/2024
2.1.458 86 3/10/2024
2.1.457 99 3/10/2024
2.1.456 95 3/10/2024
2.1.455 99 3/10/2024
2.1.454 95 3/10/2024
2.1.453 92 3/9/2024
2.1.452 94 3/9/2024
2.1.451 98 3/9/2024
2.1.450 99 3/9/2024
2.1.449 100 3/8/2024
2.1.448 92 3/8/2024
2.1.447 95 3/8/2024
2.1.446 94 3/8/2024
2.1.445 93 3/8/2024
2.1.444 87 3/8/2024
2.1.443 87 3/8/2024
2.1.442 88 3/8/2024
2.1.441 96 3/8/2024
2.1.440 93 3/8/2024
2.1.439 96 3/8/2024
2.1.438 95 3/8/2024
2.1.437 90 3/7/2024
2.1.436 114 3/6/2024
2.1.435 86 3/6/2024
2.1.434 75 3/6/2024
2.1.433 91 3/6/2024
2.1.432 85 3/6/2024
2.1.431 92 3/6/2024
2.1.430 93 3/6/2024
2.1.429 77 3/4/2024
2.1.428 86 3/4/2024
2.1.427 83 3/4/2024
2.1.426 65 3/4/2024
2.1.425 81 3/4/2024
2.1.424 82 3/4/2024
2.1.423 82 3/4/2024
2.1.422 80 3/4/2024
2.1.421 81 3/4/2024
2.1.420 80 3/4/2024
2.1.419 79 3/4/2024
2.1.418 79 3/4/2024
2.1.417 77 3/4/2024
2.1.416 78 3/3/2024
2.1.415 76 3/3/2024
2.1.414 87 3/3/2024
2.1.413 78 3/3/2024
2.1.412 84 3/3/2024
2.1.411 78 3/3/2024
2.1.410 85 3/3/2024
2.1.409 70 3/3/2024
2.1.408 80 3/3/2024
2.1.407 85 3/3/2024
2.1.406 81 3/2/2024
2.1.405 76 3/2/2024
2.1.404 81 3/2/2024
2.1.403 76 3/2/2024
2.1.402 78 3/2/2024
2.1.401 83 3/2/2024
2.1.400 79 3/2/2024
2.1.399 73 3/2/2024
2.1.398 80 3/2/2024
2.1.397 73 3/2/2024
2.1.396 87 3/2/2024
2.1.395 72 3/2/2024
2.1.394 83 3/2/2024
2.1.393 69 3/2/2024
2.1.392 81 3/1/2024
2.1.391 75 3/1/2024
2.1.390 79 3/1/2024
2.1.389 72 2/29/2024
2.1.388 80 2/29/2024
2.1.387 73 2/29/2024
2.1.386 75 2/29/2024
2.1.385 72 2/29/2024
2.1.384 75 2/29/2024
2.1.383 73 2/29/2024
2.1.382 73 2/29/2024
2.1.381 80 2/29/2024
2.1.380 70 2/29/2024
2.1.379 82 2/29/2024
2.1.378 70 2/29/2024
2.1.377 69 2/29/2024
2.1.376 74 2/29/2024
2.1.375 77 2/29/2024
2.1.374 85 2/27/2024
2.1.373 84 2/27/2024
2.1.372 84 2/27/2024
2.1.371 90 2/27/2024
2.1.370 83 2/26/2024
2.1.369 84 2/26/2024
2.1.368 86 2/26/2024
2.1.367 80 2/26/2024
2.1.366 81 2/26/2024
2.1.365 83 2/26/2024
2.1.364 78 2/25/2024
2.1.363 84 2/25/2024
2.1.362 79 2/25/2024
2.1.361 82 2/25/2024
2.1.360 85 2/25/2024
2.1.359 80 2/25/2024
2.1.358 69 2/25/2024
2.1.357 82 2/25/2024
2.1.356 85 2/25/2024
2.1.355 79 2/25/2024
2.1.354 87 2/24/2024
2.1.353 88 2/24/2024
2.1.352 82 2/24/2024
2.1.351 79 2/24/2024
2.1.350 80 2/23/2024
2.1.349 83 2/23/2024
2.1.348 84 2/23/2024
2.1.347 94 2/22/2024
2.1.346 83 2/22/2024
2.1.345 87 2/22/2024
2.1.344 80 2/22/2024
2.1.343 84 2/22/2024
2.1.342 83 2/22/2024
2.1.341 79 2/22/2024
2.1.340 76 2/22/2024
2.1.339 79 2/22/2024
2.1.338 70 2/22/2024
2.1.337 68 2/22/2024
2.1.336 93 2/22/2024
2.1.335 83 2/22/2024
2.1.334 93 2/22/2024
2.1.333 90 2/22/2024
2.1.332 84 2/21/2024
2.1.331 86 2/21/2024
2.1.330 88 2/21/2024
2.1.329 83 2/21/2024
2.1.328 97 2/21/2024
2.1.327 85 2/21/2024
2.1.326 89 2/21/2024
2.1.325 86 2/21/2024
2.1.324 91 2/21/2024
2.1.323 93 2/21/2024
2.1.322 78 2/21/2024
2.1.321 72 2/21/2024
2.1.320 85 2/21/2024
2.1.319 80 2/21/2024
2.1.318 95 2/21/2024
2.1.317 79 2/21/2024
2.1.316 77 2/21/2024
2.1.315 85 2/20/2024
2.1.314 79 2/20/2024
2.1.313 84 2/20/2024
2.1.312 80 2/20/2024
2.1.311 93 2/20/2024
2.1.310 86 2/20/2024
2.1.309 88 2/20/2024
2.1.308 83 2/20/2024
2.1.307 85 2/20/2024
2.1.306 84 2/20/2024
2.1.305 89 2/20/2024
2.1.304 86 2/20/2024
2.1.303 82 2/20/2024
2.1.302 77 2/20/2024
2.1.301 78 2/19/2024
2.1.300 83 2/19/2024
2.1.299 77 2/19/2024
2.1.298 88 2/19/2024
2.1.297 79 2/19/2024
2.1.296 80 2/19/2024
2.1.295 90 2/19/2024
2.1.294 79 2/19/2024
2.1.293 92 2/19/2024
2.1.292 80 2/19/2024
2.1.291 86 2/17/2024
2.1.290 84 2/17/2024
2.1.289 78 2/17/2024
2.1.288 76 2/17/2024
2.1.287 84 2/17/2024
2.1.286 82 2/17/2024
2.1.285 90 2/17/2024
2.1.284 88 2/17/2024
2.1.283 79 2/17/2024
2.1.282 85 2/17/2024
2.1.281 85 2/17/2024
2.1.280 84 2/17/2024
2.1.279 89 2/17/2024
2.1.278 90 2/16/2024
2.1.277 83 2/16/2024
2.1.276 85 2/16/2024
2.1.275 84 2/16/2024
2.1.274 84 2/16/2024
2.1.273 90 2/16/2024
2.1.272 84 2/16/2024
2.1.271 78 2/16/2024
2.1.270 82 2/16/2024
2.1.269 83 2/16/2024
2.1.268 84 2/16/2024
2.1.267 80 2/16/2024
2.1.266 87 2/16/2024
2.1.265 80 2/16/2024
2.1.264 83 2/14/2024
2.1.263 84 2/14/2024
2.1.262 83 2/14/2024
2.1.261 85 2/14/2024
2.1.260 80 2/14/2024
2.1.259 83 2/14/2024
2.1.258 80 2/14/2024
2.1.257 91 2/14/2024
2.1.256 85 2/14/2024
2.1.255 85 2/13/2024
2.1.254 83 2/13/2024
2.1.253 80 2/13/2024
2.1.252 83 2/13/2024
2.1.251 98 2/13/2024
2.1.250 89 2/13/2024
2.1.249 88 2/13/2024
2.1.248 88 2/13/2024
2.1.247 81 2/13/2024
2.1.246 83 2/13/2024
2.1.245 89 2/13/2024
2.1.244 86 2/13/2024
2.1.243 76 2/13/2024
2.1.242 77 2/13/2024
2.1.241 94 2/13/2024
2.1.240 90 2/12/2024
2.1.239 86 2/12/2024
2.1.238 78 2/12/2024
2.1.237 81 2/12/2024
2.1.236 80 2/12/2024
2.1.235 85 2/12/2024
2.1.234 83 2/12/2024
2.1.233 90 2/12/2024
2.1.232 84 2/12/2024
2.1.231 85 2/11/2024
2.1.230 87 2/11/2024
2.1.229 83 2/11/2024
2.1.228 88 2/11/2024
2.1.227 85 2/11/2024
2.1.226 80 2/11/2024
2.1.225 83 2/11/2024
2.1.224 85 2/11/2024
2.1.223 84 2/11/2024
2.1.222 82 2/11/2024
2.1.221 82 2/11/2024
2.1.220 86 2/11/2024
2.1.219 85 2/10/2024
2.1.218 84 2/10/2024
2.1.217 86 2/10/2024
2.1.216 89 2/10/2024
2.1.215 87 2/10/2024
2.1.214 84 2/10/2024
2.1.213 88 2/10/2024
2.1.212 86 2/10/2024
2.1.211 88 2/10/2024
2.1.210 81 2/10/2024
2.1.209 87 2/9/2024
2.1.208 81 2/9/2024
2.1.207 79 2/9/2024
2.1.206 87 2/9/2024
2.1.205 83 2/9/2024
2.1.204 84 2/9/2024
2.1.203 79 2/9/2024
2.1.202 82 2/9/2024
2.1.201 86 2/9/2024
2.1.200 87 2/9/2024
2.1.199 79 2/9/2024
2.1.198 85 2/9/2024
2.1.197 80 2/9/2024
2.1.196 81 2/9/2024
2.1.195 76 2/9/2024
2.1.194 88 2/8/2024
2.1.193 85 2/8/2024
2.1.192 89 2/8/2024
2.1.191 81 2/8/2024
2.1.190 76 2/8/2024
2.1.189 85 2/8/2024
2.1.188 82 2/8/2024
2.1.187 88 2/8/2024
2.1.186 86 2/8/2024
2.1.185 83 2/8/2024
2.1.184 84 2/8/2024
2.1.183 85 2/8/2024
2.1.182 86 2/8/2024
2.1.181 78 2/7/2024
2.1.180 72 2/7/2024
2.1.179 84 2/7/2024
2.1.178 79 2/7/2024
2.1.177 82 2/7/2024
2.1.176 82 2/7/2024
2.1.175 81 2/7/2024
2.1.174 78 2/7/2024
2.1.173 79 2/7/2024
2.1.172 78 2/7/2024
2.1.171 80 2/7/2024
2.1.170 80 2/7/2024
2.1.169 78 2/7/2024
2.1.168 80 2/7/2024
2.1.167 82 2/7/2024
2.1.166 84 2/6/2024
2.1.165 82 2/6/2024
2.1.164 83 2/6/2024
2.1.163 79 2/6/2024
2.1.162 77 2/6/2024
2.1.161 73 2/5/2024
2.1.160 74 2/5/2024
2.1.159 75 2/5/2024
2.1.158 72 2/5/2024
2.1.157 72 2/5/2024
2.1.156 76 2/5/2024
2.1.155 76 2/5/2024
2.1.154 74 2/5/2024
2.1.153 76 2/4/2024
2.1.152 76 2/4/2024
2.1.151 78 2/4/2024
2.1.150 72 2/4/2024
2.1.149 78 2/4/2024
2.1.148 76 2/4/2024
2.1.147 82 2/4/2024
2.1.146 75 2/4/2024
2.1.145 70 2/4/2024
2.1.144 78 2/4/2024
2.1.143 76 2/4/2024
2.1.142 85 2/3/2024
2.1.141 77 2/3/2024
2.1.140 77 2/3/2024
2.1.139 88 2/3/2024
2.1.138 79 2/3/2024
2.1.137 72 2/3/2024
2.1.136 71 2/3/2024
2.1.135 73 2/3/2024
2.1.134 74 2/3/2024
2.1.133 71 2/3/2024
2.1.132 74 2/3/2024
2.1.131 75 2/2/2024
2.1.130 79 1/31/2024
2.1.129 73 1/31/2024
2.1.128 79 1/31/2024
2.1.127 73 1/31/2024
2.1.126 74 1/31/2024
2.1.125 80 1/31/2024
2.1.124 69 1/31/2024
2.1.123 72 1/31/2024
2.1.122 74 1/31/2024
2.1.121 74 1/31/2024
2.1.120 73 1/31/2024
2.1.119 71 1/31/2024
2.1.118 77 1/30/2024
2.1.117 73 1/30/2024
2.1.116 77 1/30/2024
2.1.115 75 1/30/2024
2.1.114 77 1/30/2024
2.1.113 75 1/30/2024
2.1.112 77 1/30/2024
2.1.111 71 1/30/2024
2.1.110 75 1/30/2024
2.1.109 79 1/30/2024
2.1.108 75 1/29/2024
2.1.107 73 1/29/2024
2.1.106 72 1/29/2024
2.1.105 72 1/29/2024
2.1.104 74 1/29/2024
2.1.103 77 1/29/2024
2.1.102 71 1/29/2024
2.1.101 69 1/29/2024
2.1.100 70 1/29/2024
2.1.99 74 1/29/2024
2.1.98 71 1/29/2024
2.1.97 76 1/29/2024
2.1.96 70 1/29/2024
2.1.95 75 1/29/2024
2.1.94 77 1/28/2024
2.1.93 69 1/28/2024
2.1.92 71 1/28/2024
2.1.91 71 1/28/2024
2.1.90 75 1/28/2024
2.1.89 72 1/28/2024
2.1.88 76 1/28/2024
2.1.87 73 1/28/2024
2.1.86 77 1/28/2024
2.1.85 73 1/28/2024
2.1.84 80 1/28/2024
2.1.83 69 1/28/2024
2.1.82 69 1/28/2024
2.1.81 78 1/28/2024
2.1.80 72 1/28/2024
2.1.79 76 1/28/2024
2.1.78 70 1/28/2024
2.1.77 75 1/27/2024
2.1.76 71 1/27/2024
2.1.75 77 1/27/2024
2.1.74 70 1/27/2024
2.1.73 71 1/27/2024
2.1.72 72 1/27/2024
2.1.71 69 1/27/2024
2.1.70 76 1/27/2024
2.1.69 67 1/27/2024
2.1.68 73 1/27/2024
2.1.67 80 1/27/2024
2.1.66 73 1/27/2024
2.1.65 72 1/27/2024
2.1.64 71 1/27/2024
2.1.63 71 1/27/2024
2.1.62 76 1/27/2024
2.1.61 75 1/27/2024
2.1.60 72 1/27/2024
2.1.59 74 1/26/2024
2.1.58 72 1/26/2024
2.1.57 76 1/26/2024
2.1.56 76 1/26/2024
2.1.55 77 1/26/2024
2.1.54 73 1/26/2024
2.1.53 74 1/26/2024
2.1.52 78 1/26/2024
2.1.51 76 1/26/2024
2.1.50 74 1/26/2024
2.1.49 77 1/26/2024
2.1.48 79 1/26/2024
2.1.47 79 1/26/2024
2.1.46 74 1/26/2024
2.1.45 80 1/26/2024
2.1.44 77 1/25/2024
2.1.43 82 1/25/2024
2.1.42 77 1/25/2024
2.1.41 75 1/25/2024
2.1.40 76 1/25/2024
2.1.39 74 1/25/2024
2.1.38 75 1/25/2024
2.1.37 84 1/25/2024
2.1.36 73 1/25/2024
2.1.35 81 1/19/2024
2.1.34 80 1/19/2024
2.1.33 75 1/19/2024
2.1.32 79 1/19/2024
2.1.31 73 1/19/2024
2.1.30 83 1/19/2024
2.1.29 73 1/19/2024
2.1.28 82 1/19/2024
2.1.27 84 1/17/2024
2.1.26 77 1/17/2024
2.1.25 85 1/17/2024
2.1.24 78 1/17/2024
2.1.23 81 1/17/2024
2.1.22 78 1/16/2024
2.1.21 86 1/16/2024
2.1.20 86 1/16/2024
2.1.19 85 1/16/2024
2.1.18 85 1/16/2024
2.1.17 89 1/16/2024
2.1.16 80 1/16/2024
2.1.15 86 1/16/2024
2.1.14 82 1/16/2024
2.1.13 82 1/16/2024
2.1.12 80 1/15/2024
2.1.11 78 1/15/2024
2.1.10 91 1/15/2024
2.1.9 84 1/15/2024
2.1.8 94 1/15/2024
2.1.7 92 1/15/2024
2.1.6 81 1/15/2024
2.1.5 96 1/14/2024
2.1.4 92 1/13/2024
2.1.3 93 1/13/2024
2.1.2 88 1/13/2024
2.1.1 90 1/13/2024