@pokertools/evaluator 1.0.0 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,124 +1,250 @@
1
- # @pokertools/evaluator
1
+ # 🃏 @pokertools/evaluator
2
+
3
+ > **High-performance poker hand evaluator for 5, 6, and 7 card hands**
2
4
 
3
5
  [![npm version](https://img.shields.io/npm/v/@pokertools/evaluator.svg)](https://www.npmjs.com/package/@pokertools/evaluator)
4
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue.svg)](https://www.typescriptlang.org/)
5
8
 
6
- A lightning-fast, strongly-typed Poker Hand Evaluator for Node.js and the browser.
9
+ A blazing-fast poker hand evaluator using **perfect hash tables** and **lookup tables** for O(1) hand evaluation. Designed for Monte Carlo simulations and real-time poker applications.
7
10
 
8
- Capable of evaluating **over 16 million 7-card hands per second** on a standard CPU. This library uses a Perfect Hash algorithm (based on Cactus Kev/Paul Senzee) optimized specifically for the V8 JavaScript engine.
11
+ ---
9
12
 
10
- ## 🚀 Features
13
+ ## Performance
11
14
 
12
- - **Extreme Performance:** ~17M evaluations/sec (7-card hands).
13
- - **Zero Garbage Collection:** Uses static memory buffers to prevent GC overhead during Monte Carlo simulations.
14
- - **Flexible:** Supports 5, 6, and 7 card hands.
15
- - **TypeScript:** Written in strict TypeScript with full type definitions.
16
- - **Lightweight:** Zero runtime dependencies.
15
+ ```
16
+ ┌─────────────────────────────────────────────────────────────────────────────┐
17
+ │ BENCHMARK RESULTS │
18
+ ├─────────────────────────────────────────────────────────────────────────────┤
19
+ │ 5 cards: ~15-20 million evaluations/second │
20
+ │ 6 cards: ~12-15 million evaluations/second │
21
+ │ 7 cards: ~10-12 million evaluations/second │
22
+ ├─────────────────────────────────────────────────────────────────────────────┤
23
+ │ Memory footprint: ~2.5 MB (lookup tables) │
24
+ │ Algorithm: Perfect hash + suit hash + lookup tables │
25
+ │ Complexity: O(1) per evaluation │
26
+ └─────────────────────────────────────────────────────────────────────────────┘
27
+ ```
17
28
 
18
- ## ⚡ Benchmarks
29
+ ---
19
30
 
20
- Comparison of 7-card hand evaluation speed (Node.js V8):
31
+ ## 📦 Installation
21
32
 
22
- | Library | Input Type | Speed (Hands/Sec) | Relative Speed |
23
- | :------------------------ | :---------- | :---------------- | :------------- |
24
- | **@pokertools/evaluator** | **Integer** | **~17,900,000** | **100%** |
25
- | phe | Integer | ~16,550,000 | 92.5% |
26
- | poker-evaluator | String | ~1,390,000 | 7.7% |
27
- | pokersolver | String | ~73,000 | 0.4% |
33
+ ```bash
34
+ npm install @pokertools/evaluator
35
+ ```
28
36
 
29
- ### Raw Output
37
+ ```bash
38
+ yarn add @pokertools/evaluator
39
+ ```
30
40
 
31
- ```text
32
- 🃏 Starting Benchmark: 1000 random 7-card hands per cycle
33
- ----------------------------------------------------------------
34
- phe (Int) | 16,574,257 hands/sec | ±2.26%
35
- poker-evaluator (Str) | 1,375,495 hands/sec | ±0.33%
36
- pokersolver (Str) | 70,980 hands/sec | ±0.70%
37
- @pokertools (Int) | 17,915,292 hands/sec | ±1.56%
38
- ----------------------------------------------------------------
39
- 🚀 WINNER: @pokertools (Int)
41
+ ```bash
42
+ pnpm add @pokertools/evaluator
40
43
  ```
41
44
 
42
- _Benchmarks run on an M1 Air. Higher is better._
45
+ ---
43
46
 
44
- ## 📦 Installation
47
+ ## 🚀 Quick Start
45
48
 
46
- ```bash
47
- npm install @pokertools/evaluator
49
+ ```typescript
50
+ import {
51
+ evaluate,
52
+ evaluateStrings,
53
+ evaluateBoard,
54
+ rank,
55
+ rankBoard,
56
+ rankDescription,
57
+ HandRank,
58
+ } from "@pokertools/evaluator";
59
+
60
+ // Method 1: Evaluate card strings
61
+ const score = evaluateStrings(["As", "Kh", "Qd", "Jc", "Ts"]);
62
+ console.log(score); // Lower score = better hand
63
+
64
+ // Method 2: Evaluate board string
65
+ const score2 = evaluateBoard("As Kh Qd Jc Ts");
66
+
67
+ // Method 3: Get hand rank category
68
+ const handRank = rankBoard("As Kh Qd Jc Ts");
69
+ console.log(handRank); // 4 (Straight)
70
+ console.log(rankDescription(handRank)); // "Straight"
71
+ ```
72
+
73
+ ---
74
+
75
+ ## 📖 API Reference
76
+
77
+ ### Core Functions
78
+
79
+ #### `evaluate(codes: number[]): number`
80
+
81
+ Evaluates 5, 6, or 7 card integer codes. Returns a strength score where **lower is better**.
82
+
83
+ ```typescript
84
+ import { evaluate, getCardCode } from "@pokertools/evaluator";
85
+
86
+ // Convert cards to codes manually
87
+ const codes = [
88
+ getCardCode("As"), // 48
89
+ getCardCode("Kh"), // 45
90
+ getCardCode("Qd"), // 42
91
+ getCardCode("Jc"), // 39
92
+ getCardCode("Ts"), // 32
93
+ ];
94
+
95
+ const score = evaluate(codes);
96
+ // Royal flush will have score = 1 (best possible)
48
97
  ```
49
98
 
50
- ## 📖 Usage
99
+ ---
51
100
 
52
- ### 1. Basic Usage (Strings)
101
+ #### `evaluateStrings(cards: string[]): number`
53
102
 
54
- If you are building a UI or simple game logic, string inputs are easiest to work with.
103
+ Evaluates an array of card strings. Convenient but slightly slower than `evaluate()` due to parsing overhead.
55
104
 
56
105
  ```typescript
57
- import { evaluateBoard, rankBoard, rankDescription } from "@pokertools/evaluator";
106
+ import { evaluateStrings } from "@pokertools/evaluator";
107
+
108
+ // 5-card hand
109
+ const score5 = evaluateStrings(["As", "Ks", "Qs", "Js", "Ts"]);
58
110
 
59
- // 1. Get a raw strength score (lower is better)
60
- const score = evaluateBoard("Ah Kh Qh Jh Th 2c 3c");
61
- console.log(score); // 1 (Royal Flush is the lowest/best number)
111
+ // 6-card hand (best 5 of 6)
112
+ const score6 = evaluateStrings(["As", "Ks", "Qs", "Js", "Ts", "2h"]);
62
113
 
63
- // 2. Get the Rank Category (Enum)
64
- const rank = rankBoard("Ah As Ks Kd Qs Qd 2c");
65
- console.log(rankDescription(rank)); // "Two Pair"
114
+ // 7-card hand (Texas Hold'em)
115
+ const score7 = evaluateStrings(["As", "Ks", "Qs", "Js", "Ts", "2h", "3c"]);
66
116
  ```
67
117
 
68
- ### 2. High-Performance Usage (Integers)
118
+ ---
69
119
 
70
- If you are building an Equity Calculator or AI Solver, you should convert cards to integers **once** and pass integers around your system. This creates a 12x performance boost by skipping string parsing.
120
+ #### `evaluateBoard(board: string): number`
121
+
122
+ Evaluates a space-separated board string.
71
123
 
72
124
  ```typescript
73
- import { evaluate, getCardCode, rank, HandRank } from "@pokertools/evaluator";
125
+ import { evaluateBoard } from "@pokertools/evaluator";
74
126
 
75
- // Convert strings to integers once
76
- const holeCards = [getCardCode("As"), getCardCode("Ah")];
77
- const board = [getCardCode("Ks"), getCardCode("Kh"), getCardCode("Qs")];
127
+ // Standard Texas Hold'em (2 hole + 5 community)
128
+ const score = evaluateBoard("As Ks Qs Js Ts 2h 3c");
78
129
 
79
- // Combine arrays (Spread operator is fast enough for small arrays)
80
- const hand = [...holeCards, ...board];
130
+ // Just the board (5 community cards)
131
+ const boardScore = evaluateBoard("As Ks Qs Js Ts");
81
132
 
82
- // Evaluate
83
- const strength = evaluate(hand);
133
+ // Extra whitespace is handled
134
+ const score2 = evaluateBoard("As Ks Qs Js Ts");
135
+ ```
84
136
 
85
- // Check Rank
86
- if (rank(hand) === HandRank.FullHouse) {
87
- console.log("We have a boat!");
88
- }
137
+ ---
138
+
139
+ #### `rank(codes: number[]): HandRank`
140
+
141
+ Returns the hand rank category (0-8) for card integer codes.
142
+
143
+ ```typescript
144
+ import { rank, getCardCodes, HandRank } from "@pokertools/evaluator";
145
+
146
+ const codes = getCardCodes(["As", "Ah", "Ad", "Ac", "Kh"]);
147
+ const handRank = rank(codes);
148
+
149
+ console.log(handRank === HandRank.FourOfAKind); // true
89
150
  ```
90
151
 
91
- ## 📚 API Reference
152
+ ---
92
153
 
93
- ### Core Functions
154
+ #### `rankBoard(board: string): HandRank`
94
155
 
95
- #### `evaluate(codes: number[]): number`
156
+ Returns the hand rank category for a board string.
96
157
 
97
- The fastest evaluation method. Accepts an array of 5, 6, or 7 integers. Returns a raw score (lower is better).
158
+ ```typescript
159
+ import { rankBoard, HandRank } from "@pokertools/evaluator";
98
160
 
99
- - Royal Flush: 1
100
- - ...
101
- - Worst High Card: 7462
161
+ const handRank = rankBoard("As Ks Qs Js Ts");
162
+ console.log(handRank === HandRank.StraightFlush); // true
163
+ ```
102
164
 
103
- #### `evaluateStrings(cards: string[]): number`
165
+ ---
166
+
167
+ #### `rankDescription(rank: HandRank): string`
104
168
 
105
- Helper to evaluate an array of strings like `['Ah', 'Td', ...]`.
169
+ Returns the human-readable name of a hand rank.
106
170
 
107
- #### `evaluateBoard(board: string): number`
171
+ ```typescript
172
+ import { rankBoard, rankDescription } from "@pokertools/evaluator";
108
173
 
109
- Helper to evaluate a space-separated string like `"Ah Td 2c"`.
174
+ const handRank = rankBoard("As Ah Ad Kh Kd");
175
+ const name = rankDescription(handRank);
176
+ console.log(name); // "Full House"
177
+ ```
110
178
 
111
- ### Ranking Helpers
179
+ ---
112
180
 
113
- #### `rank(codes: number[]): HandRank`
181
+ ### Utility Functions
182
+
183
+ #### `getCardCode(cardStr: string): number`
184
+
185
+ Converts a 2-character card string to an integer code.
186
+
187
+ ```typescript
188
+ import { getCardCode } from "@pokertools/evaluator";
189
+
190
+ const aceOfSpades = getCardCode("As"); // 48
191
+ const kingOfHearts = getCardCode("Kh"); // 45
192
+ const tenOfDiamonds = getCardCode("Td"); // 34
193
+ const twoOfClubs = getCardCode("2c"); // 3
194
+ ```
195
+
196
+ **Card Format:**
197
+
198
+ ```
199
+ ┌─────────────────────────────────────────────────────────────────┐
200
+ │ CARD FORMAT: [Rank][Suit] │
201
+ ├─────────────────────────────────────────────────────────────────┤
202
+ │ Ranks: 2, 3, 4, 5, 6, 7, 8, 9, T, J, Q, K, A │
203
+ │ Suits: s (♠ spades), h (♥ hearts), d (♦ diamonds), c (♣ clubs) │
204
+ ├─────────────────────────────────────────────────────────────────┤
205
+ │ ⚠️ Rank must be UPPERCASE (T, J, Q, K, A) │
206
+ │ ⚠️ Suit must be LOWERCASE (s, h, d, c) │
207
+ └─────────────────────────────────────────────────────────────────┘
208
+ ```
209
+
210
+ ---
114
211
 
115
- Returns the `HandRank` enum (0-8) for a set of card integers.
212
+ #### `getCardCodes(cards: string[]): number[]`
116
213
 
117
- #### `HandRank` (Enum)
214
+ Converts an array of card strings to integer codes.
118
215
 
119
216
  ```typescript
120
- enum HandRank {
121
- StraightFlush = 0,
217
+ import { getCardCodes } from "@pokertools/evaluator";
218
+
219
+ const codes = getCardCodes(["As", "Kh", "Qd", "Jc", "Ts"]);
220
+ // [48, 45, 42, 39, 32]
221
+ ```
222
+
223
+ ---
224
+
225
+ #### `stringifyCardCode(code: number): string`
226
+
227
+ Converts an integer code back to a card string.
228
+
229
+ ```typescript
230
+ import { stringifyCardCode } from "@pokertools/evaluator";
231
+
232
+ stringifyCardCode(48); // "As"
233
+ stringifyCardCode(0); // "2s"
234
+ stringifyCardCode(51); // "Ac"
235
+ ```
236
+
237
+ ---
238
+
239
+ ### Constants & Types
240
+
241
+ #### `HandRank` Enum
242
+
243
+ ```typescript
244
+ import { HandRank } from "@pokertools/evaluator";
245
+
246
+ const enum HandRank {
247
+ StraightFlush = 0, // 🏆 Best
122
248
  FourOfAKind = 1,
123
249
  FullHouse = 2,
124
250
  Flush = 3,
@@ -126,34 +252,356 @@ enum HandRank {
126
252
  ThreeOfAKind = 5,
127
253
  TwoPair = 6,
128
254
  OnePair = 7,
129
- HighCard = 8,
255
+ HighCard = 8, // Worst
130
256
  }
131
257
  ```
132
258
 
133
- #### `rankDescription(rank: HandRank): string`
259
+ **Hand Rank Distribution (5-card hands):**
260
+
261
+ | Rank | Name | Count | Probability |
262
+ | ---- | --------------- | --------- | ----------- |
263
+ | 0 | Straight Flush | 40 | 0.00154% |
264
+ | 1 | Four of a Kind | 624 | 0.02401% |
265
+ | 2 | Full House | 3,744 | 0.14406% |
266
+ | 3 | Flush | 5,108 | 0.19654% |
267
+ | 4 | Straight | 10,200 | 0.39246% |
268
+ | 5 | Three of a Kind | 54,912 | 2.11285% |
269
+ | 6 | Two Pair | 123,552 | 4.75390% |
270
+ | 7 | One Pair | 1,098,240 | 42.25690% |
271
+ | 8 | High Card | 1,302,540 | 50.11774% |
272
+
273
+ ---
274
+
275
+ #### `HAND_RANK_DESCRIPTIONS`
276
+
277
+ Map of hand rank enums to human-readable names.
278
+
279
+ ```typescript
280
+ import { HAND_RANK_DESCRIPTIONS, HandRank } from "@pokertools/evaluator";
281
+
282
+ console.log(HAND_RANK_DESCRIPTIONS[HandRank.FullHouse]); // "Full House"
283
+ console.log(HAND_RANK_DESCRIPTIONS[HandRank.StraightFlush]); // "Straight Flush"
284
+ ```
285
+
286
+ ---
287
+
288
+ ## 🎯 Score System
289
+
290
+ The evaluator returns a **score** where **lower is better**:
291
+
292
+ ```
293
+ Score Range Hand Type
294
+ ───────────────────────────────────────
295
+ 1-10 Straight Flush (Royal Flush = 1)
296
+ 11-166 Four of a Kind
297
+ 167-322 Full House
298
+ 323-1599 Flush
299
+ 1600-1609 Straight
300
+ 1610-2467 Three of a Kind
301
+ 2468-3325 Two Pair
302
+ 3326-6185 One Pair
303
+ 6186-7462 High Card
304
+ ```
305
+
306
+ ### Comparing Hands
307
+
308
+ ```typescript
309
+ import { evaluateStrings } from "@pokertools/evaluator";
310
+
311
+ const royalFlush = evaluateStrings(["As", "Ks", "Qs", "Js", "Ts"]);
312
+ const straightFlush = evaluateStrings(["9h", "8h", "7h", "6h", "5h"]);
313
+ const fourOfAKind = evaluateStrings(["Ac", "Ah", "Ad", "As", "Kh"]);
314
+ const fullHouse = evaluateStrings(["Kh", "Kd", "Ks", "Qh", "Qd"]);
315
+
316
+ // Lower score wins
317
+ console.log(royalFlush); // 1
318
+ console.log(straightFlush); // 2-10
319
+ console.log(fourOfAKind); // 11-166
320
+ console.log(fullHouse); // 167-322
321
+
322
+ // Comparison
323
+ console.log(royalFlush < straightFlush); // true (royal beats straight flush)
324
+ console.log(fourOfAKind < fullHouse); // true (quads beat boat)
325
+ ```
326
+
327
+ ---
328
+
329
+ ## 🔧 Advanced Usage
330
+
331
+ ### Monte Carlo Simulation
332
+
333
+ ```typescript
334
+ import { evaluate } from "@pokertools/evaluator";
335
+
336
+ function monteCarloEquity(
337
+ heroHand: number[],
338
+ villainHand: number[],
339
+ board: number[],
340
+ simulations: number = 100000
341
+ ): number {
342
+ let wins = 0;
343
+ const deck = createDeck().filter(
344
+ (c) => !heroHand.includes(c) && !villainHand.includes(c) && !board.includes(c)
345
+ );
346
+
347
+ for (let i = 0; i < simulations; i++) {
348
+ const shuffled = shuffle(deck);
349
+ const remainingCards = 5 - board.length;
350
+ const runout = [...board, ...shuffled.slice(0, remainingCards)];
351
+
352
+ const heroScore = evaluate([...heroHand, ...runout]);
353
+ const villainScore = evaluate([...villainHand, ...runout]);
354
+
355
+ if (heroScore < villainScore) wins++;
356
+ else if (heroScore === villainScore) wins += 0.5;
357
+ }
358
+
359
+ return wins / simulations;
360
+ }
361
+ ```
362
+
363
+ ### Hand Range Analysis
364
+
365
+ ```typescript
366
+ import { evaluate, getCardCodes } from "@pokertools/evaluator";
367
+
368
+ function analyzeRange(
369
+ holeCards: string[],
370
+ board: string[],
371
+ range: string[][]
372
+ ): { wins: number; ties: number; losses: number } {
373
+ const heroCodes = getCardCodes(holeCards);
374
+ const boardCodes = getCardCodes(board);
375
+ const heroScore = evaluate([...heroCodes, ...boardCodes]);
376
+
377
+ let wins = 0,
378
+ ties = 0,
379
+ losses = 0;
380
+
381
+ for (const hand of range) {
382
+ const villainCodes = getCardCodes(hand);
383
+ const villainScore = evaluate([...villainCodes, ...boardCodes]);
384
+
385
+ if (heroScore < villainScore) wins++;
386
+ else if (heroScore === villainScore) ties++;
387
+ else losses++;
388
+ }
389
+
390
+ return { wins, ties, losses };
391
+ }
392
+ ```
393
+
394
+ ### Finding Best 5 from 7
395
+
396
+ The evaluator automatically finds the best 5-card hand from 6 or 7 cards:
397
+
398
+ ```typescript
399
+ import { evaluateStrings, rankBoard, rankDescription } from "@pokertools/evaluator";
400
+
401
+ // 7 cards: 2 hole cards + 5 community cards
402
+ const cards = ["As", "Kh", "Qs", "Js", "Ts", "2c", "3d"];
403
+ const score = evaluateStrings(cards);
404
+ const handRank = rankBoard(cards.join(" "));
405
+
406
+ console.log(rankDescription(handRank)); // "Straight" (A-K-Q-J-T)
407
+ // The 2c and 3d are ignored - best 5 cards selected automatically
408
+ ```
134
409
 
135
- Returns human-readable strings like "Full House" or "High Card".
410
+ ---
411
+
412
+ ## 🏗️ Architecture
413
+
414
+ ```
415
+ ┌─────────────────────────────────────────────────────────────────────────────┐
416
+ │ EVALUATOR ARCHITECTURE │
417
+ └─────────────────────────────────────────────────────────────────────────────┘
418
+
419
+ ┌──────────────┐
420
+ │ Input Cards │ "As", "Kh", "Qd"...
421
+ └──────┬───────┘
422
+
423
+
424
+ ┌──────────────┐
425
+ │ Card Parser │ getCardCode() → Integer encoding
426
+ │ │ Format: (RankIndex << 2) | SuitIndex
427
+ └──────┬───────┘
428
+ │ [48, 45, 42, 39, 32]
429
+
430
+ ┌──────────────────────────────────────────────────────────────┐
431
+ │ EVALUATOR CORE │
432
+ ├──────────────────────────────────────────────────────────────┤
433
+ │ │
434
+ │ ┌────────────────┐ ┌────────────────┐ │
435
+ │ │ Suit Hash │────▶│ Flush Check │ │
436
+ │ │ Detection │ │ SUITS_HASH[] │ │
437
+ │ └────────────────┘ └───────┬────────┘ │
438
+ │ │ │
439
+ │ ┌───────────────────────┼───────────────────┐ │
440
+ │ │ FLUSH │ NO FLUSH │ │
441
+ │ ▼ ▼ │ │
442
+ │ ┌────────────────┐ ┌────────────────┐ │ │
443
+ │ │ FLUSH_LOOKUP[] │ │ Quinary Hash │ │ │
444
+ │ │ 8192 entries │ │ hashQuinary() │ │ │
445
+ │ └───────┬────────┘ └───────┬────────┘ │ │
446
+ │ │ │ │ │
447
+ │ │ ┌───────┴────────┐ │ │
448
+ │ │ ▼ ▼ ▼ │ │
449
+ │ │ ┌─────────┬─────────┬─────────┐ │ │
450
+ │ │ │NO_FLUSH │NO_FLUSH │NO_FLUSH │ │ │
451
+ │ │ │ _5 │ _6 │ _7 │ │ │
452
+ │ │ │ 49205 │ 246520 │ 1070190 │ │ │
453
+ │ │ └────┬────┴────┬────┴────┬────┘ │ │
454
+ │ │ │ │ │ │ │
455
+ │ └─────────────┴─────────┴─────────┘ │ │
456
+ │ │ │ │
457
+ └──────────────────────────────┼──────────────────────┘ │
458
+ │ │
459
+ ▼ │
460
+ ┌──────────────┐ │
461
+ │ SCORE │ 1-7462 │
462
+ │ (lower=better)│ │
463
+ └──────────────┘ │
464
+ ```
136
465
 
137
466
  ### Card Encoding
138
467
 
139
- #### `getCardCode(cardStr: string): number`
468
+ ```
469
+ Card Integer = (RankIndex << 2) | SuitIndex
140
470
 
141
- Converts a card string (e.g., `"Ah"`) into the optimized integer format used by this library.
471
+ Rank Index: 2=0, 3=1, 4=2, 5=3, 6=4, 7=5, 8=6, 9=7, T=8, J=9, Q=10, K=11, A=12
472
+ Suit Index: s=0, h=1, d=2, c=3
142
473
 
143
- #### `stringifyCardCode(code: number): string`
474
+ Examples:
475
+ "2s" = (0 << 2) | 0 = 0
476
+ "2h" = (0 << 2) | 1 = 1
477
+ "As" = (12 << 2) | 0 = 48
478
+ "Ac" = (12 << 2) | 3 = 51
479
+ ```
480
+
481
+ ### Lookup Tables
482
+
483
+ | Table | Size | Purpose |
484
+ | -------------- | --------- | ----------------------------- |
485
+ | `FLUSH_LOOKUP` | 8,192 | Direct lookup for flush hands |
486
+ | `NO_FLUSH_5` | 49,205 | 5-card non-flush hands |
487
+ | `NO_FLUSH_6` | 246,520 | 6-card non-flush hands |
488
+ | `NO_FLUSH_7` | 1,070,190 | 7-card non-flush hands |
489
+ | `SUITS_HASH` | 8,192 | Suit hash detection |
490
+ | `DP_MATRIX` | ~3,500 | Perfect hash calculation |
491
+
492
+ ---
493
+
494
+ ## ⚠️ Important Notes
495
+
496
+ ### Thread Safety
497
+
498
+ ```typescript
499
+ /**
500
+ * ⚠️ NOT THREAD-SAFE / NOT RE-ENTRANT
501
+ *
502
+ * The evaluator uses static buffers for performance.
503
+ *
504
+ * ✅ SAFE:
505
+ * - Sequential calls
506
+ * - Async/await (yields between calls)
507
+ * - Different JavaScript contexts
508
+ *
509
+ * ❌ UNSAFE:
510
+ * - Recursive evaluate() calls
511
+ * - SharedArrayBuffer / Worker threads
512
+ * - Calling evaluate() from within evaluate()
513
+ */
514
+
515
+ // ✅ Safe: Sequential
516
+ const a = evaluate(hand1);
517
+ const b = evaluate(hand2);
518
+
519
+ // ✅ Safe: Async
520
+ for (const hand of hands) {
521
+ const score = evaluate(hand);
522
+ await saveToDatabase(score);
523
+ }
524
+
525
+ // ❌ UNSAFE: Recursive
526
+ function bad(cards) {
527
+ if (cards.length > 7) {
528
+ return evaluate(cards.slice(0, 7)); // DON'T DO THIS
529
+ }
530
+ return evaluate(cards);
531
+ }
532
+ ```
533
+
534
+ ### Input Validation
535
+
536
+ The evaluator does **not** validate for duplicate cards. Duplicate card detection is the responsibility of the game engine.
537
+
538
+ ```typescript
539
+ // ❌ No error thrown, but undefined behavior
540
+ evaluate([0, 0, 0, 0, 0]); // 5 identical cards
541
+
542
+ // ✅ Validate before calling
543
+ function safeEvaluate(codes: number[]): number {
544
+ const unique = new Set(codes);
545
+ if (unique.size !== codes.length) {
546
+ throw new Error("Duplicate cards detected");
547
+ }
548
+ return evaluate(codes);
549
+ }
550
+ ```
551
+
552
+ ### Card Format Requirements
553
+
554
+ ```typescript
555
+ // ✅ Correct format
556
+ getCardCode("As"); // Ace of spades
557
+ getCardCode("Td"); // Ten of diamonds
558
+ getCardCode("2c"); // Two of clubs
559
+
560
+ // ❌ Wrong format
561
+ getCardCode("as"); // Error: lowercase rank
562
+ getCardCode("AS"); // Error: uppercase suit
563
+ getCardCode("10h"); // Error: use "T" for 10
564
+ getCardCode("1s"); // Error: no "1" rank
565
+ ```
566
+
567
+ ---
568
+
569
+ ## 📊 Combinatorics Verification
570
+
571
+ The evaluator has been verified against all possible hand combinations:
572
+
573
+ | Cards | Combinations | Verified |
574
+ | ----- | ------------ | -------- |
575
+ | 5 | 2,598,960 | ✅ |
576
+ | 6 | 20,358,520 | ✅ |
577
+ | 7 | 133,784,560 | ✅ |
578
+
579
+ All hand frequencies match mathematically proven distributions.
580
+
581
+ ---
582
+
583
+ ## 🔗 Related Packages
584
+
585
+ | Package | Description |
586
+ | ------------------------------- | ---------------------- |
587
+ | [@pokertools/types](../types) | Type definitions |
588
+ | [@pokertools/engine](../engine) | Game state machine |
589
+ | [@pokertools/bench](../bench) | Performance benchmarks |
590
+
591
+ ---
144
592
 
145
- Converts an integer back into a readable string.
593
+ ## 📄 License
146
594
 
147
- ## 🧮 Algorithm
595
+ MIT © A.Aurelius
148
596
 
149
- This library implements the **Perfect Hash** algorithm.
597
+ ---
150
598
 
151
- 1. It first checks for a Flush using a bitmask OR operation.
152
- 2. If no flush, it calculates a unique prime-product hash (Quinary) based on the rank counts.
153
- 3. This hash is used as an index into a pre-computed DAG (Directed Acyclic Graph) lookup table to immediately return the hand strength.
599
+ ## 🙏 Credits
154
600
 
155
- This approach avoids expensive sorting or pattern matching operations found in slower libraries.
601
+ Algorithm based on the perfect hash technique pioneered by:
156
602
 
157
- ## License
603
+ - Cactus Kev's Poker Hand Evaluator
604
+ - Two Plus Two evaluator
605
+ - Senzee's 5-card evaluator
158
606
 
159
- MIT
607
+ Optimized for TypeScript with lookup table compression and static buffer reuse.
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2020.full.d.ts","../src/tables/bit-masks.ts","../src/tables/dp.ts","../src/tables/flush.ts","../src/tables/no-flush-5.ts","../src/tables/no-flush-6.ts","../src/tables/no-flush-7.ts","../src/core/hash.ts","../src/core/evaluator.ts","../src/utils/card.ts","../src/models/hand-rank.ts","../src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/deep-eql/index.d.ts","../../../node_modules/assertion-error/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/symbols/symbols.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/symbols/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/any/any.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/any/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped-key.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/async-iterator/async-iterator.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/async-iterator/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/readonly/readonly.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/readonly/readonly-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/readonly/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/readonly-optional/readonly-optional.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/readonly-optional/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/constructor/constructor.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/constructor/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/literal/literal.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/literal/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/enum/enum.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/enum/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/function/function.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/function/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/computed/computed.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/computed/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/never/never.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/never/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-evaluated.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intersect/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/union/union-type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/union/union-evaluated.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/union/union.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/union/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/recursive/recursive.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/recursive/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/unsafe/unsafe.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/unsafe/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/ref/ref.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/ref/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/tuple/tuple.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/tuple/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/error/error.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/error/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/string/string.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/string/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/boolean/boolean.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/boolean/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/number/number.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/number/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/integer/integer.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/integer/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/bigint/bigint.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/bigint/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/parse.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/finite.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/generate.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/syntax.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/pattern.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/template-literal.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/union.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/template-literal/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-property-keys.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-from-mapped-key.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/indexed/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/iterator/iterator.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/iterator/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/promise/promise.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/promise/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/sets/set.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/sets/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/mapped/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/optional/optional.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/optional/optional-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/optional/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/awaited/awaited.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/awaited/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-property-keys.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-property-entries.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/keyof/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/omit/omit-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/omit/omit.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/omit/omit-from-mapped-key.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/omit/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/pick/pick-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/pick/pick.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/pick/pick-from-mapped-key.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/pick/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/null/null.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/null/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/symbol/symbol.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/symbol/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/undefined/undefined.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/undefined/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/partial/partial.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/partial/partial-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/partial/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/regexp/regexp.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/regexp/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/record/record.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/record/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/required/required.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/required/required-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/required/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/transform/transform.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/transform/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/module/compute.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/module/infer.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/module/module.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/module/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/not/not.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/not/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/static/static.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/static/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/object/object.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/object/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/helpers/helpers.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/helpers/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/array/array.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/array/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/date/date.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/date/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/uint8array/uint8array.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/uint8array/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/unknown/unknown.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/unknown/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/void/void.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/void/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/schema/schema.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/schema/anyschema.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/schema/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/clone/type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/clone/value.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/clone/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/create/type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/create/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/argument/argument.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/argument/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/guard/kind.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/guard/type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/guard/value.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/guard/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/patterns/patterns.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/patterns/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/registry/format.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/registry/type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/registry/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/composite/composite.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/composite/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/const/const.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/const/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/constructor-parameters/constructor-parameters.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/constructor-parameters/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude-from-template-literal.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/exclude/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extends/extends-check.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extends/extends-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extends/extends.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extends/extends-from-mapped-key.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extends/extends-undefined.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extends/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extract/extract-from-template-literal.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extract/extract.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extract/extract-from-mapped-result.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/extract/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/instance-type/instance-type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/instance-type/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/instantiate/instantiate.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/instantiate/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/intrinsic-from-mapped-key.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/intrinsic.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/capitalize.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/lowercase.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/uncapitalize.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/uppercase.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/intrinsic/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/parameters/parameters.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/parameters/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/rest/rest.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/rest/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/return-type/return-type.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/return-type/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/type/json.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/type/javascript.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/type/type/index.d.ts","../../../node_modules/@sinclair/typebox/build/cjs/index.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/jest-mock/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/dispatcher1-wrapper.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileIdsList":[[65,281,346,354,358,361,363,364,365,378],[281,346,354,358,361,363,364,365,378],[271,281,346,354,358,361,363,364,365,378],[81,83,87,90,92,94,96,98,100,104,108,112,114,116,118,120,122,124,126,128,130,132,140,145,147,149,151,153,156,158,163,167,171,173,175,177,180,182,184,187,189,193,195,197,199,201,203,205,207,209,211,214,217,219,221,225,227,230,232,234,236,240,246,250,252,254,261,263,265,267,270,281,346,354,358,361,363,364,365,378],[81,214,281,346,354,358,361,363,364,365,378],[82,281,346,354,358,361,363,364,365,378],[220,281,346,354,358,361,363,364,365,378],[81,197,201,214,281,346,354,358,361,363,364,365,378],[202,281,346,354,358,361,363,364,365,378],[81,197,214,281,346,354,358,361,363,364,365,378],[86,281,346,354,358,361,363,364,365,378],[102,108,112,118,149,201,214,281,346,354,358,361,363,364,365,378],[157,281,346,354,358,361,363,364,365,378],[131,281,346,354,358,361,363,364,365,378],[125,281,346,354,358,361,363,364,365,378],[215,216,281,346,354,358,361,363,364,365,378],[214,281,346,354,358,361,363,364,365,378],[104,108,145,151,163,199,201,214,281,346,354,358,361,363,364,365,378],[231,281,346,354,358,361,363,364,365,378],[80,214,281,346,354,358,361,363,364,365,378],[101,281,346,354,358,361,363,364,365,378],[83,90,96,100,104,120,132,173,175,177,199,201,205,207,209,214,281,346,354,358,361,363,364,365,378],[233,281,346,354,358,361,363,364,365,378],[94,104,120,214,281,346,354,358,361,363,364,365,378],[235,281,346,354,358,361,363,364,365,378],[81,90,92,156,197,201,214,281,346,354,358,361,363,364,365,378],[93,281,346,354,358,361,363,364,365,378],[218,281,346,354,358,361,363,364,365,378],[212,281,346,354,358,361,363,364,365,378],[204,281,346,354,358,361,363,364,365,378],[81,96,214,281,346,354,358,361,363,364,365,378],[97,281,346,354,358,361,363,364,365,378],[121,281,346,354,358,361,363,364,365,378],[153,199,214,238,281,346,354,358,361,363,364,365,378],[140,214,238,281,346,354,358,361,363,364,365,378],[104,112,140,153,197,201,214,237,239,281,346,354,358,361,363,364,365,378],[237,238,239,281,346,354,358,361,363,364,365,378],[122,214,281,346,354,358,361,363,364,365,378],[96,153,199,201,214,243,281,346,354,358,361,363,364,365,378],[153,199,214,243,281,346,354,358,361,363,364,365,378],[112,153,197,201,214,242,244,281,346,354,358,361,363,364,365,378],[241,242,243,244,245,281,346,354,358,361,363,364,365,378],[153,199,214,248,281,346,354,358,361,363,364,365,378],[140,214,248,281,346,354,358,361,363,364,365,378],[104,112,140,153,197,201,214,247,249,281,346,354,358,361,363,364,365,378],[247,248,249,281,346,354,358,361,363,364,365,378],[99,281,346,354,358,361,363,364,365,378],[222,223,224,281,346,354,358,361,363,364,365,378],[81,83,87,90,94,96,100,102,104,108,112,114,116,118,120,124,126,128,130,132,140,147,149,153,156,173,175,177,182,184,189,193,195,199,203,205,207,209,211,214,221,281,346,354,358,361,363,364,365,378],[81,83,87,90,94,96,100,102,104,108,112,114,116,118,120,122,124,126,128,130,132,140,147,149,153,156,173,175,177,182,184,189,193,195,199,203,205,207,209,211,214,221,281,346,354,358,361,363,364,365,378],[104,199,214,281,346,354,358,361,363,364,365,378],[200,281,346,354,358,361,363,364,365,378],[141,142,143,144,281,346,354,358,361,363,364,365,378],[143,153,199,201,214,281,346,354,358,361,363,364,365,378],[141,145,153,199,214,281,346,354,358,361,363,364,365,378],[96,112,128,130,140,214,281,346,354,358,361,363,364,365,378],[102,104,108,112,114,118,120,141,142,144,153,199,201,203,214,281,346,354,358,361,363,364,365,378],[251,281,346,354,358,361,363,364,365,378],[94,104,214,281,346,354,358,361,363,364,365,378],[253,281,346,354,358,361,363,364,365,378],[87,90,92,94,100,108,112,120,147,149,156,184,199,203,209,214,221,281,346,354,358,361,363,364,365,378],[129,281,346,354,358,361,363,364,365,378],[105,106,107,281,346,354,358,361,363,364,365,378],[90,104,105,156,214,281,346,354,358,361,363,364,365,378],[104,105,214,281,346,354,358,361,363,364,365,378],[214,256,281,346,354,358,361,363,364,365,378],[255,256,257,258,259,260,281,346,354,358,361,363,364,365,378],[96,153,199,201,214,256,281,346,354,358,361,363,364,365,378],[96,112,140,153,214,255,281,346,354,358,361,363,364,365,378],[146,281,346,354,358,361,363,364,365,378],[159,160,161,162,281,346,354,358,361,363,364,365,378],[153,160,199,201,214,281,346,354,358,361,363,364,365,378],[108,112,114,120,151,199,201,203,214,281,346,354,358,361,363,364,365,378],[96,102,112,118,128,153,159,161,201,214,281,346,354,358,361,363,364,365,378],[95,281,346,354,358,361,363,364,365,378],[84,85,152,281,346,354,358,361,363,364,365,378],[81,199,214,281,346,354,358,361,363,364,365,378],[84,85,87,90,94,96,98,100,108,112,120,145,147,149,151,156,199,201,203,214,281,346,354,358,361,363,364,365,378],[87,90,94,98,100,102,104,108,112,118,120,145,147,156,158,163,167,171,180,184,187,189,199,201,203,214,281,346,354,358,361,363,364,365,378],[192,281,346,354,358,361,363,364,365,378],[87,90,94,98,100,108,112,114,118,120,147,156,184,197,199,201,203,214,281,346,354,358,361,363,364,365,378],[81,190,191,197,199,214,281,346,354,358,361,363,364,365,378],[103,281,346,354,358,361,363,364,365,378],[194,281,346,354,358,361,363,364,365,378],[172,281,346,354,358,361,363,364,365,378],[127,281,346,354,358,361,363,364,365,378],[198,281,346,354,358,361,363,364,365,378],[81,90,156,197,201,214,281,346,354,358,361,363,364,365,378],[164,165,166,281,346,354,358,361,363,364,365,378],[153,165,199,214,281,346,354,358,361,363,364,365,378],[153,165,199,201,214,281,346,354,358,361,363,364,365,378],[96,102,108,112,114,118,145,153,164,166,199,201,214,281,346,354,358,361,363,364,365,378],[154,155,281,346,354,358,361,363,364,365,378],[153,154,199,281,346,354,358,361,363,364,365,378],[81,153,155,201,214,281,346,354,358,361,363,364,365,378],[262,281,346,354,358,361,363,364,365,378],[100,104,120,214,281,346,354,358,361,363,364,365,378],[178,179,281,346,354,358,361,363,364,365,378],[153,178,199,201,214,281,346,354,358,361,363,364,365,378],[90,92,96,102,108,112,114,118,124,126,128,130,132,153,156,173,175,177,179,199,201,214,281,346,354,358,361,363,364,365,378],[226,281,346,354,358,361,363,364,365,378],[168,169,170,281,346,354,358,361,363,364,365,378],[153,169,199,214,281,346,354,358,361,363,364,365,378],[153,169,199,201,214,281,346,354,358,361,363,364,365,378],[96,102,108,112,114,118,145,153,168,170,199,201,214,281,346,354,358,361,363,364,365,378],[148,281,346,354,358,361,363,364,365,378],[91,281,346,354,358,361,363,364,365,378],[90,156,214,281,346,354,358,361,363,364,365,378],[88,89,281,346,354,358,361,363,364,365,378],[88,153,199,281,346,354,358,361,363,364,365,378],[81,89,153,201,214,281,346,354,358,361,363,364,365,378],[183,281,346,354,358,361,363,364,365,378],[81,83,96,98,104,112,124,126,128,130,140,182,197,199,201,214,281,346,354,358,361,363,364,365,378],[113,281,346,354,358,361,363,364,365,378],[117,281,346,354,358,361,363,364,365,378],[81,116,197,214,281,346,354,358,361,363,364,365,378],[181,281,346,354,358,361,363,364,365,378],[228,229,281,346,354,358,361,363,364,365,378],[185,186,281,346,354,358,361,363,364,365,378],[153,185,199,201,214,281,346,354,358,361,363,364,365,378],[90,92,96,102,108,112,114,118,124,126,128,130,132,153,156,173,175,177,186,199,201,214,281,346,354,358,361,363,364,365,378],[264,281,346,354,358,361,363,364,365,378],[108,112,120,214,281,346,354,358,361,363,364,365,378],[266,281,346,354,358,361,363,364,365,378],[100,104,214,281,346,354,358,361,363,364,365,378],[83,87,94,96,98,100,108,112,114,118,120,124,126,128,130,132,140,147,149,173,175,177,182,184,195,199,203,205,207,209,211,212,281,346,354,358,361,363,364,365,378],[212,213,281,346,354,358,361,363,364,365,378],[81,281,346,354,358,361,363,364,365,378],[150,281,346,354,358,361,363,364,365,378],[196,281,346,354,358,361,363,364,365,378],[87,90,94,98,100,104,108,112,114,116,118,120,147,149,156,184,189,193,195,199,201,203,214,281,346,354,358,361,363,364,365,378],[123,281,346,354,358,361,363,364,365,378],[174,281,346,354,358,361,363,364,365,378],[80,281,346,354,358,361,363,364,365,378],[96,112,122,124,126,128,130,132,133,140,281,346,354,358,361,363,364,365,378],[96,112,122,126,133,134,140,201,281,346,354,358,361,363,364,365,378],[133,134,135,136,137,138,139,281,346,354,358,361,363,364,365,378],[122,281,346,354,358,361,363,364,365,378],[122,140,281,346,354,358,361,363,364,365,378],[96,112,124,126,128,132,140,201,281,346,354,358,361,363,364,365,378],[81,96,104,112,124,126,128,130,132,136,197,201,214,281,346,354,358,361,363,364,365,378],[96,112,138,197,201,281,346,354,358,361,363,364,365,378],[188,281,346,354,358,361,363,364,365,378],[119,281,346,354,358,361,363,364,365,378],[268,269,281,346,354,358,361,363,364,365,378],[87,94,100,132,147,149,158,175,177,182,205,207,211,214,221,236,252,254,263,267,268,281,346,354,358,361,363,364,365,378],[83,90,92,96,98,104,108,112,114,116,118,120,124,126,128,130,140,145,153,156,163,167,171,173,180,184,187,189,193,195,199,203,209,214,232,234,240,246,250,261,265,281,346,354,358,361,363,364,365,378],[206,281,346,354,358,361,363,364,365,378],[176,281,346,354,358,361,363,364,365,378],[109,110,111,281,346,354,358,361,363,364,365,378],[90,104,109,156,214,281,346,354,358,361,363,364,365,378],[104,109,214,281,346,354,358,361,363,364,365,378],[208,281,346,354,358,361,363,364,365,378],[115,281,346,354,358,361,363,364,365,378],[210,281,346,354,358,361,363,364,365,378],[65,66,67,68,69,281,346,354,358,361,363,364,365,378],[65,67,281,346,354,358,361,363,364,365,378],[71,72,281,346,354,358,361,363,364,365,378],[75,281,346,354,358,361,363,364,365,378],[76,281,346,354,358,361,363,364,365,378],[273,277,281,346,354,358,361,363,364,365,378],[281,343,344,346,354,358,361,363,364,365,378],[281,345,346,354,358,361,363,364,365,378],[346,354,358,361,363,364,365,378],[281,346,354,358,361,363,364,365,378,387],[281,346,347,352,354,357,358,361,363,364,365,367,378,383,396],[281,346,347,348,354,357,358,361,363,364,365,378],[281,346,349,354,358,361,363,364,365,378,397],[281,346,350,351,354,358,361,363,364,365,369,378],[281,346,351,354,358,361,363,364,365,378,383,393],[281,346,352,354,357,358,361,363,364,365,367,378],[281,345,346,353,354,358,361,363,364,365,378],[281,346,354,355,358,361,363,364,365,378],[281,346,354,356,357,358,361,363,364,365,378],[281,345,346,354,357,358,361,363,364,365,378],[281,346,354,357,358,359,361,363,364,365,378,383,396],[281,346,354,357,358,359,361,363,364,365,378,383,385,387],[281,333,346,354,357,358,360,361,363,364,365,367,378,383,396],[281,346,354,357,358,360,361,363,364,365,367,378,383,393,396],[281,346,354,358,360,361,362,363,364,365,378,383,393,396],[280,281,282,283,284,285,286,287,288,289,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404],[281,346,354,357,358,361,363,364,365,378],[281,346,354,358,361,363,365,378],[281,346,354,358,361,363,364,365,366,378,396],[281,346,354,357,358,361,363,364,365,367,378,383],[281,346,354,358,361,363,364,365,369,378],[281,346,354,358,361,363,364,365,370,378],[281,346,354,357,358,361,363,364,365,373,378],[281,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403],[281,346,354,358,361,363,364,365,375,378],[281,346,354,358,361,363,364,365,376,378],[281,346,351,354,358,361,363,364,365,367,378,387],[281,346,354,357,358,361,363,364,365,378,379],[281,346,354,358,361,363,364,365,378,380,397,400],[281,346,354,357,358,361,363,364,365,378,383,386,387],[281,346,354,358,361,363,364,365,378,384,387],[281,346,354,358,361,363,364,365,378,385],[281,346,354,358,361,363,364,365,378,387,397],[281,346,354,358,361,363,364,365,378,388],[281,343,346,354,358,361,363,364,365,378,383,390,396],[281,346,354,358,361,363,364,365,378,383,389],[281,346,354,357,358,361,363,364,365,378,391,392],[281,346,354,358,361,363,364,365,378,391,392],[281,346,351,354,358,361,363,364,365,367,378,383,393],[281,346,354,358,361,363,364,365,378,394],[281,346,354,358,361,363,364,365,367,378,395],[281,346,354,358,360,361,363,364,365,376,378,396],[281,346,354,358,361,363,364,365,378,397,398],[281,346,351,354,358,361,363,364,365,378,398],[281,346,354,358,361,363,364,365,378,383,399],[281,346,354,358,361,363,364,365,366,378,400],[281,346,354,358,361,363,364,365,378,401],[281,346,349,354,358,361,363,364,365,378],[281,346,351,354,358,361,363,364,365,378],[281,346,354,358,361,363,364,365,378,397],[281,333,346,354,358,361,363,364,365,378],[281,346,354,358,361,363,364,365,378,396],[281,346,354,358,361,363,364,365,378,402],[281,346,354,358,361,363,364,365,373,378],[281,346,354,358,361,363,364,365,378,392],[281,333,346,354,357,358,359,361,363,364,365,373,378,383,387,396,399,400,402],[281,346,354,358,361,363,364,365,378,383,403],[281,346,354,358,361,363,364,365,378,385,404],[281,346,354,358,361,363,364,365,378,406,407],[281,346,354,357,358,360,361,362,363,364,365,367,378,383,393,396,403,405],[281,346,354,358,361,363,364,365,378,411],[78,275,276,281,346,354,358,361,363,364,365,378],[273,281,346,354,358,361,363,364,365,378],[79,274,281,346,354,358,361,363,364,365,378],[272,281,346,354,358,361,363,364,365,378],[281,296,299,302,303,346,354,358,361,363,364,365,378,396],[281,299,346,354,358,361,363,364,365,378,383,396],[281,299,303,346,354,358,361,363,364,365,378,396],[281,346,354,358,361,363,364,365,378,383],[281,293,346,354,358,361,363,364,365,378],[281,297,346,354,358,361,363,364,365,378],[281,295,296,299,346,354,358,361,363,364,365,378,396],[281,346,354,358,361,363,364,365,367,378,393],[281,346,354,358,361,363,364,365,378,405],[281,293,346,354,358,361,363,364,365,378,405],[281,295,299,346,354,358,361,363,364,365,367,378,396],[281,290,291,292,294,298,346,354,357,358,361,363,364,365,378,383,396],[281,299,346,354,358,361,363,364,365,378],[281,299,308,317,346,354,358,361,363,364,365,378],[281,291,297,346,354,358,361,363,364,365,378],[281,299,327,328,346,354,358,361,363,364,365,378],[281,291,294,299,346,354,358,361,363,364,365,378,387,396,405],[281,295,299,346,354,358,361,363,364,365,378,396],[281,290,346,354,358,361,363,364,365,378],[281,293,294,295,297,298,299,300,301,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,328,329,330,331,332,346,354,358,361,363,364,365,378],[281,299,320,323,346,354,358,361,363,364,365,378],[281,299,308,310,311,346,354,358,361,363,364,365,378],[281,297,299,310,312,346,354,358,361,363,364,365,378],[281,298,346,354,358,361,363,364,365,378],[281,291,293,299,346,354,358,361,363,364,365,378],[281,299,303,310,312,346,354,358,361,363,364,365,378],[281,303,346,354,358,361,363,364,365,378],[281,297,299,302,346,354,358,361,363,364,365,378,396],[281,291,295,299,308,346,354,358,361,363,364,365,378],[281,299,320,346,354,358,361,363,364,365,378],[281,312,346,354,358,361,363,364,365,378],[281,291,295,299,303,346,354,358,361,363,364,365,378],[281,293,299,327,346,354,358,361,363,364,365,378,387,402,405],[54,55,56,57,58,59,60,281,346,354,358,361,363,364,365,378],[55,281,346,354,358,361,363,364,365,378],[61,62,63,281,346,354,358,361,363,364,365,378]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1305d1e76ca44e30fb8b2b8075fa522b83f60c0bcf5d4326a9d2cf79b53724f8","impliedFormat":1},{"version":"b075ac9e90ed56a547596133335f926eda887267c471aa7e45d33c70382288ba","signature":"0330df7dca26639378488e3f07620c171e4ff492d09827bbd563791eb0cce285"},{"version":"bec3f9f2832e7677f251adfe6166b1b5f95b68b1d8a6a15e5fdd868e0a8d3985","signature":"d12d4ca1595f15888fc8a020398cabb5bd67c609285acfa366824dcf9c7afeb6"},{"version":"e745f04102e3ca5bf615b67ddc6cf8bb12a8903f0015af761c9121dd9cbd02b2","signature":"9a804703f424101ebc20d4bd1f30644a4b29efff8a6d838fe5b86862f55546b9"},{"version":"0e723f9e09c4b005542d64e3e6e0cb88624c3030d7a300174c86850e869a197d","signature":"975cc26455dc6404a8758e1dd34dc243f189811ee0cc06fe684112d91bb063f5"},{"version":"dac2b370fe169b97095babcaa6a73ef55c092842551a8e8f3dbad80173ebe5e7","signature":"f249a786f0cec417b5a684f1b45d977f20c4cf631e6041954d179dfa3eda1b7a"},{"version":"06dee099219c62478f223a027377182dc87bc84f47f06733ebb1b2c8e4db33c3","signature":"ab144048351c9524803944ea38b3cff8d527168e2ef1c8307f8d26e0b875e75e"},{"version":"56233a437a5dca351fd9b3b04746cdf293ca7b71f5d3f53f7f15f61f33d889d1","signature":"3fb1ea5aa7aa1818a81ef0c986457cfc5c1d68ddb3bb1444de47ee77cec753cd"},{"version":"c3eb62064de4ead702608a306960c9096b16a1a71fec78a1314ba166b6aa87a9","signature":"57be780689ea085d80b1a8236466dfda1e433b09d36b9808e8690c588c4778aa"},{"version":"8519d14ca8f3ec519671bbd1966b092fb5edda0ee218749c4584ac975437b230","signature":"6ba52c4bbac233fec69f0f02bb1844ec3d54028e84e3d4205625521671f9d173"},{"version":"f9f416cbbe4b9eaa6ddc8d361ccb6895648b823ab58687fba9ae6faa492a250e","signature":"7ec90ed444c3b3ba04d9fc3c50d15513e03a807c7cda11487099b1cc3589af4a"},{"version":"d40a83ea0957264f5090b05a05fe68104b53f0ae5deb15882a27e4a57fd6f150","signature":"3c099f5a3656125c43d587278a5bcfcadb38619c7f848c4c0e20739c273787fb"},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"751764bb94219b4ce8f5475dc35d3de2e432fea01a0c9610cd7f69ad05e398c6","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","impliedFormat":1},{"version":"5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","impliedFormat":1},{"version":"efd20a1e335999efb44d19f01f9a74b2c40491c0539d9f14ed2bbded3f573654","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"b104e2da53231a529373174880dc0abfbc80184bb473b6bf2a9a0746bebb663d","impliedFormat":1},{"version":"ee91a5fbbd1627c632df89cce5a4054f9cc6e7413ebdccc82b27c7ffeedf982d","impliedFormat":1},{"version":"85c8731ca285809fc248abf21b921fe00a67b6121d27060d6194eddc0e042b1a","impliedFormat":1},{"version":"6bac0cbdf1bc85ae707f91fdf037e1b600e39fb05df18915d4ecab04a1e59d3c","impliedFormat":1},{"version":"5688b21a05a2a11c25f56e53359e2dcda0a34cb1a582dbeb1eaacdeca55cb699","impliedFormat":1},{"version":"35558bf15f773acbe3ed5ac07dd27c278476630d85245f176e85f9a95128b6e0","impliedFormat":1},{"version":"951f54e4a63e82b310439993170e866dba0f28bb829cbc14d2f2103935cea381","impliedFormat":1},{"version":"4454a999dc1676b866450e8cddd9490be87b391b5526a33f88c7e45129d30c5d","impliedFormat":1},{"version":"99013139312db746c142f27515a14cdebb61ff37f20ee1de6a58ce30d36a4f0d","impliedFormat":1},{"version":"71da852f38ac50d2ae43a7b7f2899b10a2000727fee293b0b72123ed2e7e2ad6","impliedFormat":1},{"version":"74dd1096fca1fec76b951cf5eacf609feaf919e67e13af02fed49ec3b77ea797","impliedFormat":1},{"version":"a0691153ccf5aa1b687b1500239722fff4d755481c20e16d9fcd7fb2d659c7c7","impliedFormat":1},{"version":"fe2201d73ae56b1b4946c10e18549a93bf4c390308af9d422f1ffd3c7989ffc8","impliedFormat":1},{"version":"cad63667f992149cee390c3e98f38c00eee56a2dae3541c6d9929641b835f987","impliedFormat":1},{"version":"f497cad2b33824d8b566fa276cfe3561553f905fdc6b40406c92bcfcaec96552","impliedFormat":1},{"version":"eb58c4dbc6fec60617d80f8ccf23900a64d3190fda7cfb2558b389506ec69be0","impliedFormat":1},{"version":"578929b1c1e3adaed503c0a0f9bda8ba3fea598cc41ad5c38932f765684d9888","impliedFormat":1},{"version":"7cc9d600b2070b1e5c220044a8d5a58b40da1c11399b6c8968711de9663dc6b2","impliedFormat":1},{"version":"45f36cf09d3067cd98b39a7d430e0e531f02911dd6d63b6d784b1955eef86435","impliedFormat":1},{"version":"80419a23b4182c256fa51d71cb9c4d872256ca6873701ceabbd65f8426591e49","impliedFormat":1},{"version":"5aa046aaab44da1a63d229bd67a7a1344afbd6f64db20c2bbe3981ceb2db3b07","impliedFormat":1},{"version":"ed9ad5b51c6faf9d6f597aa0ab11cb1d3a361c51ba59d1220557ef21ad5b0146","impliedFormat":1},{"version":"73db7984e8a35e6b48e3879a6d024803dd990022def2750b3c23c01eb58bc30f","impliedFormat":1},{"version":"c9ecb910b3b4c0cf67bc74833fc41585141c196b5660d2eb3a74cfffbf5aa266","impliedFormat":1},{"version":"33dcfba8a7e4acbe23974d342c44c36d7382c3d1d261f8aef28261a7a5df2969","impliedFormat":1},{"version":"de26700eb7277e8cfdde32ebb21b3d9ad1d713b64fdc2019068b857611e8f0c4","impliedFormat":1},{"version":"e481bd2c07c8e93eb58a857a9e66f22cb0b5ddfd86bbf273816fd31ef3a80613","impliedFormat":1},{"version":"ef156ba4043f6228d37645d6d9c6230a311e1c7a86669518d5f2ebc26e6559bf","impliedFormat":1},{"version":"457fd1e6d6f359d7fa2ca453353f4317efccae5c902b13f15c587597015212bc","impliedFormat":1},{"version":"473b2b42af720ebdb539988c06e040fd9600facdeb23cb297d72ee0098d8598f","impliedFormat":1},{"version":"22bc373ca556de33255faaddb373fec49e08336638958ad17fbd6361c7461eed","impliedFormat":1},{"version":"b3d58358675095fef03ec71bddc61f743128682625f1336df2fc31e29499ab25","impliedFormat":1},{"version":"5b1ef94b03042629c76350fe18be52e17ab70f1c3be8f606102b30a5cd86c1b3","impliedFormat":1},{"version":"a7b6046c44d5fda21d39b3266805d37a2811c2f639bf6b40a633b9a5fb4f5d88","impliedFormat":1},{"version":"80b036a132f3def4623aad73d526c6261dcae3c5f7013857f9ecf6589b72951f","impliedFormat":1},{"version":"0a347c2088c3b1726b95ccde77953bede00dd9dd2fda84585fa6f9f6e9573c18","impliedFormat":1},{"version":"8cc3abb4586d574a3faeea6747111b291e0c9981003a0d72711351a6bcc01421","impliedFormat":1},{"version":"0a516adfde610035e31008b170da29166233678216ef3646822c1b9af98879da","impliedFormat":1},{"version":"70d48a1faa86f67c9cb8a39babc5049246d7c67b6617cd08f64e29c055897ca9","impliedFormat":1},{"version":"df10dc6fe1c49e2f94be9d7d1e625aeb66e5eb90b2e0af1f378bfdfa5313155b","impliedFormat":1},{"version":"082b818038423de54be877cebdb344a2e3cf3f6abcfc48218d8acf95c030426a","impliedFormat":1},{"version":"813514ef625cb8fc3befeec97afddfb3b80b80ced859959339d99f3ad538d8fe","impliedFormat":1},{"version":"039cd54028eb988297e189275764df06c18f9299b14c063e93bd3f30c046fee6","impliedFormat":1},{"version":"e91cfd040e6da28427c5c4396912874902c26605240bdc3457cc75b6235a80f2","impliedFormat":1},{"version":"b4347f0b45e4788c18241ac4dee20ceab96d172847f1c11d42439d3de3c09a3e","impliedFormat":1},{"version":"16fe6721dc0b4144a0cdcef98857ee19025bf3c2a3cc210bcd0b9d0e25f7cec8","impliedFormat":1},{"version":"346d903799e8ea99e9674ba5745642d47c0d77b003cc7bb93e1d4c21c9e37101","impliedFormat":1},{"version":"3997421bb1889118b1bbfc53dd198c3f653bf566fd13c663e02eb08649b985c4","impliedFormat":1},{"version":"2d1ac54184d897cb5b2e732d501fa4591f751678717fd0c1fd4a368236b75cba","impliedFormat":1},{"version":"bade30041d41945c54d16a6ec7046fba6d1a279aade69dfdef9e70f71f2b7226","impliedFormat":1},{"version":"56fbea100bd7dd903dc49a1001995d3c6eee10a419c66a79cdb194bff7250eb7","impliedFormat":1},{"version":"fe8d26b2b3e519e37ceea31b1790b17d7c5ab30334ca2b56d376501388ba80d6","impliedFormat":1},{"version":"37ad0a0c2b296442072cd928d55ef6a156d50793c46c2e2497da1c2750d27c1e","impliedFormat":1},{"version":"be93d07586d09e1b6625e51a1591d6119c9f1cbd95718497636a406ec42babee","impliedFormat":1},{"version":"a062b507ed5fc23fbc5850fd101bc9a39e9a0940bb52a45cd4624176337ad6b8","impliedFormat":1},{"version":"cf01f601ef1e10b90cad69312081ce0350f26a18330913487a26d6d4f7ce5a73","impliedFormat":1},{"version":"a9de7b9a5deaed116c9c89ad76fdcc469226a22b79c80736de585af4f97b17cd","impliedFormat":1},{"version":"5bde81e8b0efb2d977c6795f9425f890770d54610764b1d8df340ce35778c4f8","impliedFormat":1},{"version":"20fd0402351907669405355eeae8db00b3cf0331a3a86d8142f7b33805174f57","impliedFormat":1},{"version":"da6949af729eca1ec1fe867f93a601988b5b206b6049c027d0c849301d20af6f","impliedFormat":1},{"version":"7008f240ea3a5a344be4e5f9b5dbf26721aad3c5cfef5ff79d133fa7450e48fa","impliedFormat":1},{"version":"eb13c8624f5747a845aea0df1dfde0f2b8f5ed90ca3bc550b12777797cb1b1e3","impliedFormat":1},{"version":"2452fc0f47d3b5b466bda412397831dd5138e62f77aa5e11270e6ca3ecb8328d","impliedFormat":1},{"version":"33c2ebbdd9a62776ca0091a8d1f445fa2ea4b4f378bc92f524031a70dfbeec86","impliedFormat":1},{"version":"3ac3a5b34331a56a3f76de9baf619def3f3073961ce0a012b6ffa72cf8a91f1f","impliedFormat":1},{"version":"d5e9d32cc9813a5290a17492f554999e33f1aa083a128d3e857779548537a778","impliedFormat":1},{"version":"776f49489fa2e461b40370e501d8e775ddb32433c2d1b973f79d9717e1d79be5","impliedFormat":1},{"version":"be94ea1bfaa2eeef1e821a024914ef94cf0cba05be8f2e7df7e9556231870a1d","impliedFormat":1},{"version":"40cd13782413c7195ad8f189f81174850cc083967d056b23d529199d64f02c79","impliedFormat":1},{"version":"05e041810faf710c1dcd03f3ffde100c4a744672d93512314b1f3cfffccdaf20","impliedFormat":1},{"version":"15a8f79b1557978d752c0be488ee5a70daa389638d79570507a3d4cfc620d49d","impliedFormat":1},{"version":"968ee57037c469cffb3b0e268ab824a9c31e4205475b230011895466a1e72da4","impliedFormat":1},{"version":"77debd777927059acbaf1029dfc95900b3ab8ed0434ce3914775efb0574e747b","impliedFormat":1},{"version":"921e3bd6325acb712cd319eaec9392c9ad81f893dead509ab2f4e688f265e536","impliedFormat":1},{"version":"60f6768c96f54b870966957fb9a1b176336cd82895ded088980fb506c032be1c","impliedFormat":1},{"version":"755d9b267084db4ea40fa29653ea5fc43e125792b1940f2909ec70a4c7f712d8","impliedFormat":1},{"version":"7e3056d5333f2d8a9e54324c2e2293027e4cd9874615692a53ad69090894d116","impliedFormat":1},{"version":"1e25b848c58ad80be5c31b794d49092d94df2b7e492683974c436bcdbefb983c","impliedFormat":1},{"version":"3df6fc700b8d787974651680ae6e37b6b50726cf5401b7887f669ab195c2f2ef","impliedFormat":1},{"version":"145df08c171ec616645a353d5eaa5d5f57a5fbce960a47d847548abd9215a99e","impliedFormat":1},{"version":"dcfd2ca9e033077f9125eeca6890bb152c6c0bc715d0482595abc93c05d02d92","impliedFormat":1},{"version":"8056fa6beb8297f160e13c9b677ba2be92ab23adfb6940e5a974b05acd33163b","impliedFormat":1},{"version":"86dda1e79020fad844010b39abb68fafed2f3b2156e3302820c4d0a161f88b03","impliedFormat":1},{"version":"dea0dcec8d5e0153d6f0eacebb163d7c3a4b322a9304048adffc6d26084054bd","impliedFormat":1},{"version":"2afd081a65d595d806b0ff434d2a96dc3d6dcd8f0d1351c0a0968568c6944e0b","impliedFormat":1},{"version":"b86259ab4b95ebe1aedb03d3eebea647f0bd9a706981220f00210487d70e77a0","impliedFormat":1},{"version":"2f1f7c65e8ee58e3e7358f9b8b3c37d8447549ecc85046f9405a0fc67fbdf54b","impliedFormat":1},{"version":"e3f3964ff78dee11a07ae589f1319ff682f62f3c6c8afa935e3d8616cf21b431","impliedFormat":1},{"version":"2762c2dbee294ffb8fdbcae6db32c3dae09e477d6a348b48578b4145b15d1818","impliedFormat":1},{"version":"78a1eace936ad32ca1c228814f3333cb2e826e1447e60fee181b3c53d43a8d07","impliedFormat":1},{"version":"24bd135b687da453ea7bd98f7ece72e610a3ff8ca6ec23d321c0e32f19d32db6","impliedFormat":1},{"version":"64d45d55ba6e42734ac326d2ea1f674c72837443eb7ff66c82f95e4544980713","impliedFormat":1},{"version":"f9b0dc747f13dcc09e40c26ddcc118b1bafc3152f771fdc32757a7f8916a11fc","impliedFormat":1},{"version":"7035fc608c297fd38dfe757d44d3483a570e2d6c8824b2d6b20294d617da64c6","impliedFormat":1},{"version":"22160a296186123d2df75280a1fab70d2105ce1677af1ebb344ffcb88eef6e42","impliedFormat":1},{"version":"9067b3fd7d71165d4c34fcbbf29f883860fd722b7e8f92e87da036b355a6c625","impliedFormat":1},{"version":"e01ab4b99cc4a775d06155e9cadd2ebd93e4af46e2723cb9361f24a4e1f178ef","impliedFormat":1},{"version":"9a13410635d5cc9c2882e67921c59fb26e77b9d99efa1a80b5a46fdc2954afce","impliedFormat":1},{"version":"b04862a4f44f78fd12ad8ed34ab81f9f254a87398568173694a78dc0bdebcd23","impliedFormat":1},{"version":"fa894bdddb2ba0e6c65ad0d88942cf15328941246410c502576124ef044746f9","impliedFormat":1},{"version":"59c5a06fa4bf2fa320a3c5289b6f199a3e4f9562480f59c0987c91dc135a1adf","impliedFormat":1},{"version":"456a9a12ad5d57af0094edf99ceab1804449f6e7bc773d85d09c56a18978a177","impliedFormat":1},{"version":"a8e2a77f445a8a1ce61bfd4b7b22664d98cf19b84ec6a966544d0decec18e143","impliedFormat":1},{"version":"6f6b0b477db6c4039410c7a13fe1ebed4910dedf644330269816df419cdb1c65","impliedFormat":1},{"version":"960b6e1edfb9aafbd560eceaae0093b31a9232ab273f4ed776c647b2fb9771da","impliedFormat":1},{"version":"530f4bee13cc07fd4e8bac69eeb728a6270ebafeab886c98624c699725b29755","impliedFormat":1},{"version":"a0db48d42371b223cea8fd7a41763d48f9166ecd4baecc9d29d9bb44cc3c2d83","impliedFormat":1},{"version":"aaf3c2e268f27514eb28255835f38445a200cd8bcfdff2c07c6227f67aaaf657","impliedFormat":1},{"version":"6ade56d2afdf75a9bd55cd9c8593ed1d78674804d9f6d9aba04f807f3179979e","impliedFormat":1},{"version":"b67acb619b761e91e3a11dddb98c51ee140361bc361eb17538f1c3617e3ec157","impliedFormat":1},{"version":"81b097e0f9f8d8c3d5fe6ba9dc86139e2d95d1e24c5ce7396a276dfbb2713371","impliedFormat":1},{"version":"692d56fff4fb60948fe16e9fed6c4c4eac9b263c06a8c6e63726e28ed4844fd4","impliedFormat":1},{"version":"f13228f2c0e145fc6dc64917eeef690fb2883a0ac3fa9ebfbd99616fd12f5629","impliedFormat":1},{"version":"d89b2b41a42c04853037408080a2740f8cd18beee1c422638d54f8aefe95c5b8","impliedFormat":1},{"version":"be5d39e513e3e0135068e4ebed5473ab465ae441405dce90ab95055a14403f64","impliedFormat":1},{"version":"97e320c56905d9fa6ac8bd652cea750265384f048505870831e273050e2878cc","impliedFormat":1},{"version":"9932f390435192eb93597f89997500626fb31005416ce08a614f66ec475c5c42","impliedFormat":1},{"version":"5d89ca552233ac2d61aee34b0587f49111a54a02492e7a1098e0701dedca60c9","impliedFormat":1},{"version":"1ee47a39f996d76442fe9777bb4446bd110f6828488db0e65cba817b4ffc5807","impliedFormat":1},{"version":"fdc4fd2c610b368104746960b45216bc32685927529dd871a5330f4871d14906","impliedFormat":1},{"version":"7b5d77c769a6f54ea64b22f1877d64436f038d9c81f1552ad11ed63f394bd351","impliedFormat":1},{"version":"4f7d54c603949113f45505330caae6f41e8dbb59841d4ae20b42307dc4579835","impliedFormat":1},{"version":"a71fd01a802624c3fce6b09c14b461cc7c7758aa199c202d423a7c89ad89943c","impliedFormat":1},{"version":"1ed0dc05908eb15f46379bc1cb64423760e59d6c3de826a970b2e2f6da290bf5","impliedFormat":1},{"version":"db89ef053f209839606e770244031688c47624b771ff5c65f0fa1ec10a6919f1","impliedFormat":1},{"version":"4d45b88987f32b2ac744f633ff5ddb95cd10f64459703f91f1633ff457d6c30d","impliedFormat":1},{"version":"8512fd4a480cd8ef8bf923a85ff5e97216fa93fb763ec871144a9026e1c9dade","impliedFormat":1},{"version":"2aa58b491183eedf2c8ae6ef9a610cd43433fcd854f4cc3e2492027fbe63f5ca","impliedFormat":1},{"version":"ce1f3439cb1c5a207f47938e68752730892fc3e66222227effc6a8b693450b82","impliedFormat":1},{"version":"295ce2cf585c26a9b71ba34fbb026d2b5a5f0d738b06a356e514f39c20bf38ba","impliedFormat":1},{"version":"342f10cf9ba3fbf52d54253db5c0ac3de50360b0a3c28e648a449e28a4ac8a8c","impliedFormat":1},{"version":"c485987c684a51c30e375d70f70942576fa86e9d30ee8d5849b6017931fccc6f","impliedFormat":1},{"version":"320bd1aa480e22cdd7cd3d385157258cc252577f4948cbf7cfdf78ded9d6d0a8","impliedFormat":1},{"version":"4ee053dfa1fce5266ecfae2bf8b6b0cb78a6a76060a1dcf66fb7215b9ff46b0b","impliedFormat":1},{"version":"1f84d8b133284b596328df47453d3b3f3817ad206cf3facf5eb64b0a2c14f6d7","impliedFormat":1},{"version":"5c75e05bc62bffe196a9b2e9adfa824ffa7b90d62345a766c21585f2ce775001","impliedFormat":1},{"version":"cc2eb5b23140bbceadf000ef2b71d27ac011d1c325b0fc5ecd42a3221db5fb2e","impliedFormat":1},{"version":"fd75cc24ea5ec28a44c0afc2f8f33da5736be58737ba772318ae3bdc1c079dc3","impliedFormat":1},{"version":"5ae43407346e6f7d5408292a7d957a663cc7b6d858a14526714a23466ac83ef9","impliedFormat":1},{"version":"c72001118edc35bbe4fff17674dc5f2032ccdbcc5bec4bd7894a6ed55739d31b","impliedFormat":1},{"version":"353196fd0dd1d05e933703d8dad664651ed172b8dfb3beaef38e66522b1e0219","impliedFormat":1},{"version":"670aef817baea9332d7974295938cf0201a2d533c5721fccf4801ba9a4571c75","impliedFormat":1},{"version":"3f5736e735ee01c6ecc6d4ab35b2d905418bb0d2128de098b73e11dd5decc34f","impliedFormat":1},{"version":"b64e159c49afc6499005756f5a7c2397c917525ceab513995f047cdd80b04bdf","impliedFormat":1},{"version":"f72b400dbf8f27adbda4c39a673884cb05daf8e0a1d8152eec2480f5700db36c","impliedFormat":1},{"version":"24509d0601fc00c4d77c20cacddbca6b878025f4e0712bddd171c7917f8cdcde","impliedFormat":1},{"version":"5f5baa59149d3d6d6cef2c09d46bb4d19beb10d6bee8c05b7850c33535b3c438","impliedFormat":1},{"version":"f17a51aae728f9f1a2290919cf29a927621b27f6ae91697aee78f41d48851690","impliedFormat":1},{"version":"be02e3c3cb4e187fd252e7ae12f6383f274e82288c8772bb0daf1a4e4af571ad","impliedFormat":1},{"version":"82ca40fb541799273571b011cd9de6ee9b577ef68acc8408135504ae69365b74","impliedFormat":1},{"version":"8fb6646db72914d6ef0692ea88b25670bbf5e504891613a1f46b42783ec18cce","impliedFormat":1},{"version":"b61efdebae3d131b6ad71bd2aa7cc4284e351481339bf66d84ee5ed86465bcc8","impliedFormat":1},{"version":"213aa21650a910d95c4d0bee4bb936ecd51e230c1a9e5361e008830dcc73bc86","impliedFormat":1},{"version":"874a8c5125ad187e47e4a8eacc809c866c0e71b619a863cc14794dd3ccf23940","impliedFormat":1},{"version":"c31db8e51e85ee67018ac2a40006910efbb58e46baea774cf1f245d99bf178b5","impliedFormat":1},{"version":"31fac222250b18ebac0158938ede4b5d245e67d29cd2ef1e6c8a5859d137d803","impliedFormat":1},{"version":"a9dfb793a7e10949f4f3ea9f282b53d3bd8bf59f5459bc6e618e3457ed2529f5","impliedFormat":1},{"version":"2a77167687b0ec0c36ef581925103f1dc0c69993f61a9dbd299dcd30601af487","impliedFormat":1},{"version":"0f23b5ce60c754c2816c2542b9b164d6cb15243f4cbcd11cfafcab14b60e04d0","impliedFormat":1},{"version":"813ce40a8c02b172fdbeb8a07fdd427ac68e821f0e20e3dc699fb5f5bdf1ef0a","impliedFormat":1},{"version":"5ce6b24d5fd5ebb1e38fe817b8775e2e00c94145ad6eedaf26e3adf8bb3903d0","impliedFormat":1},{"version":"6babca69d3ae17be168cfceb91011eed881d41ce973302ee4e97d68a81c514b4","impliedFormat":1},{"version":"3e0832bc2533c0ec6ffcd61b7c055adedcca1a45364b3275c03343b83c71f5b3","impliedFormat":1},{"version":"342418c52b55f721b043183975052fb3956dae3c1f55f965fedfbbf4ad540501","impliedFormat":1},{"version":"6a6ab1edb5440ee695818d76f66d1a282a31207707e0d835828341e88e0c1160","impliedFormat":1},{"version":"7e9b4669774e97f5dc435ddb679aa9e7d77a1e5a480072c1d1291892d54bf45c","impliedFormat":1},{"version":"de439ddbed60296fbd1e5b4d242ce12aad718dffe6432efcae1ad6cd996defd3","impliedFormat":1},{"version":"ce5fb71799f4dbb0a9622bf976a192664e6c574d125d3773d0fa57926387b8b2","impliedFormat":1},{"version":"b9c0de070a5876c81540b1340baac0d7098ea9657c6653731a3199fcb2917cef","impliedFormat":1},{"version":"cbc91ecd74d8f9ddcbcbdc2d9245f14eff5b2f6ae38371283c97ca7dc3c4a45f","impliedFormat":1},{"version":"3ca1d6f016f36c61a59483c80d8b9f9d50301fbe52a0dde288c1381862b13636","impliedFormat":1},{"version":"ecfef0c0ff0c80ac9a6c2fab904a06b680fb5dfe8d9654bb789e49c6973cb781","impliedFormat":1},{"version":"0ee2eb3f7c0106ccf6e388bc0a16e1b3d346e88ac31b6a5bbc15766e43992167","impliedFormat":1},{"version":"7a80da7b14bc7902b1da607c8b3734ad5740f8f5fade9a7bfbf753b9bba22652","impliedFormat":1},{"version":"7e46dd61422e5afe88c34e5f1894ae89a37b7a07393440c092e9dc4399820172","impliedFormat":1},{"version":"9df4f57d7279173b0810154c174aa03fd60f5a1f0c3acfe8805e55e935bdecd4","impliedFormat":1},{"version":"a02a51b68a60a06d4bd0c747d6fbade0cb87eefda5f985fb4650e343da424f12","impliedFormat":1},{"version":"0cf851e2f0ecf61cabe64efd72de360246bcb8c19c6ef7b5cbb702293e1ff755","impliedFormat":1},{"version":"0c0e0aaf37ab0552dffc13eb584d8c56423b597c1c49f7974695cb45e2973de6","impliedFormat":1},{"version":"e2e0cd8f6470bc69bbfbc5e758e917a4e0f9259da7ffc93c0930516b0aa99520","impliedFormat":1},{"version":"180de8975eff720420697e7b5d95c0ecaf80f25d0cea4f8df7fe9cf817d44884","impliedFormat":1},{"version":"424a7394f9704d45596dce70bd015c5afec74a1cc5760781dfda31bc300df88f","impliedFormat":1},{"version":"044a62b9c967ee8c56dcb7b2090cf07ef2ac15c07e0e9c53d99fab7219ee3d67","impliedFormat":1},{"version":"3903b01a9ba327aae8c7ea884cdabc115d27446fba889afc95fddca8a9b4f6e2","impliedFormat":1},{"version":"78fd8f2504fbfb0070569729bf2fe41417fdf59f8c3e975ab3143a96f03e0a4a","impliedFormat":1},{"version":"8afd4f91e3a060a886a249f22b23da880ec12d4a20b6404acc5e283ef01bdd46","impliedFormat":1},{"version":"72e72e3dea4081877925442f67b23be151484ef0a1565323c9af7f1c5a0820f0","impliedFormat":1},{"version":"fa8c21bafd5d8991019d58887add8971ccbe88243c79bbcaec2e2417a40af4e8","impliedFormat":1},{"version":"ab35597fd103b902484b75a583606f606ab2cef7c069fae6c8aca0f058cee77d","impliedFormat":1},{"version":"ca54ec33929149dded2199dca95fd8ad7d48a04f6e8500f3f84a050fa77fee45","impliedFormat":1},{"version":"cac7dcf6f66d12979cc6095f33edc7fbb4266a44c8554cd44cd04572a4623fd0","impliedFormat":1},{"version":"98af566e6d420e54e4d8d942973e7fbe794e5168133ad6658b589d9dfb4409d8","impliedFormat":1},{"version":"c9b868ce3c992a9f81fa8aa3d7839356d677c3f03c0b4584dce4ecd710ee601b","impliedFormat":1},{"version":"d421c4e4d70b03d8d05f993dd13a2c473c967b863438b167a8b3c01d4685a692","impliedFormat":1},{"version":"3bf23090b94bda18a619623d2652b48ea904e26304267b10fcbdb85e032b7351","impliedFormat":1},{"version":"d4d6aab35ead2fbdafc31c9b0cb8a5b5939c7d24c63356c979757194eaa282cf","impliedFormat":1},{"version":"f80aedd7cc51ccb70537fc79f07b44512e0ce43e2bf3dd350743bfb968cf26ce","impliedFormat":1},{"version":"b3202cfb0370950f175b9d1c1bebda95f0c62fee5fc2853f474aace51be42860","impliedFormat":1},{"version":"3e2f739bdfb6b194ae2af13316b4c5bb18b3fe81ac340288675f92ba2061b370","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"3ac40516c33b87f751f7507346933081a26cdb8a3e11a6b3aa07d23f803c85db","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"829bc57ee8f287b490ab5bbc5a962fca57e432c1e38ec680ecd3ecaf12800613","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"3a3ff14da53d5013f3e6d8c4ad55225e3649c08786c4421ce639c00d8d589b7d","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"d243db6b25788f439e7e2f03c05688e92f46764351673bb0e7b2f3631232e186","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"9ac977503f15bf13ca7c82ad9a32a782f42d43e474824e8b3bffe228fd5f2639","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"7cb4f431a4591b0e23002bed805dc871a874dfed6b9a3994dce68a6df73e6739","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"0828724f6c17d63075bc7bfdd2f22875c4d00f90a6d8ef16d2e718a9e5f7e135","affectsGlobalScope":true,"impliedFormat":1},{"version":"177459cba484e2f1e08872a3d2fdbca3162d9d43ca5ec9dc0c946835b55f74be","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"637e244cbc5174cce5482388be2b4b51c49f7ce6dead7316448da61d7aa283b1","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"afa8be176b15487addede2f996c733e8d33a23497e6efe01c3945f768cf79184","impliedFormat":1},{"version":"6a0de93048a43c4f492e1fe43cc4ec52eed57d4e03a07c78b2d502e20dbdcfd8","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"66e5d81f637da29b03689fbc84cc61f18c6fdde769b134e0649259384df453e2","impliedFormat":1},{"version":"f2bb6c145c2112b33fa26e7464c9c69212fd3fc163ee389230c22db39408ad1e","impliedFormat":1},{"version":"b02c915a1b0d9777a17e3249674735eec3f2fd929f0d63da84157aac7f9a4345","impliedFormat":1},{"version":"62e8f884c3bc6dff6189b6e662ebe8b238a645938f2df7a97b8a82fca56773a4","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"57a0d1b3d59063d4af2d3f8aac27cfe3c20a0f5d1faf0f8598ccf0b779637939","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"93ecf87143cac7b9d05cffc1d6bdc075b7e4fdd48ff05f1fad85043f6ae678d3","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"6f200afcb82b3e9a54bed6db23f2edf2508cd266801257312c0f124b47f2bdb9","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"39338f84e8c4d0e3de7b3c4a7024fb3925f42100eed5cbe73be58902799dff4d","impliedFormat":1},{"version":"f1c92c0b24d678486042dfc038c7c1d6e8520fe384b82155720a42a893204588","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"8413d0641f293aed551c7464615b770d34a02dedede889b9591172287d68e773","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"8bb351077998efc2d986a6a7373cba6f098a91a3679cefce3ba2aab90493161c","impliedFormat":1},{"version":"734665cf52eb63e20252412ca891601b1405f7c6abef6425f1939cbb15ed239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f36b3fbe2be150a9ca140da48593f21e6a8172004f92ddc549b43efec39f3e54","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"b4769767f13a1692a66186e01c3aa186ff808d5ff72ed36eda8c37738fb2ac92","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"ae6adca0538007af480cf43e20b1e7631c5321406bc515bff980a0d31252f79f","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"e47f532d6e1617833f13a5b0710c0089d402c89c2f2b54f324e5a20e418d287a","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"5cbb49cb13edc05e52b239329932cfde34323c6bfe33020e381faa97d2300b22","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"62e02b8bbc05076243cf153d10c27b3d886c7c08558dfb797f280d837881b3cd","impliedFormat":1},{"version":"045a210189ec63c5488410b33f9fca53d77d051599d0d6506d8048551399c5f3","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"3ead5b9bea1c59a375acdd494ac503f6e16a2b47cffbc31da1824fc17d023205","impliedFormat":1},{"version":"c9a2daf6cd1eb854cd5b9e424247c5e306692055738c2effd35f7871d942b76e","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"e423ccd43347320b61eea979368bd0e80785c0823995b4f46ec3c9b4dadcd45f","impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","impliedFormat":1},{"version":"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1},{"version":"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","impliedFormat":1},{"version":"26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","impliedFormat":1}],"root":[[54,64]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","preserveConstEnums":true,"removeComments":false,"rootDir":"../src","skipLibCheck":true,"strict":true,"target":7,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[67,1],[65,2],[78,2],[272,3],[271,4],[82,5],[83,6],[220,5],[221,7],[202,8],[203,9],[86,10],[87,11],[157,12],[158,13],[131,5],[132,14],[125,5],[126,15],[217,16],[215,17],[216,2],[231,18],[232,19],[101,20],[102,21],[233,22],[234,23],[235,24],[236,25],[93,26],[94,27],[219,28],[218,29],[204,5],[205,30],[97,31],[98,32],[121,2],[122,33],[239,34],[237,35],[238,36],[240,37],[241,38],[244,39],[242,40],[245,17],[243,41],[246,42],[249,43],[247,44],[248,45],[250,46],[99,26],[100,47],[225,48],[222,49],[223,50],[224,2],[200,51],[201,52],[145,53],[144,54],[142,55],[141,56],[143,57],[252,58],[251,59],[254,60],[253,61],[130,62],[129,5],[108,63],[106,64],[105,10],[107,65],[257,66],[261,67],[255,68],[256,69],[258,66],[259,66],[260,66],[147,70],[146,10],[163,71],[161,72],[162,17],[159,73],[160,74],[96,75],[95,5],[153,76],[84,5],[85,77],[152,78],[190,79],[193,80],[191,81],[192,82],[104,83],[103,5],[195,84],[194,10],[173,85],[172,5],[128,86],[127,5],[199,87],[198,88],[167,89],[166,90],[164,91],[165,92],[156,93],[155,94],[154,95],[263,96],[262,97],[180,98],[179,99],[178,100],[227,101],[226,2],[171,102],[170,103],[168,104],[169,105],[149,106],[148,10],[92,107],[91,108],[90,109],[89,110],[88,111],[184,112],[183,113],[114,114],[113,10],[118,115],[117,116],[182,117],[181,5],[228,2],[230,118],[229,2],[187,119],[186,120],[185,121],[265,122],[264,123],[267,124],[266,125],[213,126],[214,127],[212,128],[151,129],[150,2],[197,130],[196,131],[124,132],[123,5],[175,133],[174,5],[81,134],[80,2],[134,135],[135,136],[140,137],[133,138],[137,139],[136,140],[138,141],[139,142],[189,143],[188,10],[120,144],[119,10],[270,145],[269,146],[268,147],[207,148],[206,5],[177,149],[176,5],[112,150],[110,151],[109,10],[111,152],[209,153],[208,5],[116,154],[115,5],[211,155],[210,5],[70,156],[66,1],[68,157],[69,1],[73,158],[71,2],[74,2],[75,2],[76,159],[77,160],[278,161],[279,2],[343,162],[344,162],[345,163],[281,164],[346,165],[347,166],[348,167],[349,168],[350,169],[351,170],[352,171],[353,172],[354,173],[355,173],[356,174],[357,175],[358,176],[359,177],[282,2],[280,2],[360,178],[361,179],[362,180],[405,181],[363,182],[364,183],[365,182],[366,184],[367,185],[369,186],[370,187],[371,187],[372,187],[373,188],[374,189],[375,190],[376,191],[377,192],[378,193],[379,193],[380,194],[381,2],[382,2],[383,195],[384,196],[385,197],[386,195],[387,198],[388,199],[389,200],[390,201],[391,202],[392,203],[393,204],[394,205],[395,206],[396,207],[397,208],[398,209],[399,210],[400,211],[401,212],[283,182],[284,2],[285,213],[286,214],[287,2],[288,215],[289,2],[334,216],[335,217],[336,218],[337,218],[338,219],[339,2],[340,165],[341,220],[342,217],[402,221],[403,222],[404,223],[406,2],[408,224],[409,2],[410,225],[411,2],[412,226],[72,2],[368,2],[79,2],[407,2],[277,227],[274,228],[275,229],[276,2],[273,230],[51,2],[52,2],[10,2],[8,2],[9,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[53,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[1,2],[49,2],[50,2],[12,2],[11,2],[308,231],[322,232],[305,233],[323,234],[332,235],[296,236],[297,237],[295,238],[331,239],[326,240],[330,241],[299,242],[309,243],[319,244],[298,245],[329,246],[293,247],[294,240],[300,243],[301,2],[307,248],[304,243],[291,249],[333,250],[324,251],[312,252],[311,243],[313,253],[316,254],[310,255],[314,256],[327,239],[302,257],[303,258],[317,259],[292,234],[321,260],[320,243],[306,258],[315,261],[318,262],[325,2],[290,2],[328,263],[61,264],[60,265],[64,266],[63,2],[54,2],[55,2],[56,2],[57,2],[58,2],[59,2],[62,2]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
@@ -75,5 +75,7 @@ function getBoardCodes(board) {
75
75
  function stringifyCardCode(code) {
76
76
  const rank = code >> 2;
77
77
  const suit = code & 0b11;
78
- return (RANK_CHARS[rank] || "?") + (SUIT_CHARS[suit] || "?");
78
+ const rankChar = RANK_CHARS[rank] || "?";
79
+ const suitChar = SUIT_CHARS[suit] || "?";
80
+ return rankChar + suitChar;
79
81
  }
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@pokertools/evaluator",
3
- "version": "1.0.0",
3
+ "version": "1.0.4",
4
4
  "description": "High-performance Poker Hand Evaluator (5, 6, and 7 cards)",
5
+ "author": "A.Aurelius",
6
+ "license": "MIT",
5
7
  "main": "dist/index.js",
6
8
  "types": "dist/index.d.ts",
7
9
  "exports": {
@@ -17,9 +19,17 @@
17
19
  "README.md",
18
20
  "LICENSE"
19
21
  ],
22
+ "sideEffects": false,
20
23
  "scripts": {
21
24
  "build": "tsc",
22
- "test": "NODE_OPTIONS='--no-warnings' jest"
25
+ "build:watch": "tsc --watch",
26
+ "clean": "rm -rf dist coverage",
27
+ "typecheck": "tsc --noEmit",
28
+ "lint": "eslint . --ext .ts",
29
+ "lint:fix": "eslint . --ext .ts --fix",
30
+ "test": "NODE_OPTIONS='--no-warnings' jest",
31
+ "test:watch": "NODE_OPTIONS='--no-warnings' jest --watch",
32
+ "test:coverage": "NODE_OPTIONS='--no-warnings' jest --coverage"
23
33
  },
24
34
  "keywords": [
25
35
  "poker",
@@ -31,10 +41,10 @@
31
41
  "poker-hand",
32
42
  "poker-evaluator",
33
43
  "card-game",
34
- "performance"
44
+ "performance",
45
+ "fast",
46
+ "algorithm"
35
47
  ],
36
- "author": "A.Aurelius",
37
- "license": "MIT",
38
48
  "repository": {
39
49
  "type": "git",
40
50
  "url": "https://github.com/aaurelions/pokertools.git",
@@ -47,16 +57,7 @@
47
57
  "publishConfig": {
48
58
  "access": "public"
49
59
  },
50
- "devDependencies": {
51
- "@types/jest": "^30.0.0",
52
- "@types/node": "^24.10.1",
53
- "jest": "^30.2.0",
54
- "ts-jest": "^29.4.5",
55
- "typescript": "^5.9.3"
56
- },
57
- "overrides": {
58
- "glob": "^10.3.10",
59
- "inflight": "^1.0.6",
60
- "rimraf": "^5.0.5"
60
+ "engines": {
61
+ "node": ">=18.0.0"
61
62
  }
62
63
  }
@@ -1 +0,0 @@
1
- {"root":["../src/index.ts","../src/core/evaluator.ts","../src/core/hash.ts","../src/models/hand-rank.ts","../src/tables/bit-masks.ts","../src/tables/dp.ts","../src/tables/flush.ts","../src/tables/no-flush-5.ts","../src/tables/no-flush-6.ts","../src/tables/no-flush-7.ts","../src/utils/card.ts"],"version":"5.9.3"}