Soenneker.Blazor.FilePond 2.1.656

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

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

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