Soenneker.Blazor.FilePond 2.1.984

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

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

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