Soenneker.Blazor.FilePond 2.1.928

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.928                
NuGet\Install-Package Soenneker.Blazor.FilePond -Version 2.1.928                
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.928" />                
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.928                
#r "nuget: Soenneker.Blazor.FilePond, 2.1.928"                
#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.928

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

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

Add the following to your Startup.cs file

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

⚠ Do not include styles or scripts on the page as they get lazily injected automatically, including most plugins.

Usage

@using Soenneker.Blazor.FilePond

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

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

    private readonly FilePondOptions _options = new()
    {
        MaxFiles = 20,
        AllowMultiple = true,
        EnabledPlugins = [FilePondPluginType.ImagePreview]
    };

    protected override async Task OnAfterRenderAsync(bool firstRender)
    {
        if (firstRender)
        {
            await FilePond.AddFile("https://picsum.photos/500/500");
        }
    }

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