Soenneker.Validators.ExpiringKey 3.0.626

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Validators.ExpiringKey --version 3.0.626                
NuGet\Install-Package Soenneker.Validators.ExpiringKey -Version 3.0.626                
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.Validators.ExpiringKey" Version="3.0.626" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Validators.ExpiringKey --version 3.0.626                
#r "nuget: Soenneker.Validators.ExpiringKey, 3.0.626"                
#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.Validators.ExpiringKey as a Cake Addin
#addin nuget:?package=Soenneker.Validators.ExpiringKey&version=3.0.626

// Install Soenneker.Validators.ExpiringKey as a Cake Tool
#tool nuget:?package=Soenneker.Validators.ExpiringKey&version=3.0.626                

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.Validators.ExpiringKey

A validation module that checks for keys, stores them, expires them after an amount of time

Ideal for caching, session management, and more.

🚀 Features

  • Validate Key: Check if a key exists.
  • Add Key: Add a key with an expiration time.
  • Validate and Add: Validate if a key exists and add it if not.
  • Remove Key: Remove a key.

Installation

dotnet add package Soenneker.Validators.ExpiringKey

💻 Usage

IExpiringKeyValidator can be registered within DI, and injected:

public static async Task Main(string[] args)
{
    ...
    builder.Services.AddExpiringKeyValidatorAsSingleton();
}

or it can be initialized manually: new ExpiringKeyValidator().

Validate Key

Check if a key is present.

bool Validate(string key)

Add Key

Add a key with an expiration time.

void Add(string key, int expirationTimeMilliseconds)

Validate and Add Key

Validate a key and add it if it doesn't exist.

bool ValidateAndAdd(string key, int expirationTimeMilliseconds) // true if doesn't exist, false if it does

Remove Key

Remove a key.

void Remove(string key)

Example

var validator = new ExpiringKeyValidator();
validator.Add("key1", 5000); // 5 seconds

var invalid = validator.Validate("key1"); // false, key exists

await Task.Delay(7000); // wait 7 seconds

var validAfterTime = validator.Validate("key1"); // true, key does not exist
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
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
3.0.720 40 12/24/2024
3.0.719 36 12/24/2024
3.0.718 37 12/24/2024
3.0.717 36 12/24/2024
3.0.716 40 12/24/2024
3.0.715 36 12/24/2024
3.0.714 72 12/24/2024
3.0.713 63 12/24/2024
3.0.712 67 12/24/2024
3.0.711 68 12/24/2024
3.0.710 67 12/24/2024
3.0.709 66 12/24/2024
3.0.708 69 12/24/2024
3.0.707 66 12/24/2024
3.0.706 67 12/23/2024
3.0.705 65 12/23/2024
3.0.704 62 12/23/2024
3.0.703 69 12/23/2024
3.0.702 63 12/23/2024
3.0.701 61 12/23/2024
3.0.700 68 12/23/2024
3.0.699 78 12/23/2024
3.0.698 70 12/23/2024
3.0.697 61 12/23/2024
3.0.696 67 12/23/2024
3.0.695 65 12/23/2024
3.0.694 71 12/23/2024
3.0.693 67 12/23/2024
3.0.692 64 12/22/2024
3.0.691 64 12/22/2024
3.0.690 62 12/22/2024
3.0.689 65 12/22/2024
3.0.688 76 12/22/2024
3.0.687 68 12/22/2024
3.0.686 60 12/22/2024
3.0.685 63 12/22/2024
3.0.684 66 12/22/2024
3.0.683 68 12/22/2024
3.0.682 68 12/22/2024
3.0.681 82 12/22/2024
3.0.680 78 12/22/2024
3.0.679 68 12/22/2024
3.0.678 69 12/21/2024
3.0.677 75 12/21/2024
3.0.676 70 12/21/2024
3.0.675 67 12/21/2024
3.0.674 102 12/21/2024
3.0.673 65 12/21/2024
3.0.672 70 12/21/2024
3.0.671 68 12/21/2024
3.0.670 73 12/21/2024
3.0.669 74 12/21/2024
3.0.668 71 12/21/2024
3.0.667 72 12/21/2024
3.0.666 71 12/21/2024
3.0.665 68 12/21/2024
3.0.664 69 12/21/2024
3.0.663 64 12/20/2024
3.0.662 67 12/20/2024
3.0.661 76 12/20/2024
3.0.660 69 12/20/2024
3.0.659 72 12/20/2024
3.0.658 68 12/20/2024
3.0.657 71 12/20/2024
3.0.656 72 12/20/2024
3.0.655 72 12/20/2024
3.0.654 70 12/19/2024
3.0.653 67 12/19/2024
3.0.652 64 12/19/2024
3.0.651 67 12/19/2024
3.0.650 73 12/19/2024
3.0.649 80 12/19/2024
3.0.648 75 12/19/2024
3.0.647 81 12/18/2024
3.0.646 68 12/18/2024
3.0.645 77 12/18/2024
3.0.644 69 12/18/2024
3.0.643 62 12/17/2024
3.0.642 67 12/16/2024
3.0.641 56 12/16/2024
3.0.640 60 12/16/2024
3.0.639 72 12/10/2024
3.0.638 69 12/10/2024
3.0.637 64 12/10/2024
3.0.636 69 12/10/2024
3.0.635 64 12/10/2024
3.0.634 67 12/10/2024
3.0.633 66 12/10/2024
3.0.632 68 12/9/2024
3.0.631 66 12/9/2024
3.0.630 73 12/9/2024
3.0.629 77 12/9/2024
3.0.628 69 12/9/2024
3.0.627 73 12/9/2024
3.0.626 76 12/9/2024
3.0.625 76 12/9/2024
3.0.624 72 12/9/2024
3.0.623 73 12/7/2024
3.0.622 76 12/7/2024
3.0.621 71 12/7/2024
3.0.620 78 12/6/2024
3.0.619 73 12/6/2024
3.0.618 71 12/6/2024
3.0.617 77 12/6/2024
3.0.616 75 12/6/2024
3.0.615 73 12/6/2024
3.0.614 77 12/6/2024
3.0.613 76 12/6/2024
3.0.612 81 12/6/2024
3.0.611 88 12/6/2024
3.0.610 78 12/6/2024
3.0.609 76 12/6/2024
3.0.608 74 12/6/2024
3.0.607 83 12/6/2024
3.0.606 82 12/6/2024
3.0.605 76 12/6/2024
3.0.604 71 12/6/2024
3.0.603 79 12/6/2024
3.0.602 72 12/6/2024
3.0.601 81 12/6/2024
3.0.600 80 12/6/2024
3.0.599 76 12/6/2024
3.0.598 77 12/6/2024
3.0.597 83 12/6/2024
3.0.596 80 12/5/2024
3.0.595 80 12/5/2024
3.0.594 79 12/5/2024
3.0.593 73 12/5/2024
3.0.592 78 12/3/2024
3.0.591 76 12/3/2024
3.0.590 89 12/3/2024
3.0.589 82 12/3/2024
3.0.588 76 12/3/2024
3.0.587 67 12/3/2024
3.0.586 73 12/3/2024
3.0.585 63 12/3/2024
3.0.584 70 12/2/2024
3.0.583 68 12/2/2024
3.0.582 68 12/2/2024
3.0.581 71 12/2/2024
3.0.580 76 12/2/2024
3.0.579 66 12/2/2024
3.0.578 61 12/2/2024
3.0.577 78 12/2/2024
3.0.576 70 12/2/2024
3.0.575 74 12/2/2024
3.0.574 66 12/2/2024
3.0.573 75 12/1/2024
3.0.572 71 12/1/2024
3.0.571 76 12/1/2024
3.0.570 70 12/1/2024
3.0.569 82 12/1/2024
3.0.568 77 12/1/2024
3.0.567 76 12/1/2024
3.0.566 78 12/1/2024
3.0.565 75 11/29/2024
3.0.564 72 11/29/2024
3.0.563 76 11/29/2024
3.0.562 71 11/29/2024
3.0.561 74 11/29/2024
3.0.560 79 11/29/2024
3.0.559 82 11/29/2024
3.0.558 80 11/21/2024
3.0.557 78 11/21/2024
3.0.556 72 11/21/2024
3.0.555 79 11/21/2024
3.0.554 74 11/21/2024
3.0.553 82 11/20/2024
3.0.552 88 11/20/2024
3.0.551 82 11/20/2024
3.0.550 84 11/20/2024
3.0.549 79 11/20/2024
3.0.548 79 11/20/2024
3.0.547 76 11/20/2024
3.0.546 78 11/20/2024
3.0.545 77 11/20/2024
3.0.544 76 11/20/2024
3.0.543 81 11/19/2024
3.0.542 72 11/19/2024
3.0.541 70 11/19/2024
3.0.540 73 11/19/2024
3.0.539 76 11/19/2024
3.0.538 72 11/19/2024
3.0.537 71 11/19/2024
3.0.536 77 11/15/2024
3.0.535 80 11/15/2024
3.0.534 75 11/14/2024
3.0.533 74 11/14/2024
3.0.532 72 11/14/2024
3.0.531 74 11/14/2024
3.0.530 69 11/14/2024
3.0.529 76 11/14/2024
3.0.528 72 11/14/2024
3.0.527 74 11/14/2024
3.0.526 73 11/14/2024
3.0.525 65 11/14/2024
3.0.524 74 11/14/2024
3.0.523 71 11/14/2024
3.0.522 78 11/14/2024
3.0.521 74 11/14/2024
3.0.520 78 11/14/2024
3.0.519 79 11/14/2024
3.0.518 76 11/14/2024
3.0.517 78 11/14/2024
3.0.516 78 11/14/2024
3.0.515 73 11/14/2024
3.0.514 75 11/14/2024
3.0.513 86 11/14/2024
3.0.512 86 11/14/2024
2.1.511 79 11/13/2024
2.1.510 85 11/13/2024
2.1.509 81 11/13/2024
2.1.508 80 11/13/2024
2.1.507 78 11/13/2024
2.1.506 77 11/13/2024
2.1.505 81 11/13/2024
2.1.504 83 11/13/2024
2.1.503 77 11/13/2024
2.1.502 75 11/13/2024
2.1.501 84 11/12/2024
2.1.500 78 11/12/2024
2.1.499 76 11/12/2024
2.1.498 83 11/9/2024
2.1.497 91 11/9/2024
2.1.496 89 11/9/2024
2.1.495 85 11/9/2024
2.1.494 81 11/9/2024
2.1.493 86 11/9/2024
2.1.492 81 11/9/2024
2.1.491 83 11/9/2024
2.1.490 77 11/9/2024
2.1.489 87 11/9/2024
2.1.488 89 11/8/2024
2.1.487 77 11/8/2024
2.1.486 77 11/8/2024
2.1.485 77 11/8/2024
2.1.484 84 11/8/2024
2.1.483 82 11/8/2024
2.1.482 81 11/8/2024
2.1.481 85 11/8/2024
2.1.480 86 11/8/2024
2.1.479 77 11/6/2024
2.1.478 76 11/6/2024
2.1.477 84 11/1/2024
2.1.476 82 11/1/2024
2.1.475 81 11/1/2024
2.1.474 78 11/1/2024
2.1.473 85 10/29/2024
2.1.472 76 10/29/2024
2.1.471 88 10/29/2024
2.1.470 72 10/29/2024
2.1.469 82 10/29/2024
2.1.468 80 10/29/2024
2.1.467 83 10/29/2024
2.1.466 74 10/29/2024
2.1.465 75 10/29/2024
2.1.464 79 10/29/2024
2.1.463 77 10/29/2024
2.1.462 72 10/29/2024
2.1.461 81 10/28/2024
2.1.460 78 10/28/2024
2.1.459 83 10/26/2024
2.1.458 86 10/26/2024
2.1.457 85 10/26/2024
2.1.456 78 10/26/2024
2.1.455 83 10/26/2024
2.1.454 86 10/22/2024
2.1.453 74 10/22/2024
2.1.452 82 10/22/2024
2.1.451 79 10/22/2024
2.1.450 79 10/22/2024
2.1.449 82 10/22/2024
2.1.448 79 10/22/2024
2.1.447 74 10/22/2024
2.1.446 77 10/22/2024
2.1.445 75 10/22/2024
2.1.444 78 10/22/2024
2.1.443 118 10/18/2024
2.1.442 112 10/18/2024
2.1.441 86 10/17/2024
2.1.440 94 10/17/2024
2.1.439 86 10/17/2024
2.1.438 91 10/17/2024
2.1.437 84 10/15/2024
2.1.436 85 10/15/2024
2.1.435 74 10/15/2024
2.1.434 80 10/15/2024
2.1.433 85 10/14/2024
2.1.432 84 10/12/2024
2.1.431 87 10/12/2024
2.1.430 81 10/12/2024
2.1.429 83 10/12/2024
2.1.428 80 10/12/2024
2.1.427 88 10/11/2024
2.1.426 82 10/11/2024
2.1.425 88 10/11/2024
2.1.424 89 10/11/2024
2.1.423 89 10/11/2024
2.1.422 86 10/9/2024
2.1.421 83 10/9/2024
2.1.420 88 10/9/2024
2.1.419 81 10/9/2024
2.1.418 82 10/9/2024
2.1.417 79 10/9/2024
2.1.416 87 10/9/2024
2.1.415 79 10/9/2024
2.1.414 80 10/9/2024
2.1.413 72 10/9/2024
2.1.412 84 10/9/2024
2.1.411 84 10/9/2024
2.1.410 81 10/8/2024
2.1.409 82 10/8/2024
2.1.408 85 10/8/2024
2.1.407 81 10/8/2024
2.1.406 80 10/8/2024
2.1.405 93 10/8/2024
2.1.404 83 10/8/2024
2.1.403 98 10/8/2024
2.1.402 81 10/3/2024
2.1.401 81 10/3/2024
2.1.400 72 10/3/2024
2.1.399 82 10/3/2024
2.1.398 81 10/3/2024
2.1.397 81 10/3/2024
2.1.396 123 10/3/2024
2.1.395 77 10/3/2024
2.1.394 86 10/3/2024
2.1.393 78 10/3/2024
2.1.392 82 10/2/2024
2.1.391 77 10/2/2024
2.1.390 78 10/2/2024
2.1.389 82 10/2/2024
2.1.388 87 10/2/2024
2.1.387 79 10/2/2024
2.1.386 74 10/2/2024
2.1.385 85 10/2/2024
2.1.384 84 10/2/2024
2.1.383 87 10/1/2024
2.1.382 76 10/1/2024
2.1.381 79 10/1/2024
2.1.380 80 10/1/2024
2.1.379 80 10/1/2024
2.1.378 81 10/1/2024
2.1.377 78 10/1/2024
2.1.376 84 10/1/2024
2.1.375 83 10/1/2024
2.1.374 84 9/29/2024
2.1.373 82 9/29/2024
2.1.372 84 9/29/2024
2.1.371 79 9/29/2024
2.1.370 87 9/29/2024
2.1.369 87 9/29/2024
2.1.368 93 9/29/2024
2.1.367 83 9/29/2024
2.1.366 81 9/27/2024
2.1.365 85 9/27/2024
2.1.364 83 9/27/2024
2.1.363 83 9/27/2024
2.1.362 80 9/27/2024
2.1.361 84 9/27/2024
2.1.360 83 9/27/2024
2.1.359 87 9/27/2024
2.1.358 93 9/27/2024
2.1.357 79 9/27/2024
2.1.356 84 9/27/2024
2.1.355 79 9/27/2024
2.1.354 87 9/27/2024
2.1.353 80 9/27/2024
2.1.352 80 9/27/2024
2.1.351 86 9/27/2024
2.1.350 96 9/27/2024
2.1.349 79 9/27/2024
2.1.348 81 9/26/2024
2.1.347 85 9/26/2024
2.1.346 90 9/26/2024
2.1.345 82 9/26/2024
2.1.344 90 9/26/2024
2.1.343 85 9/26/2024
2.1.342 87 9/26/2024
2.1.341 85 9/26/2024
2.1.340 83 9/26/2024
2.1.339 81 9/26/2024
2.1.338 82 9/26/2024
2.1.337 88 9/26/2024
2.1.336 84 9/26/2024
2.1.335 79 9/26/2024
2.1.334 86 9/26/2024
2.1.333 92 9/24/2024
2.1.332 88 9/23/2024
2.1.331 78 9/23/2024
2.1.330 89 9/23/2024
2.1.329 88 9/23/2024
2.1.328 88 9/23/2024
2.1.327 81 9/23/2024
2.1.326 97 9/23/2024
2.1.325 79 9/23/2024
2.1.324 86 9/23/2024
2.1.323 89 9/23/2024
2.1.322 89 9/23/2024
2.1.321 82 9/23/2024
2.1.320 76 9/23/2024
2.1.319 84 9/23/2024
2.1.318 94 9/23/2024
2.1.317 79 9/23/2024
2.1.316 79 9/23/2024
2.1.315 90 9/23/2024
2.1.314 75 9/23/2024
2.1.313 77 9/23/2024
2.1.312 81 9/19/2024
2.1.311 80 9/18/2024
2.1.310 84 9/18/2024
2.1.309 84 9/18/2024
2.1.308 93 9/18/2024
2.1.307 88 9/18/2024
2.1.306 93 9/18/2024
2.1.305 89 9/17/2024
2.1.304 95 9/17/2024
2.1.303 91 9/17/2024
2.1.302 84 9/17/2024
2.1.301 92 9/17/2024
2.1.300 95 9/17/2024
2.1.299 91 9/17/2024
2.1.297 82 9/17/2024
2.1.296 113 9/17/2024
2.1.295 101 9/17/2024
2.1.294 104 9/17/2024
2.1.293 106 9/17/2024
2.1.292 100 9/17/2024
2.1.291 102 9/17/2024
2.1.290 102 9/17/2024
2.1.289 107 9/16/2024
2.1.288 97 9/16/2024
2.1.287 102 9/16/2024
2.1.286 107 9/16/2024
2.1.285 104 9/16/2024
2.1.284 101 9/16/2024
2.1.283 104 9/16/2024
2.1.282 109 9/12/2024
2.1.281 106 9/12/2024
2.1.280 116 9/12/2024
2.1.279 100 9/12/2024
2.1.278 105 9/12/2024
2.1.277 111 9/12/2024
2.1.276 102 9/12/2024
2.1.275 99 9/11/2024
2.1.274 102 9/11/2024
2.1.273 101 9/11/2024
2.1.272 109 9/11/2024
2.1.271 98 9/11/2024
2.1.269 109 9/11/2024
2.1.268 97 9/11/2024
2.1.267 104 9/11/2024
2.1.266 112 9/11/2024
2.1.265 100 9/11/2024
2.1.264 102 9/11/2024
2.1.263 103 9/10/2024
2.1.262 101 9/10/2024
2.1.261 111 9/10/2024
2.1.260 104 9/10/2024
2.1.259 105 9/10/2024
2.1.258 99 9/10/2024
2.1.257 90 9/10/2024
2.1.256 96 9/10/2024
2.1.255 90 9/10/2024
2.1.254 99 9/10/2024
2.1.253 99 9/10/2024
2.1.252 95 9/10/2024
2.1.251 95 9/10/2024
2.1.249 101 9/10/2024
2.1.248 91 9/10/2024
2.1.247 92 9/9/2024
2.1.246 95 9/9/2024
2.1.244 97 9/9/2024
2.1.243 104 9/9/2024
2.1.242 96 9/9/2024
2.1.241 97 9/9/2024
2.1.239 102 9/9/2024
2.1.238 89 9/9/2024
2.1.237 102 9/9/2024
2.1.236 102 9/9/2024
2.1.235 106 9/7/2024
2.1.234 106 9/7/2024
2.1.233 105 9/7/2024
2.1.232 100 9/7/2024
2.1.231 98 9/7/2024
2.1.230 98 9/7/2024
2.1.229 106 9/7/2024
2.1.228 97 9/7/2024
2.1.227 117 9/6/2024
2.1.226 109 9/6/2024
2.1.225 107 9/6/2024
2.1.224 105 9/6/2024
2.1.223 100 9/6/2024
2.1.222 109 9/6/2024
2.1.221 98 9/6/2024
2.1.220 104 9/6/2024
2.1.219 110 9/5/2024
2.1.218 100 9/5/2024
2.1.217 95 9/5/2024
2.1.216 90 9/5/2024
2.1.215 104 9/5/2024
2.1.214 101 9/5/2024
2.1.213 103 9/5/2024
2.1.212 100 9/5/2024
2.1.211 110 9/5/2024
2.1.210 98 9/5/2024
2.1.209 107 9/5/2024
2.1.208 103 9/5/2024
2.1.207 103 9/5/2024
2.1.206 100 9/5/2024
2.1.205 103 9/5/2024
2.1.204 102 9/5/2024
2.1.203 101 9/4/2024
2.1.202 103 9/4/2024
2.1.201 106 9/4/2024
2.1.200 100 9/4/2024
2.1.199 113 9/4/2024
2.1.198 106 9/3/2024
2.1.197 101 9/3/2024
2.1.196 104 9/3/2024
2.1.195 101 9/3/2024
2.1.194 102 9/3/2024
2.1.193 101 9/3/2024
2.1.192 78 9/3/2024
2.1.191 92 9/3/2024
2.1.190 108 9/3/2024
2.1.189 102 9/3/2024
2.1.188 99 9/3/2024
2.1.187 96 9/3/2024
2.1.186 93 9/3/2024
2.1.185 101 8/30/2024
2.1.184 105 8/29/2024
2.1.183 96 8/29/2024
2.1.182 98 8/29/2024
2.1.181 96 8/29/2024
2.1.180 92 8/29/2024
2.1.179 95 8/29/2024
2.1.178 101 8/26/2024
2.1.177 109 8/26/2024
2.1.176 108 8/26/2024
2.1.175 101 8/26/2024
2.1.174 100 8/26/2024
2.1.173 101 8/26/2024
2.1.172 111 8/26/2024
2.1.171 129 8/21/2024
2.1.170 129 8/21/2024
2.1.169 126 8/21/2024
2.1.168 125 8/21/2024
2.1.167 123 8/21/2024
2.1.166 120 8/21/2024
2.1.165 119 8/21/2024
2.1.164 117 8/21/2024
2.1.163 128 8/20/2024
2.1.162 122 8/20/2024
2.1.161 120 8/20/2024
2.1.160 112 8/20/2024
2.1.159 121 8/20/2024
2.1.158 99 8/20/2024
2.1.157 112 8/20/2024
2.1.156 103 8/20/2024
2.1.155 118 8/20/2024
2.1.154 114 8/20/2024
2.1.153 112 8/20/2024
2.1.152 112 8/20/2024
2.1.151 109 8/20/2024
2.1.150 114 8/19/2024
2.1.149 107 8/19/2024
2.1.148 120 8/15/2024
2.1.147 118 8/15/2024
2.1.146 122 8/15/2024
2.1.145 121 8/15/2024
2.1.144 118 8/15/2024
2.1.143 109 8/15/2024
2.1.142 119 8/14/2024
2.1.141 117 8/14/2024
2.1.140 97 8/14/2024
2.1.139 104 8/14/2024
2.1.138 99 8/14/2024
2.1.137 116 8/13/2024
2.1.136 83 8/7/2024
2.1.135 82 8/7/2024
2.1.134 107 8/7/2024
2.1.133 102 8/7/2024
2.1.132 100 8/7/2024
2.1.131 100 8/7/2024
2.1.130 86 8/7/2024
2.1.129 99 8/6/2024
2.1.128 83 8/6/2024
2.1.127 73 8/6/2024
2.1.126 77 8/1/2024
2.1.125 70 8/1/2024
2.1.124 66 8/1/2024
2.1.123 79 8/1/2024
2.1.122 72 8/1/2024
2.1.121 86 8/1/2024
2.1.120 78 8/1/2024
2.1.117 73 7/25/2024
2.1.116 89 7/25/2024
2.1.115 82 7/25/2024
2.1.114 83 7/25/2024
2.1.113 86 7/25/2024
2.1.112 82 7/25/2024
2.1.111 91 7/25/2024
2.1.110 91 7/25/2024
2.1.109 88 7/25/2024
2.1.108 83 7/25/2024
2.1.107 80 7/25/2024
2.1.106 92 7/24/2024
2.1.105 91 7/24/2024
2.1.103 102 7/24/2024
2.1.102 89 7/20/2024
2.1.101 81 7/20/2024
2.1.100 92 7/20/2024
2.1.99 92 7/20/2024
2.1.98 95 7/20/2024
2.1.97 88 7/20/2024
2.1.96 89 7/14/2024
2.1.95 80 7/14/2024
2.1.94 83 7/14/2024
2.1.93 66 7/14/2024
2.1.92 86 7/14/2024
2.1.91 83 7/14/2024
2.1.90 85 7/14/2024
2.1.89 86 7/14/2024
2.1.88 83 7/14/2024
2.1.87 77 7/14/2024
2.1.86 89 7/11/2024
2.1.85 86 7/10/2024
2.1.84 85 7/10/2024
2.1.83 84 7/10/2024
2.1.82 93 7/10/2024
2.1.81 86 7/10/2024
2.1.80 75 7/10/2024
2.1.79 92 7/10/2024
2.1.76 72 7/10/2024
2.1.75 94 7/10/2024
2.1.74 85 7/10/2024
2.1.73 86 7/10/2024
2.1.72 80 7/10/2024
2.1.71 93 7/10/2024
2.1.70 79 7/10/2024
2.1.69 81 7/10/2024
2.1.66 75 7/10/2024
2.1.65 94 7/10/2024
2.1.64 95 7/9/2024
2.1.61 62 7/9/2024
2.1.60 85 7/9/2024
2.1.59 85 7/9/2024
2.1.58 94 7/9/2024
2.1.57 88 7/9/2024
2.1.56 106 7/9/2024
2.1.55 107 7/9/2024
2.1.54 96 7/9/2024
2.1.53 90 7/9/2024
2.1.52 91 7/9/2024
2.1.51 91 7/9/2024
2.1.50 87 7/9/2024
2.1.49 82 7/9/2024
2.1.48 98 7/9/2024
2.1.47 86 7/9/2024
2.1.46 109 7/9/2024
2.1.45 106 7/8/2024
2.1.44 80 7/8/2024
2.1.43 97 7/8/2024
2.1.42 106 7/8/2024
2.1.41 88 7/8/2024
2.1.40 102 7/8/2024
2.1.39 82 7/8/2024
2.1.38 83 7/8/2024
2.1.37 108 7/7/2024
2.1.36 88 7/7/2024
2.1.35 103 7/7/2024
2.1.34 85 7/7/2024
2.1.33 113 7/3/2024
2.1.32 93 7/3/2024
2.1.31 117 7/3/2024
2.1.30 100 7/3/2024
2.1.29 103 7/3/2024
2.1.28 100 7/3/2024
2.1.27 96 7/3/2024
2.1.26 91 7/3/2024
2.1.25 91 7/3/2024
2.1.24 114 6/27/2024
2.1.23 118 6/27/2024
2.1.22 116 6/27/2024
2.1.21 112 6/27/2024
2.1.20 98 6/22/2024
2.1.19 106 6/22/2024
2.1.18 115 6/22/2024
2.1.17 106 6/22/2024
2.1.16 109 6/22/2024
2.1.15 107 6/16/2024
2.1.14 100 6/16/2024
2.1.13 144 6/15/2024
2.1.12 104 6/15/2024
2.1.11 86 6/15/2024
2.1.10 100 6/15/2024
2.1.9 117 6/15/2024
2.1.8 89 6/15/2024
2.1.7 97 6/15/2024
2.1.6 104 6/15/2024
2.1.5 86 6/15/2024
2.1.4 104 6/12/2024
2.1.3 91 6/12/2024