From d53c178d2698cee14394bbdac099c3d93131dbf1 Mon Sep 17 00:00:00 2001 From: Mike Kreiser Date: Tue, 31 Oct 2023 19:46:26 -0400 Subject: [PATCH 1/6] Greatly expand ScoringItem entries --- src/constants.js | 364 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 335 insertions(+), 29 deletions(-) diff --git a/src/constants.js b/src/constants.js index eb73ff3..52be4a2 100644 --- a/src/constants.js +++ b/src/constants.js @@ -116,67 +116,169 @@ export const nflTeamIdToNFLTeamAbbreviation = { /** * @typedef {object} ScoringItems * + * `scoringItemToId` and `scoringIdToItem` map between numerical ids and human-readable attribute + * names. While some attributes are straight-forward (yards, attempts, completions, etc.), some + * attributes are niche items such as ranges. + * + * Scoring items that are not configured or enabled in a league's settings may still be populated on + * API responses. + * + * There are several scoring categories scoring all have "per increment" scoring, i.e. points for + * every yards gained. The typically scoring pattern is something like 0.1 point per 1 yard. The + * point per 1 yard attribute does not include the "Per1Yard" suffix; only attributes like + * "Per5Yards" have the matching suffix. "Per5Yards" scoring means that 5 total yards gained is + * given 1 point, 9 total yards gained would be given 1 point, and 10 total yards gained given 2 + * points. + * + * Passing scoring items are typically only present for QBs, but position players (like RBs, WRs, + * TEs) will occasionally make a passing play as well. + * * Defensive yards allowed and points allowed are inclusive and only scored when their condition * is met. For example, if a DST allowed 360 yards, then `defensive350To399YardsAllowed` will be * scored (value is 1 when statistical) and the other defensive yard stats will not be populated. * - * @property {number} passingAttempts Total passing attempts (typically a QB stat). - * @property {number} passingCompletions Total passing completions (typically a QB stat). - * @property {number} passingIncompletions Total passing incompletions (typically a QB stat). - * @property {number} passingYards Total passing yards (typically a QB stat). - * @property {number} passingTouchdowns Total passing TDs (typically a QB stat). + * @property {number} passingAttempts Total passing attempts. + * @property {number} passingYards Total passing yards. + * @property {number} passingCompletions Total passing completions. + * @property {number} passingIncompletions Total passing incompletions. + * @property {number} passingCompletionPercentage Passing completions divided by passing attempts. + * This value is 0-100. + * @property {number} passingFirstDowns Total passes resulting in first downs. + * @property {number} passingTouchdowns Total passing TDs. + * @property {number} passing2PtConversion Total passing 2 point conversion. + * @property {number} passingInterceptions Total passing attempts resulting in an interception + * (typically negative points). + * @property {number} sacked Total times the passer is sacked. + * + * @property {number} passingYardsPer5Yards Passing yards scored in 5 yard increments. See summary + * note for more detail. + * @property {number} passingYardsPer10Yards Passing yards scored in 10 yard increments. See summary + * note for more. + * @property {number} passingYardsPer20Yards Passing yards scored in 20 yard increments. See summary + * note for more. + * @property {number} passingYardsPer25Yards Passing yards scored in 25 yard increments. See summary + * note for more. + * @property {number} passingYardsPer50Yards Passing yards scored in 50 yard increments. See summary + * note for more. + * @property {number} passingYardsPer100Yards Passing yards scored in 100 yard increments. See + * summary note for more. + * + * @property {number} passingCompletionsPer5Completions Passing completions scored in 5 completion + * increments. See summary note for more. + * @property {number} passingCompletionsPer10Completions Passing completions scored in 10 completion + * increments. See summary note for more. + * @property {number} passingIncompletionsPer5Incompletions Passing incompletions scored in 5 + * incompletion increments. See summary + * note for more. + * @property {number} passingIncompletionsPer10Incompletions Passing incompletions scored in 10 + * incompletion increments. See summary + * note for more. + * + * @property {number} passingYards300To399 If the player threw for 300-399 yards in the game. + * @property {number} passingYards400Plus If the player threw for 400+ yards in the game. * @property {number} passingTouchdowns40Plus Total number of passing touchdowns where the passing - * touchdown play was 40 yards or more (typically a QB - * stat). + * touchdown play was 40 yards or more. * @property {number} passingTouchdowns50Plus Total number of passing touchdowns where the passing - * touchdown play was 50 yards or more (typically a QB - * stat). - * @property {number} passing2PtConversion Total passing 2 point conversion (typically a QB stat). - * @property {number} passingInterceptions Total passing attempts resulting in an interception - * (typically negative points) (typically a QB stat). - * @property {number} passingCompletionPercentage Passing completions divided by passing attempts. - * This value is 0-100 (typically a QB stat). + * touchdown play was 50 yards or more. + * * * @property {number} rushingAttempts Total rushing attempts. * @property {number} rushingYards Total rushing yards. + * @property {number} rushingYardsPerAttempt Rushing yards divided by rushing attempts. + * @property {number} rushingFirstDowns Total rushes resulting in first downs. * @property {number} rushingTouchdowns Total rushing touchdowns. * @property {number} rushing2PtConversions Total rushing 2 point conversions. + * + * @property {number} rushingYardsPer5Yards Rushing yards scored in 5 yard increments. See summary + * note for more. + * @property {number} rushingYardsPer10Yards Rushing yards scored in 10 yard increments. See summary + * note for more. + * @property {number} rushingYardsPer20Yards Rushing yards scored in 20 yard increments. See summary + * note for more. + * @property {number} rushingYardsPer25Yards Rushing yards scored in 25 yard increments. See summary + * note for more. + * @property {number} rushingYardsPer50Yards Rushing yards scored in 50 yard increments. See summary + * note for more. + * @property {number} rushingYardsPer100Yards Rushing yards scored in 100 yard increments. See + * summary note for more. + * + * @property {number} rushingAttemptsPer5Attempts Rushing attempts scored in 5 attempt increments. + * See summary note for more. + * @property {number} rushingAttemptsPer10Attempts Rushing attempts scored in 10 attempt increments. + * See summary note for more. + * * @property {number} rushingTouchdowns40Plus Total number of rushing touchdowns where the rushing * touchdown play was 40 yards or more. * @property {number} rushingTouchdowns50Plus Total number of rushing touchdowns where the rushing * touchdown play was 50 yards or more. - * @property {number} rushingYardsPerAttempt Rushing yards divided by rushing attempts. + * @property {number} rushingGame100To199Yards Scored if the player rushes for 100-199 yards in a + * NFL game. + * @property {number} rushingGame200PlusYards Scored if the player rushes for 200+ yards in a NFL + * game. * + * @property {number} receivingTargets Total times the player was targeted on a pass, regardless + * if the pass was completed. + * @property {number} receivingReceptions Total receptions (only populated in PPR + * leagues). * @property {number} receivingYards Total receiving yards. + * @property {number} receivingFirstDowns Total catches resulting in first downs. * @property {number} receivingTouchdowns Total receiving touchdowns. + * @property {number} receivingYardsAfterCatch Total yards gained by the player after passes were + * caught. + * @property {number} receivingYardsPerReception Total yards divided by receptions. * @property {number} receiving2PtConversions Total receiving 2 point conversions. + * + * @property {number} receivingYardsPer5Yards Receiving yards scored in 5 yard increments. See + * summary note for more. + * @property {number} receivingYardsPer10Yards Receiving yards scored in 10 yard increments. See + * summary note for more. + * @property {number} receivingYardsPer20Yards Receiving yards scored in 20 yard increments. See + * summary note for more. + * @property {number} receivingYardsPer25Yards Receiving yards scored in 25 yard increments. See + * summary note for more. + * @property {number} receivingYardsPer50Yards Receiving yards scored in 50 yard increments. See + * summary note for more. + * @property {number} receivingYardsPer100Yards Receiving yards scored in 100 yard increments. See + * summary note for more. + * + * @property {number} receptionsPer5Receptions Receptions scored in 5 reception increments. See + * summary note for more. + * @property {number} receptionsPer10Receptions Receptions scored in 10 reception increments. See + * summary note for more. + * * @property {number} receivingTouchdowns40Plus Total number of receiving touchdowns where the * receiving touchdown play was 40 yards or more. * @property {number} receivingTouchdowns50Plus Total number of receiving touchdowns where the * receiving touchdown play was 50 yards or more. - * @property {number} receivingReceptions Total receptions (only populated in PPR - * leagues). - * @property {number} receivingTargets Total times the player was targeted on a pass, regardless - * if the pass was completed. - * @property {number} receivingYardsAfterCatch Total yards gained by the player after passes were - * caught. - * @property {number} receivingYardsPerReception Total yards divided by receptions. + * @property {number} receivingGame100To199Yards Scored if the player catches for 100-199 yards in a + * NFL game. + * @property {number} receivingGame200PlusYards Scored if the player catches for 200+ yards in a NFL + * game.) + * * * @property {number} fumbles Total fumbles, regardless of whether the fumble was recovered by the * opposing team (i.e "lost") or not * @property {number} lostFumbles Total fumbles lost (typically negative points) (applies to all * offensive players). - * @property {number} turnovers Total turnovers (typically fumbles and interceptions, possibly + * @property {number} totalTurnovers Total turnovers (typically fumbles and interceptions, possibly * safeties and downs as well?) * + * @property {number} madeFieldGoals Made field goal attempts (any distance). + * @property {number} attemptedFieldGoals Total field goal attempts (any distance). + * @property {number} missedFieldGoals Missed field goal attempts (any distance) + * (typically negative points). + * * @property {number} madeFieldGoalsFrom60Plus Total made field goals from 60 yards or further. * @property {number} madeFieldGoalsFrom50Plus Total made field goals from 50 yards or further. + * @property {number} madeFieldGoalsFrom50To59 Total made field goals from 50 yards to 59 yards. * @property {number} madeFieldGoalsFrom40To49 Total made field goals from 40 yards to 49 yards. * @property {number} madeFieldGoalsFromUnder40 Total made field goals from under 40 yards. * @property {number} attemptedFieldGoalsFrom60Plus Total attempted field goals from 60 yards or * further. * @property {number} attemptedFieldGoalsFrom50Plus Total attempted field goals from 50 yards or * further. + * @property {number} attemptedFieldGoalsFrom50To59 Total attempted field goals from 50 yards to + * 59 yards. * @property {number} attemptedFieldGoalsFrom40To49 Total attempted field goals from 40 yards to * 49 yards. * @property {number} attemptedFieldGoalsFromUnder40 Total attempted field goals from under 40 @@ -185,15 +287,57 @@ export const nflTeamIdToNFLTeamAbbreviation = { * further (typically negative or zero points). * @property {number} missedFieldGoalsFrom50Plus Total missed field goals from 50 yards or * further (typically negative or zero points). + * @property {number} missedFieldGoalsFrom50To59 Total missed field goals from 50 yards to 59 + * yards (typically negative or zero points). * @property {number} missedFieldGoalsFrom40To49 Total missed field goals from 40 yards to 49 * yards (typically negative or zero points). * @property {number} missedFieldGoalsFromUnder40 Total missed field goals from under 40 yards * (typically negative or zero points). * - * @property {number} madeFieldGoals Made field goal attempts (any distance). - * @property {number} attemptedFieldGoals Total field goal attempts (any distance). - * @property {number} missedFieldGoals Missed field goal attempts (any distance) - * (typically negative points). + * @property {number} fieldGoalMadeYards The total yards in distance of all made field goals scored + * in 1 yard increments. + * @property {number} fieldGoalMadeYardsPer5Yards The total yards in distance of all made field + * goals scored in 5 yard increments. + * @property {number} fieldGoalMadeYardsPer10Yards The total yards in distance of all made field + * goals scored in 10 yard increments. + * @property {number} fieldGoalMadeYardsPer20Yards The total yards in distance of all made field + * goals scored in 20 yard increments. + * @property {number} fieldGoalMadeYardsPer25Yards The total yards in distance of all made field + * goals scored in 25 yard increments. + * @property {number} fieldGoalMadeYardsPer50Yards The total yards in distance of all made field + * goals scored in 50 yard increments. + * @property {number} fieldGoalMadeYardsPer100Yards The total yards in distance of all made field + * goals scored in 100 yard increments. + * @property {number} fieldGoalMissedYards The total yards in distance of all missed field goals + * scored in 1 yard increments. + * @property {number} fieldGoalMissedYardsPer5Yards The total yards in distance of all missed field + * goals scored in 5 yard increments. + * @property {number} fieldGoalMissedYardsPer10Yards The total yards in distance of all missed field + * goals scored in 10 yard increments. + * @property {number} fieldGoalMissedYardsPer20Yards The total yards in distance of all missed field + * goals scored in 20 yard increments. + * @property {number} fieldGoalMissedYardsPer25Yards The total yards in distance of all missed field + * goals scored in 25 yard increments. + * @property {number} fieldGoalMissedYardsPer50Yards The total yards in distance of all missed field + * goals scored in 50 yard increments. + * @property {number} fieldGoalMissedYardsPer100Yards The total yards in distance of all missed + * field goals scored in 100 yard increments. + * @property {number} fieldGoalAttemptedYards The total yards in distance of all attempted field + * goals scored in 1 yard increments. + * @property {number} fieldGoalAttemptedYardsPer5Yards The total yards in distance of all attempted + * field goals scored in 5 yard increments. + * @property {number} fieldGoalAttemptedYardsPer10Yards The total yards in distance of all attempted + * field goals scored in 10 yard increments. + * @property {number} fieldGoalAttemptedYardsPer20Yards The total yards in distance of all attempted + * field goals scored in 20 yard increments. + * @property {number} fieldGoalAttemptedYardsPer25Yards The total yards in distance of all attempted + * field goals scored in 25 yard increments. + * @property {number} fieldGoalAttemptedYardsPer50Yards The total yards in distance of all attempted + * field goals scored in 50 yard increments. + * @property {number} fieldGoalAttemptedYardsPer100Yards The total yards in distance of all + * attempted field goals scored in 100 yard + * increments. + * * @property {number} madeExtraPoints Made extra point attempts. * @property {number} attemptedExtraPoints Total extra point attempts. * @property {number} missedExtraPoints Missed extra point attempts (typically negative points). @@ -205,20 +349,33 @@ export const nflTeamIdToNFLTeamAbbreviation = { * @property {number} defensiveBlockedKicks When a DST blocks any kick. * @property {number} defensiveSafeties When a DST records a safety. * @property {number} defensiveSacks When a DST records a sack. + * @property {number} defensiveHalfSacks When a DST records an half sack. Like an assist for sacks. * * @property {number} kickoffReturnTouchdown When a DST returns a kickoff for a touchdown. * @property {number} puntReturnTouchdown When a DST returns a punt for a touchdown. * @property {number} fumbleReturnTouchdown When a DST returns a fumble for a touchdown. * @property {number} interceptionReturnTouchdown When a DST returns an interception for a * touchdown. + * @property {number} totalReturnTouchdowns Total times a DST returns a kick, punt, fumble, or + * interception for a touchdown. * * @property {number} kickoffReturnYards Total yards on kickoff returns. * @property {number} puntReturnYards Total yards on punt returns. * + * @property {number} kickoffReturnYardsPer10Yards Kickoff return yards scored in 10 yard + * increments. + * @property {number} kickoffReturnYardsPer25Yards Kickoff return yards scored in 25 yard + * increments. + * @property {number} puntReturnYardsPer10Yards Punt return yards scored in 10 yard increments. + * @property {number} puntReturnYardsPer25Yards Punt return yards scored in 25 yard increments. + * * @property {number} defensiveForcedFumbles No description * @property {number} defensiveAssistedTackles No description * @property {number} defensiveSoloTackles No description * @property {number} defensiveTotalTackles No description + * @property {number} defensiveTacklesPer3Tackles No description + * @property {number} defensiveTacklesPer5Tackles No description + * @property {number} defensiveStuffs No description * * @property {number} defensivePointsAllowed Total points allowed by the defense in the NFL game * (real points allowed, not fantasy points). @@ -239,6 +396,9 @@ export const nflTeamIdToNFLTeamAbbreviation = { * @property {number} defensiveOver45PointsAllowed When a DST allows more than 45 points in their * NFL game. * + * @property {number} defensiveYardsAllowed Total yards allowed by a DST. + * @property {number} defensiveLessThan100YardsAllowed When a DST allows less than 100 yards in + * their NFL game. * @property {number} defensive100To199YardsAllowed When a DST allows 100-199 yards in their NFL * game. * @property {number} defensive200To299YardsAllowed When a DST allows 200-299 yards in their NFL @@ -253,6 +413,46 @@ export const nflTeamIdToNFLTeamAbbreviation = { * game. * @property {number} defensiveOver550YardsAllowed When a DST allows 550 or more yards in their * NFL game. + * + * @property {number} teamWin Scored when the NFL player's team wins their NFL game. + * @property {number} teamLoss Scored when the NFL player's team loses their NFL game. + * @property {number} teamTie Scored when the NFL player's team ties their NFL game. + * @property {number} teamPointsScored Fantasy points awarded based on the total point sscored by + * a player's team in their NFL game. + * + * @property {number} teamWinMargin25Plus Scored when a player's NFL team wins their NFL games by + * 25 or more points. + * @property {number} teamWinMargin20To24 Scored when a player's NFL team wins their NFL games by + * 20-24 points. + * @property {number} teamWinMargin15To19 Scored when a player's NFL team wins their NFL games by + * 15-19 points. + * @property {number} teamWinMargin10To14 Scored when a player's NFL team wins their NFL games by + * 10-14 points. + * @property {number} teamWinMargin5To9 Scored when a player's NFL team wins their NFL games by 5-9 + * points. + * @property {number} teamWinMargin1To4 Scored when a player's NFL team wins their NFL games by 1-4 + * points. + * + * @property {number} teamLossMargin25Plus Scored when a player's NFL team loses their NFL games by + * 25 or more points. + * @property {number} teamLossMargin20To24 Scored when a player's NFL team loses their NFL games by + * 20-24 points. + * @property {number} teamLossMargin15To19 Scored when a player's NFL team loses their NFL games by + * 15-19 points. + * @property {number} teamLossMargin10To14 Scored when a player's NFL team loses their NFL games by + * 10-14 points. + * @property {number} teamLossMargin5To9 Scored when a player's NFL team loses their NFL games by + * 5-9 points. + * @property {number} teamLossMargin1To4 Scored when a player's NFL team loses their NFL games by + * 1-4 points. + * + * @property {number} netPunts No description. + * @property {number} puntYards No description. + * @property {number} puntsInsideThe10 Total number of punts ending inside the opponent's 10 yard + * line. + * @property {number} puntsInsideThe20 Total number of punts ending inside the opponent's 20 yard + * line. + * @property {number} fairCatches lol */ /** @@ -264,8 +464,25 @@ export const scoringItemToId = { passingIncompletions: '2', passingYards: '3', passingTouchdowns: '4', + + passingYardsPer5Yards: '5', + passingYardsPer10Yards: '6', + passingYardsPer20Yards: '7', + passingYardsPer25Yards: '8', + passingYardsPer50Yards: '9', + passingYardsPer100Yards: '10', + + passingCompletionsPer5Completions: '11', + passingCompletionsPer10Completions: '12', + passingIncompletionsPer5Incompletions: '13', + passingIncompletionsPer10Incompletions: '14', + passingTouchdowns40Plus: '15', passingTouchdowns50Plus: '16', + + passingYards300To399: '17', + passingYards400Plus: '18', + passing2PtConversions: '19', passingInterceptions: '20', passingCompletionPercentage: '21', @@ -274,33 +491,70 @@ export const scoringItemToId = { rushingYards: '24', rushingTouchdowns: '25', rushing2PtConversions: '26', + + rushingYardsPer5Yards: '27', + rushingYardsPer10Yards: '28', + rushingYardsPer20Yards: '29', + rushingYardsPer25Yards: '30', + rushingYardsPer50Yards: '31', + rushingYardsPer100Yards: '32', + + rushingAttemptsPer5Attempts: '33', + rushingAttemptsPer10Attempts: '34', + rushingTouchdowns40Plus: '35', rushingTouchdowns50Plus: '36', + + rushingGame100To199Yards: '37', + rushingGame200PlusYards: '38', + rushingYardsPerAttempt: '39', + // 41 is a legacy id for receptions? receivingYards: '42', receivingTouchdowns: '43', receiving2PtConversions: '44', receivingTouchdowns40Plus: '45', receivingTouchdowns50Plus: '46', + + receivingYardsPer5Yards: '47', + receivingYardsPer10Yards: '48', + receivingYardsPer20Yards: '49', + receivingYardsPer25Yards: '50', + receivingYardsPer50Yards: '51', + receivingYardsPer100Yards: '52', + receivingReceptions: '53', + receptionsPer5Receptions: '54', + receptionsPer10Receptions: '55', + + receivingTouchdowns40Plus: '56', + receivingTouchdowns50Plus: '57', + receivingTargets: '58', receivingYardsAfterCatch: '59', receivingYardsPerReception: '60', fumbles: '68', lostFumbles: '72', - turnovers: '73', + totalTurnovers: '73', madeFieldGoalsFrom60Plus: '201', attemptedFieldGoalsFrom60Plus: '202', missedFieldGoalsFrom60Plus: '203', + madeFieldGoalsFrom50Plus: '74', attemptedFieldGoalsFrom50Plus: '75', missedFieldGoalsFrom50Plus: '76', + + madeFieldGoalsFrom50To59: '198', + attemptedFieldGoalsFrom50To59: '199', + missedFieldGoalsFrom50To59: '200', + madeFieldGoalsFrom40To49: '77', attemptedFieldGoalsFrom40To49: '78', missedFieldGoalsFrom40To49: '79', + madeFieldGoalsFromUnder40: '80', attemptFieldGoalsFromUnder40: '81', missedFieldGoalsFromUnder40: '82', @@ -308,6 +562,29 @@ export const scoringItemToId = { madeFieldGoals: '83', attemptedFieldGoals: '84', missedFieldGoals: '85', + + fieldGoalMadeYards: '214', + fieldGoalMadeYardsPer5Yards: '217', + fieldGoalMadeYardsPer10Yards: '218', + fieldGoalMadeYardsPer20Yards: '219', + fieldGoalMadeYardsPer25Yards: '220', + fieldGoalMadeYardsPer50Yards: '221', + fieldGoalMadeYardsPer100Yards: '222', + fieldGoalMissedYards: '215', + fieldGoalMissedYardsPer5Yards: '223', + fieldGoalMissedYardsPer10Yards: '224', + fieldGoalMissedYardsPer20Yards: '225', + fieldGoalMissedYardsPer25Yards: '226', + fieldGoalMissedYardsPer50Yards: '227', + fieldGoalMissedYardsPer100Yards: '228', + fieldGoalAttemptedYards: '216', + fieldGoalAttemptedYardsPer5Yards: '229', + fieldGoalAttemptedYardsPer10Yards: '230', + fieldGoalAttemptedYardsPer20Yards: '231', + fieldGoalAttemptedYardsPer25Yards: '232', + fieldGoalAttemptedYardsPer50Yards: '233', + fieldGoalAttemptedYardsPer100Yards: '234', + madeExtraPoints: '86', attemptedExtraPoints: '87', missedExtraPoints: '88', @@ -318,16 +595,21 @@ export const scoringItemToId = { defensiveBlockedKicks: '97', defensiveSafeties: '98', defensiveSacks: '99', + defensiveHalfSacks: '100', kickoffReturnTouchdown: '101', puntReturnTouchdown: '102', fumbleReturnTouchdown: '103', interceptionReturnTouchdown: '104', + totalReturnTouchdowns: '105', defensiveForcedFumbles: '106', defensiveAssistedTackles: '107', defensiveSoloTackles: '108', defensiveTotalTackles: '109', + defensiveTacklesPer3Tackles: '110', + defensiveTacklesPer5Tackles: '111', + defensiveStuffs: '112', kickoffReturnYards: '114', puntReturnYards: '115', @@ -351,7 +633,31 @@ export const scoringItemToId = { defensive400To449YardsAllowed: '133', defensive450To499YardsAllowed: '134', defensive500To549YardsAllowed: '135', - defensiveOver550YardsAllowed: '136' + defensiveOver550YardsAllowed: '136', + + netPunts: '138', + puntYards: '139', + puntsInsideThe10: '140', + puntsInsideThe20: '141', + fairCatches: '146', + + teamWin: '155', + teamLoss: '156', + teamTie: '157', + teamPointsScored: '158', + + teamWinMargin25Plus: '161', + teamWinMargin20To24: '162', + teamWinMargin15To19: '163', + teamWinMargin10To14: '164', + teamWinMargin5To9: '165', + teamWinMargin1To4: '166', + teamLossMargin25Plus: '172', + teamLossMargin20To24: '171', + teamLossMargin15To19: '170', + teamLossMargin10To14: '169', + teamLossMargin5To9: '168', + teamLossMargin1To4: '167' }; export const scoringIdToItem = _.reduce(scoringItemToId, (acc, value, key) => { From d4110ee5a821c82e64aa71ae6a42319357daa3a9 Mon Sep 17 00:00:00 2001 From: Mike Kreiser Date: Sat, 4 Nov 2023 10:59:26 -0400 Subject: [PATCH 2/6] Add spell checker to project --- cspell.json | 18 + package-lock.json | 13033 ++++++++++++++++++++++++++------------------ package.json | 5 +- 3 files changed, 7612 insertions(+), 5444 deletions(-) create mode 100644 cspell.json diff --git a/cspell.json b/cspell.json new file mode 100644 index 0000000..c5af603 --- /dev/null +++ b/cspell.json @@ -0,0 +1,18 @@ +{ + "version": "0.2", + "language": "en", + "minWordLength": 3, + "allowCompoundWords": true, + "dictionaries": [ + "en_US", + "companies", + "softwareTerms", + "typescript", + "node" + ], + "words": [ + "kona", + "SWID" + ], + "flagWords": [] +} diff --git a/package-lock.json b/package-lock.json index 918bcd6..5c568a3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,6 +24,7 @@ "babel-jest": "29.6.4", "babel-loader": "^9.1.3", "babel-plugin-lodash": "^3.3.4", + "cspell": "^7.3.8", "dotenv": "^16.3.1", "eslint": "^8.48.0", "eslint-config-airbnb-base": "^15.0.0", @@ -1819,6 +1820,427 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, + "node_modules/@cspell/cspell-bundled-dicts": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-7.3.8.tgz", + "integrity": "sha512-Dj8iSGQyfgIsCjmXk9D/SjV7EpbpQSogeaGcBM66H33pd0GyGmLhn3biRN+vqi/vqWmsp75rT3kd5MKa8X5W9Q==", + "dev": true, + "dependencies": { + "@cspell/dict-ada": "^4.0.2", + "@cspell/dict-aws": "^4.0.0", + "@cspell/dict-bash": "^4.1.2", + "@cspell/dict-companies": "^3.0.26", + "@cspell/dict-cpp": "^5.0.8", + "@cspell/dict-cryptocurrencies": "^4.0.0", + "@cspell/dict-csharp": "^4.0.2", + "@cspell/dict-css": "^4.0.12", + "@cspell/dict-dart": "^2.0.3", + "@cspell/dict-django": "^4.1.0", + "@cspell/dict-docker": "^1.1.7", + "@cspell/dict-dotnet": "^5.0.0", + "@cspell/dict-elixir": "^4.0.3", + "@cspell/dict-en_us": "^4.3.9", + "@cspell/dict-en-common-misspellings": "^1.0.2", + "@cspell/dict-en-gb": "1.1.33", + "@cspell/dict-filetypes": "^3.0.1", + "@cspell/dict-fonts": "^4.0.0", + "@cspell/dict-fsharp": "^1.0.0", + "@cspell/dict-fullstack": "^3.1.5", + "@cspell/dict-gaming-terms": "^1.0.4", + "@cspell/dict-git": "^2.0.0", + "@cspell/dict-golang": "^6.0.3", + "@cspell/dict-haskell": "^4.0.1", + "@cspell/dict-html": "^4.0.5", + "@cspell/dict-html-symbol-entities": "^4.0.0", + "@cspell/dict-java": "^5.0.6", + "@cspell/dict-k8s": "^1.0.1", + "@cspell/dict-latex": "^4.0.0", + "@cspell/dict-lorem-ipsum": "^4.0.0", + "@cspell/dict-lua": "^4.0.2", + "@cspell/dict-node": "^4.0.3", + "@cspell/dict-npm": "^5.0.12", + "@cspell/dict-php": "^4.0.3", + "@cspell/dict-powershell": "^5.0.2", + "@cspell/dict-public-licenses": "^2.0.5", + "@cspell/dict-python": "^4.1.9", + "@cspell/dict-r": "^2.0.1", + "@cspell/dict-ruby": "^5.0.1", + "@cspell/dict-rust": "^4.0.1", + "@cspell/dict-scala": "^5.0.0", + "@cspell/dict-software-terms": "^3.3.6", + "@cspell/dict-sql": "^2.1.2", + "@cspell/dict-svelte": "^1.0.2", + "@cspell/dict-swift": "^2.0.1", + "@cspell/dict-typescript": "^3.1.2", + "@cspell/dict-vue": "^3.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-json-reporter": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-7.3.8.tgz", + "integrity": "sha512-FxYJWtDgxIQYxdP0RWwRV8nzLfxVx8D8D5L2sbbP/0NFczDbq/zWYep4nSAHJT10aUJrogsVUYwNwdkr562wKA==", + "dev": true, + "dependencies": { + "@cspell/cspell-types": "7.3.8" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-pipe": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-7.3.8.tgz", + "integrity": "sha512-/vKPfiHM5bJUkNX12w9j533Lm2JvvSMKUCChM2AxYjy6vL8prc/7ei++4g2xAWwRxLZPg2OfpDJS5EirZNBJdA==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-resolver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-7.3.8.tgz", + "integrity": "sha512-CeyQmhqZI5a+T7a6oiVN90TFlzU3qVVYqCaZ9grFrVOsmzY9ipH5gmqfgMavaBOqb0di/+VZS8d02suMOXcKLQ==", + "dev": true, + "dependencies": { + "global-dirs": "^3.0.1" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-service-bus": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-7.3.8.tgz", + "integrity": "sha512-3E7gwY6QILrZH83p69i9CERbRBEqeBiKCIKnAd7U2PbxfFqG/P47fqpnarzSWFwFpU92oyGsYry+wC8TEGISRQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-types": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-7.3.8.tgz", + "integrity": "sha512-hsOtaULDnawEL4pU0fga941GhvE8mbTbywrJBx+eGX3fnJsaUr8XQzCtnLsW2ko7WCLWFItNEhSSTPQHBFRLsw==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/dict-ada": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.2.tgz", + "integrity": "sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA==", + "dev": true + }, + "node_modules/@cspell/dict-aws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.0.tgz", + "integrity": "sha512-1YkCMWuna/EGIDN/zKkW+j98/55mxigftrSFgsehXhPld+ZMJM5J9UuBA88YfL7+/ETvBdd7mwW6IwWsC+/ltQ==", + "dev": true + }, + "node_modules/@cspell/dict-bash": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.1.2.tgz", + "integrity": "sha512-AEBWjbaMaJEyAjOHW0F15P2izBjli2cNerG3NjuVH7xX/HUUeNoTj8FF1nwpMufKwGQCvuyO2hCmkVxhJ0y55Q==", + "dev": true + }, + "node_modules/@cspell/dict-companies": { + "version": "3.0.27", + "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.27.tgz", + "integrity": "sha512-gaPR/luf+4oKGyxvW4GbxGGPdHiC5kj/QefnmQqrLFrLiCSXMZg5/NL+Lr4E5lcHsd35meX61svITQAvsT7lyQ==", + "dev": true + }, + "node_modules/@cspell/dict-cpp": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.0.9.tgz", + "integrity": "sha512-ql9WPNp8c+fhdpVpjpZEUWmxBHJXs9CJuiVVfW/iwv5AX7VuMHyEwid+9/6nA8qnCxkUQ5pW83Ums1lLjn8ScA==", + "dev": true + }, + "node_modules/@cspell/dict-cryptocurrencies": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-4.0.0.tgz", + "integrity": "sha512-EiZp91ATyRxTmauIQfOX9adLYCunKjHEh092rrM7o2eMXP9n7zpXAL9BK7LviL+LbB8VDOm21q+s83cKrrRrsg==", + "dev": true + }, + "node_modules/@cspell/dict-csharp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz", + "integrity": "sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==", + "dev": true + }, + "node_modules/@cspell/dict-css": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.12.tgz", + "integrity": "sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw==", + "dev": true + }, + "node_modules/@cspell/dict-dart": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.3.tgz", + "integrity": "sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==", + "dev": true + }, + "node_modules/@cspell/dict-data-science": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.11.tgz", + "integrity": "sha512-TaHAZRVe0Zlcc3C23StZqqbzC0NrodRwoSAc8dis+5qLeLLnOCtagYQeROQvDlcDg3X/VVEO9Whh4W/z4PAmYQ==", + "dev": true + }, + "node_modules/@cspell/dict-django": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.0.tgz", + "integrity": "sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==", + "dev": true + }, + "node_modules/@cspell/dict-docker": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.7.tgz", + "integrity": "sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==", + "dev": true + }, + "node_modules/@cspell/dict-dotnet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.0.tgz", + "integrity": "sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==", + "dev": true + }, + "node_modules/@cspell/dict-elixir": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz", + "integrity": "sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==", + "dev": true + }, + "node_modules/@cspell/dict-en_us": { + "version": "4.3.11", + "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.11.tgz", + "integrity": "sha512-GhdavZFlS2YbUNcRtPbgJ9j6aUyq116LmDQ2/Q5SpQxJ5/6vVs8Yj5WxV1JD+Zh/Zim1NJDcneTOuLsUGi+Czw==", + "dev": true + }, + "node_modules/@cspell/dict-en-common-misspellings": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-1.0.2.tgz", + "integrity": "sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==", + "dev": true + }, + "node_modules/@cspell/dict-en-gb": { + "version": "1.1.33", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", + "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", + "dev": true + }, + "node_modules/@cspell/dict-filetypes": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.2.tgz", + "integrity": "sha512-StoC0wPmFNav6F6P8/FYFN1BpZfPgOmktb8gQ9wTauelWofPeBW+A0t5ncZt9hXHtnbGDA98v4ukacV+ucbnUg==", + "dev": true + }, + "node_modules/@cspell/dict-fonts": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz", + "integrity": "sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q==", + "dev": true + }, + "node_modules/@cspell/dict-fsharp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.0.1.tgz", + "integrity": "sha512-23xyPcD+j+NnqOjRHgW3IU7Li912SX9wmeefcY0QxukbAxJ/vAN4rBpjSwwYZeQPAn3fxdfdNZs03fg+UM+4yQ==", + "dev": true + }, + "node_modules/@cspell/dict-fullstack": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.1.5.tgz", + "integrity": "sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==", + "dev": true + }, + "node_modules/@cspell/dict-gaming-terms": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.4.tgz", + "integrity": "sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==", + "dev": true + }, + "node_modules/@cspell/dict-git": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-2.0.0.tgz", + "integrity": "sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==", + "dev": true + }, + "node_modules/@cspell/dict-golang": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.4.tgz", + "integrity": "sha512-jOfewPEyN6U9Q80okE3b1PTYBfqZgHh7w4o271GSuAX+VKJ1lUDhdR4bPKRxSDdO5jHArw2u5C8nH2CWGuygbQ==", + "dev": true + }, + "node_modules/@cspell/dict-haskell": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz", + "integrity": "sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==", + "dev": true + }, + "node_modules/@cspell/dict-html": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.5.tgz", + "integrity": "sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w==", + "dev": true + }, + "node_modules/@cspell/dict-html-symbol-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz", + "integrity": "sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==", + "dev": true + }, + "node_modules/@cspell/dict-java": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.6.tgz", + "integrity": "sha512-kdE4AHHHrixyZ5p6zyms1SLoYpaJarPxrz8Tveo6gddszBVVwIUZ+JkQE1bWNLK740GWzIXdkznpUfw1hP9nXw==", + "dev": true + }, + "node_modules/@cspell/dict-k8s": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.2.tgz", + "integrity": "sha512-tLT7gZpNPnGa+IIFvK9SP1LrSpPpJ94a/DulzAPOb1Q2UBFwdpFd82UWhio0RNShduvKG/WiMZf/wGl98pn+VQ==", + "dev": true + }, + "node_modules/@cspell/dict-latex": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.0.tgz", + "integrity": "sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==", + "dev": true + }, + "node_modules/@cspell/dict-lorem-ipsum": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz", + "integrity": "sha512-1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw==", + "dev": true + }, + "node_modules/@cspell/dict-lua": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.2.tgz", + "integrity": "sha512-eeC20Q+UnHcTVBK6pgwhSjGIVugO2XqU7hv4ZfXp2F9DxGx1RME0+1sKX4qAGhdFGwOBsEzb2fwUsAEP6Mibpg==", + "dev": true + }, + "node_modules/@cspell/dict-node": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-4.0.3.tgz", + "integrity": "sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg==", + "dev": true + }, + "node_modules/@cspell/dict-npm": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.12.tgz", + "integrity": "sha512-T/+WeQmtbxo7ad6hrdI8URptYstKJP+kXyWJZfuVJJGWJQ7yubxrI5Z5AfM+Dh/ff4xHmdzapxD9adaEQ727uw==", + "dev": true + }, + "node_modules/@cspell/dict-php": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.4.tgz", + "integrity": "sha512-fRlLV730fJbulDsLIouZxXoxHt3KIH6hcLFwxaupHL+iTXDg0lo7neRpbqD5MScr/J3idEr7i9G8XWzIikKFug==", + "dev": true + }, + "node_modules/@cspell/dict-powershell": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.2.tgz", + "integrity": "sha512-IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw==", + "dev": true + }, + "node_modules/@cspell/dict-public-licenses": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.5.tgz", + "integrity": "sha512-91HK4dSRri/HqzAypHgduRMarJAleOX5NugoI8SjDLPzWYkwZ1ftuCXSk+fy8DLc3wK7iOaFcZAvbjmnLhVs4A==", + "dev": true + }, + "node_modules/@cspell/dict-python": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.1.10.tgz", + "integrity": "sha512-ErF/Ohcu6Xk4QVNzFgo8p7CxkxvAKAmFszvso41qOOhu8CVpB35ikBRpGVDw9gsCUtZzi15Yl0izi4do6WcLkA==", + "dev": true, + "dependencies": { + "@cspell/dict-data-science": "^1.0.11" + } + }, + "node_modules/@cspell/dict-r": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.0.1.tgz", + "integrity": "sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==", + "dev": true + }, + "node_modules/@cspell/dict-ruby": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.1.tgz", + "integrity": "sha512-rruTm7Emhty/BSYavSm8ZxRuVw0OBqzJkwIFXcV0cX7To8D1qbmS9HFHRuRg8IL11+/nJvtdDz+lMFBSmPUagQ==", + "dev": true + }, + "node_modules/@cspell/dict-rust": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.1.tgz", + "integrity": "sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==", + "dev": true + }, + "node_modules/@cspell/dict-scala": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.0.tgz", + "integrity": "sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==", + "dev": true + }, + "node_modules/@cspell/dict-software-terms": { + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.3.9.tgz", + "integrity": "sha512-/O3EWe0SIznx18S7J3GAXPDe7sexn3uTsf4IlnGYK9WY6ZRuEywkXCB+5/USLTGf4+QC05pkHofphdvVSifDyA==", + "dev": true + }, + "node_modules/@cspell/dict-sql": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.2.tgz", + "integrity": "sha512-Pi0hAcvsSGtZZeyyAN1VfGtQJbrXos5x2QjJU0niAQKhmITSOrXU/1II1Gogk+FYDjWyV9wP2De0U2f7EWs6oQ==", + "dev": true + }, + "node_modules/@cspell/dict-svelte": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz", + "integrity": "sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==", + "dev": true + }, + "node_modules/@cspell/dict-swift": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.1.tgz", + "integrity": "sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==", + "dev": true + }, + "node_modules/@cspell/dict-typescript": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.2.tgz", + "integrity": "sha512-lcNOYWjLUvDZdLa0UMNd/LwfVdxhE9rKA+agZBGjL3lTA3uNvH7IUqSJM/IXhJoBpLLMVEOk8v1N9xi+vDuCdA==", + "dev": true + }, + "node_modules/@cspell/dict-vue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.0.tgz", + "integrity": "sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==", + "dev": true + }, + "node_modules/@cspell/dynamic-import": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-7.3.8.tgz", + "integrity": "sha512-s8x7dH/ScfW0pFEIvNFo4JOR7YmvM2wZSHOykmWTJCQ8k2EQ/+uECPp6ZxkoJoukTz8sj+3KzF0fRl5mKxPd6g==", + "dev": true, + "dependencies": { + "import-meta-resolve": "^3.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/strong-weak-map": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-7.3.8.tgz", + "integrity": "sha512-qNnt2wG45wb8JP54mENarnQgxfSYKPp3zlYID/2przbMNmVJRqUlcIBOdLI6plCgGeNkzJTl3T9T1ATbnN+LLw==", + "dev": true, + "engines": { + "node": ">=16" + } + }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", @@ -3547,6 +3969,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array-timsort": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", + "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", + "dev": true + }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", @@ -4086,6 +4514,33 @@ "node": ">=4" } }, + "node_modules/chalk-template": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.0.tgz", + "integrity": "sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==", + "dev": true, + "dependencies": { + "chalk": "^5.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/chalk/chalk-template?sponsor=1" + } + }, + "node_modules/chalk-template/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -4128,6 +4583,34 @@ "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, + "node_modules/clear-module": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz", + "integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==", + "dev": true, + "dependencies": { + "parent-module": "^2.0.0", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clear-module/node_modules/parent-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", + "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", + "dev": true, + "dependencies": { + "callsites": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -4248,6 +4731,22 @@ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, + "node_modules/comment-json": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.3.tgz", + "integrity": "sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==", + "dev": true, + "dependencies": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/comment-parser": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.0.tgz", @@ -4269,6 +4768,37 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "node_modules/configstore": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", + "dev": true, + "dependencies": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" + } + }, + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, "node_modules/confusing-browser-globals": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", @@ -4297,6 +4827,12 @@ "url": "https://opencollective.com/core-js" } }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, "node_modules/corser": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", @@ -4306,847 +4842,855 @@ "node": ">= 0.4.0" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/cosmiconfig": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz", + "integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==", "dev": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=14" } }, - "node_modules/dedent": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", - "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "peerDependencies": { - "babel-plugin-macros": "^3.1.0" + "dependencies": { + "argparse": "^2.0.1" }, - "peerDependenciesMeta": { - "babel-plugin-macros": { - "optional": true - } + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "type-fest": "^1.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, + "node_modules/cspell": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-7.3.8.tgz", + "integrity": "sha512-8AkqsBQAMsKYV5XyJLB6rBs5hgspL4+MPOg6mBKG2j5EvQgRVc6dIfAPWDNLpIeW2a3+7K5BIWqKHapKPeiknQ==", + "dev": true, + "dependencies": { + "@cspell/cspell-json-reporter": "7.3.8", + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "@cspell/dynamic-import": "7.3.8", + "chalk": "^5.3.0", + "chalk-template": "^1.1.0", + "commander": "^11.1.0", + "cspell-gitignore": "7.3.8", + "cspell-glob": "7.3.8", + "cspell-io": "7.3.8", + "cspell-lib": "7.3.8", + "fast-glob": "^3.3.1", + "fast-json-stable-stringify": "^2.1.0", + "file-entry-cache": "^7.0.1", + "get-stdin": "^9.0.0", + "semver": "^7.5.4", + "strip-ansi": "^7.1.0", + "vscode-uri": "^3.0.8" + }, + "bin": { + "cspell": "bin.mjs", + "cspell-esm": "bin.mjs" + }, "engines": { - "node": ">=8" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/streetsidesoftware/cspell?sponsor=1" } }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "node_modules/cspell-dictionary": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-7.3.8.tgz", + "integrity": "sha512-gkq4t78eLR0xC3P0vDDHPeNY4iZRd5YE6Z8uDJ7RM4UaX/TSdVUN9KNFr34RnJ119NYVHujpL9+uW7wPSAe8Eg==", "dev": true, + "dependencies": { + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "cspell-trie-lib": "7.3.8", + "fast-equals": "^4.0.3", + "gensequence": "^6.0.0" + }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=16" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/cspell-dictionary/node_modules/fast-equals": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-4.0.3.tgz", + "integrity": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==", + "dev": true + }, + "node_modules/cspell-gitignore": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-7.3.8.tgz", + "integrity": "sha512-vJzCOUEiw6/MwV/U4Ux3bgSdj9mXB+X5eHL+qzVoyFI7ArlvrkuGTL+iFJThQcS8McM3SGqtvaBNCiKBmAeCkA==", "dev": true, "dependencies": { - "path-type": "^4.0.0" + "cspell-glob": "7.3.8", + "find-up": "^5.0.0" + }, + "bin": { + "cspell-gitignore": "bin.mjs" }, "engines": { - "node": ">=8" + "node": ">=16" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/cspell-gitignore/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "node_modules/cspell-gitignore/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ecstatic": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-3.3.2.tgz", - "integrity": "sha512-fLf9l1hnwrHI2xn9mEDT7KIi22UDqA2jaCwyCbSUJh9a1V+LEUSL/JO/6TIz/QyuBURWUHrFL5Kg2TtO1bkkog==", - "deprecated": "This package is unmaintained and deprecated. See the GH Issue 259.", + "node_modules/cspell-gitignore/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "he": "^1.1.1", - "mime": "^1.6.0", - "minimist": "^1.1.0", - "url-join": "^2.0.5" + "yocto-queue": "^0.1.0" }, - "bin": { - "ecstatic": "lib/ecstatic.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.563", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.563.tgz", - "integrity": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==", - "dev": true - }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "node_modules/cspell-gitignore/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "node_modules/cspell-glob": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-7.3.8.tgz", + "integrity": "sha512-wUZC6znyxEs0wlhzGfZ4XHkATPJyazJIFi/VvAdj+KHe7U8SoSgitJVDQqdgectI2y3MxR7lQdVLX9dONFh+7A==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "micromatch": "^4.0.5" }, "engines": { - "node": ">=10.13.0" + "node": ">=16" } }, - "node_modules/entities": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", - "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", - "dev": true - }, - "node_modules/envinfo": { - "version": "7.10.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", - "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==", + "node_modules/cspell-grammar": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-7.3.8.tgz", + "integrity": "sha512-nTjAlMAZAVSFhBd9U3MB9l5FfC5JCCr9DTOA2wWxusVOm+36MbSEH90ucLPkhPa9/+0HtbpDhqVMwXCZllRpsg==", "dev": true, + "dependencies": { + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8" + }, "bin": { - "envinfo": "dist/cli.js" + "cspell-grammar": "bin.mjs" }, "engines": { - "node": ">=4" + "node": ">=16" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/cspell-io": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-7.3.8.tgz", + "integrity": "sha512-XrxPbaiek7EZh+26k9RYVz2wKclaMqM6mXBiu/kpFAHRHHfz91ado6xWvyxZ7UAxQ8ixEwZ+oz9TU+k21gHzyw==", "dev": true, "dependencies": { - "is-arrayish": "^0.2.1" + "@cspell/cspell-service-bus": "7.3.8", + "node-fetch": "^2.7.0" + }, + "engines": { + "node": ">=16" } }, - "node_modules/es-abstract": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", - "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "node_modules/cspell-lib": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-7.3.8.tgz", + "integrity": "sha512-2L770sI5DdsAKVzO3jxmfP2fz4LryW6dzL93BpN7WU+ebFC6rg4ioa5liOJV4WoDo2fNQMSeqfW4Aawu9zWR7A==", + "dev": true, + "dependencies": { + "@cspell/cspell-bundled-dicts": "7.3.8", + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-resolver": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "@cspell/dynamic-import": "7.3.8", + "@cspell/strong-weak-map": "7.3.8", + "clear-module": "^4.1.2", + "comment-json": "^4.2.3", + "configstore": "^6.0.0", + "cosmiconfig": "8.0.0", + "cspell-dictionary": "7.3.8", + "cspell-glob": "7.3.8", + "cspell-grammar": "7.3.8", + "cspell-io": "7.3.8", + "cspell-trie-lib": "7.3.8", + "fast-equals": "^5.0.1", + "find-up": "^6.3.0", + "gensequence": "^6.0.0", + "import-fresh": "^3.3.0", + "resolve-from": "^5.0.0", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/cspell-lib/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.1", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.1", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "safe-array-concat": "^1.0.0", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.10" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-module-lexer": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", - "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", - "dev": true - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "node_modules/cspell-lib/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "p-locate": "^6.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/cspell-lib/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, "dependencies": { - "has": "^1.0.3" + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/cspell-lib/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "p-limit": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/cspell-lib/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "dev": true, "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/cspell-lib/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", "dev": true, "engines": { - "node": ">=0.8.0" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint": { - "version": "8.48.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz", - "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==", + "node_modules/cspell-trie-lib": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-7.3.8.tgz", + "integrity": "sha512-UQx1Bazbyz2eQJ/EnMohINnUdZvAQL+OcQU3EPPbNWM1DWF4bJGgmFXKNCRYfJk6wtOZVXG5g5AZXx9KnHeN9A==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.48.0", - "@humanwhocodes/config-array": "^0.11.10", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "gensequence": "^6.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=16" + } + }, + "node_modules/cspell/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/eslint-config-airbnb-base": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", - "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "node_modules/cspell/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, - "dependencies": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.5", - "semver": "^6.3.0" - }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, - "peerDependencies": { - "eslint": "^7.32.0 || ^8.2.0", - "eslint-plugin-import": "^2.25.2" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "node_modules/cspell/node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" + "engines": { + "node": ">=16" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/cspell/node_modules/file-entry-cache": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-7.0.1.tgz", + "integrity": "sha512-uLfFktPmRetVCbHe5UPuekWrQ6hENufnA46qEGbfACkK5drjTTdQYUragRgMjHldcbYG+nslUerqMPjbBSHXjQ==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "flat-cache": "^3.1.1" + }, + "engines": { + "node": ">=12.0.0" } }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "node_modules/cspell/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "yallist": "^4.0.0" }, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": ">=10" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/cspell/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/eslint-plugin-import": { - "version": "2.28.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", - "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "node_modules/cspell/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.findlastindex": "^1.2.2", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.8.0", - "has": "^1.0.3", - "is-core-module": "^2.13.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.6", - "object.groupby": "^1.0.0", - "object.values": "^1.1.6", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=4" + "node": ">=12" }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/cspell/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" + "ms": "2.1.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/eslint-plugin-jest": { - "version": "27.2.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.3.tgz", - "integrity": "sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==", + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", "dev": true, - "dependencies": { - "@typescript-eslint/utils": "^5.10.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0", - "eslint": "^7.0.0 || ^8.0.0", - "jest": "*" + "babel-plugin-macros": "^3.1.0" }, "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { + "babel-plugin-macros": { "optional": true } } }, - "node_modules/eslint-plugin-jsdoc": { - "version": "46.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.5.0.tgz", - "integrity": "sha512-aulXdA4I1dyWpzyS1Nh/GNoS6PavzeucxEapnMR4JUERowWvaEk2Y4A5irpHAcdXtBBHLVe8WIhdXNjoAlGQgA==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", "dev": true, "dependencies": { - "@es-joy/jsdoccomment": "~0.40.1", - "are-docs-informative": "^0.0.2", - "comment-parser": "1.4.0", - "debug": "^4.3.4", - "escape-string-regexp": "^4.0.0", - "esquery": "^1.5.0", - "is-builtin-module": "^3.2.1", - "semver": "^7.5.4", - "spdx-expression-parse": "^3.0.1" + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=16" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "path-type": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "esutils": "^2.0.2" }, "engines": { - "node": ">=8.0.0" + "node": ">=6.0.0" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "is-obj": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/motdotla/dotenv?sponsor=1" } }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/ecstatic": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-3.3.2.tgz", + "integrity": "sha512-fLf9l1hnwrHI2xn9mEDT7KIi22UDqA2jaCwyCbSUJh9a1V+LEUSL/JO/6TIz/QyuBURWUHrFL5Kg2TtO1bkkog==", + "deprecated": "This package is unmaintained and deprecated. See the GH Issue 259.", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "he": "^1.1.1", + "mime": "^1.6.0", + "minimist": "^1.1.0", + "url-join": "^2.0.5" }, - "engines": { - "node": ">=7.0.0" + "bin": { + "ecstatic": "lib/ecstatic.js" } }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/electron-to-chromium": { + "version": "1.4.563", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.563.tgz", + "integrity": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==", "dev": true }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=10.13.0" } }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "node_modules/entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true + }, + "node_modules/envinfo": { + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", + "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==", "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "bin": { + "envinfo": "dist/cli.js" }, - "funding": { - "url": "https://opencollective.com/eslint" + "engines": { + "node": ">=4" } }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/eslint/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "is-arrayish": "^0.2.1" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.21.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", - "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", + "node_modules/es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", "dev": true, "dependencies": { - "type-fest": "^0.20.2" + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/es-module-lexer": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz", + "integrity": "sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==", + "dev": true }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">= 0.4" } }, - "node_modules/eslint/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", "dev": true, "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "has": "^1.0.3" } }, - "node_modules/eslint/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=0.8.0" } }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "node_modules/eslint": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz", + "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==", "dev": true, "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.48.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "bin": { + "eslint": "bin/eslint.js" }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -5154,869 +5698,826 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" }, "engines": { - "node": ">=4" + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dev": true, "dependencies": { - "estraverse": "^5.2.0" + "debug": "^3.2.7" }, "engines": { - "node": ">=4.0" + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, "engines": { - "node": ">=4.0" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/eslint-plugin-jest": { + "version": "27.2.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.3.tgz", + "integrity": "sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==", "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.10.0" + }, "engines": { - "node": ">=0.8.x" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0", + "eslint": "^7.0.0 || ^8.0.0", + "jest": "*" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } } }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/eslint-plugin-jsdoc": { + "version": "46.5.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.5.0.tgz", + "integrity": "sha512-aulXdA4I1dyWpzyS1Nh/GNoS6PavzeucxEapnMR4JUERowWvaEk2Y4A5irpHAcdXtBBHLVe8WIhdXNjoAlGQgA==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "@es-joy/jsdoccomment": "~0.40.1", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.4.0", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "is-builtin-module": "^3.2.1", + "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1" }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "node_modules/eslint-plugin-jsdoc/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=10" } }, - "node_modules/expect": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", - "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", + "node_modules/eslint-plugin-jsdoc/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.6.4", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-util": "^29.6.3" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "node_modules/eslint-plugin-jsdoc/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=8.6.0" + "node": ">=8.0.0" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">= 4.9.1" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "reusify": "^1.0.4" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "dependencies": { - "bser": "2.1.1" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/find-cache-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", - "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "common-path-prefix": "^3.0.0", - "pkg-dir": "^7.0.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/eslint/node_modules/globals": { + "version": "13.21.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", + "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "type-fest": "^0.20.2" }, "engines": { "node": ">=8" - } - }, - "node_modules/flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "dev": true, - "dependencies": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" }, - "engines": { - "node": ">=12.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "node": ">=8" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "is-callable": "^1.1.3" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "p-locate": "^5.0.0" }, "engines": { - "node": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=6.9.0" + "node": ">=8" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=4" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "estraverse": "^5.1.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=0.10" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">=4" + "node": ">=4.0" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { - "define-properties": "^1.1.3" + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4.0" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, "engines": { - "node": ">= 0.4.0" + "node": ">=0.8.x" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">= 0.8.0" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "node_modules/expect": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.4.tgz", + "integrity": "sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.1" + "@jest/expect-utils": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-equals": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", + "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6.0.0" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8.6.0" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "is-glob": "^4.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true, - "bin": { - "he": "bin/he" - } + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, "engines": { - "node": ">=8.0.0" + "node": ">= 4.9.1" } }, - "node_modules/http-server": { - "version": "0.12.3", - "resolved": "https://registry.npmjs.org/http-server/-/http-server-0.12.3.tgz", - "integrity": "sha512-be0dKG6pni92bRjq0kvExtj/NrrAd28/8fCXkaI/4piTwQMSDSLMhWyW0NI1V+DBI3aa1HMlQu46/HjVLfmugA==", + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "dependencies": { - "basic-auth": "^1.0.3", - "colors": "^1.4.0", - "corser": "^2.0.1", - "ecstatic": "^3.3.2", - "http-proxy": "^1.18.0", - "minimist": "^1.2.5", - "opener": "^1.5.1", - "portfinder": "^1.0.25", - "secure-compare": "3.0.1", - "union": "~0.5.0" - }, - "bin": { - "hs": "bin/http-server", - "http-server": "bin/http-server" - }, - "engines": { - "node": ">=6" + "reusify": "^1.0.4" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "engines": { - "node": ">=10.17.0" + "dependencies": { + "bser": "2.1.1" } }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, "engines": { - "node": ">= 4" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/import-fresh/node_modules/resolve-from": { + "node_modules/find-cache-dir": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-local/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { - "find-up": "^4.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "node_modules/flat-cache": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", + "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, "engines": { - "node": ">= 0.4" + "node": ">=12.0.0" } }, - "node_modules/interpret": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", - "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", - "dev": true, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "engines": { - "node": ">=10.13.0" + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "is-callable": "^1.1.3" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/is-builtin-module": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", - "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, "dependencies": { - "builtin-modules": "^3.3.0" - }, - "engines": { - "node": ">=6" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -6024,128 +6525,98 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "dependencies": { - "has": "^1.0.3" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/gensequence": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-6.0.0.tgz", + "integrity": "sha512-8WwuywE9pokJRAcg2QFR/plk3cVPebSUqRPzpGQh3WQ0wIiHAw+HyOQj5IuHyUTQBHpBKFoB2JUMu9zT3vJ16Q==", "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=16" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=6.9.0" } }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { - "node": ">=6" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "engines": { - "node": ">=0.12.0" + "node": ">=8.0.0" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" + "node": ">=10" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "get-intrinsic": "^1.1.1" }, "engines": { "node": ">= 0.4" @@ -6154,67 +6625,75 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, "engines": { - "node": ">=8" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10.13.0" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "ini": "2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "dependencies": { - "which-typed-array": "^1.1.11" + "define-properties": "^1.1.3" }, "engines": { "node": ">= 0.4" @@ -6223,941 +6702,871 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4.0" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/has-own-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", + "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, "engines": { "node": ">=8" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dev": true, "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" + "get-intrinsic": "^1.1.1" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "dev": true, "dependencies": { - "semver": "^7.5.3" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "he": "bin/he" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=8.0.0" } }, - "node_modules/istanbul-lib-report/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "node_modules/http-server": { + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-0.12.3.tgz", + "integrity": "sha512-be0dKG6pni92bRjq0kvExtj/NrrAd28/8fCXkaI/4piTwQMSDSLMhWyW0NI1V+DBI3aa1HMlQu46/HjVLfmugA==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "basic-auth": "^1.0.3", + "colors": "^1.4.0", + "corser": "^2.0.1", + "ecstatic": "^3.3.2", + "http-proxy": "^1.18.0", + "minimist": "^1.2.5", + "opener": "^1.5.1", + "portfinder": "^1.0.25", + "secure-compare": "3.0.1", + "union": "~0.5.0" + }, + "bin": { + "hs": "bin/http-server", + "http-server": "bin/http-server" }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, "engines": { - "node": ">=8" + "node": ">=10.17.0" } }, - "node_modules/jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", - "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", - "dev": true, - "dependencies": { - "@jest/core": "^29.6.4", - "@jest/types": "^29.6.3", - "import-local": "^3.0.2", - "jest-cli": "^29.6.4" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-changed-files": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", - "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, - "dependencies": { - "execa": "^5.0.0", - "jest-util": "^29.6.3", - "p-limit": "^3.1.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 4" } }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", - "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/expect": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^1.0.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-runtime": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "p-limit": "^3.1.0", - "pretty-format": "^29.6.3", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "find-up": "^4.0.0" }, "engines": { - "node": ">=10" - }, + "node": ">=8" + } + }, + "node_modules/import-meta-resolve": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.1.1.tgz", + "integrity": "sha512-qeywsE/KC3w9Fd2ORrRDUw6nS/nLwZpXgfrOc2IILvZYnCaEMd+D56Vfg9k4G29gIeVi3XKql1RQatME8iYsiw==", + "dev": true, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.8.19" } }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.4" } }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=10.13.0" } }, - "node_modules/jest-cli": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", - "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", "dev": true, "dependencies": { - "@jest/core": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "has-bigints": "^1.0.1" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "builtin-modules": "^3.3.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "has": "^1.0.3" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", - "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.6.4", - "@jest/types": "^29.6.3", - "babel-jest": "^29.6.4", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.6.4", - "jest-environment-node": "^29.6.4", - "jest-get-type": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-runner": "^29.6.4", - "jest-util": "^29.6.3", - "jest-validate": "^29.6.3", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.6.3", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6" } }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.12.0" } }, - "node_modules/jest-config/node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/jest-diff": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", - "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "isobject": "^3.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.2" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-docblock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", - "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, "dependencies": { - "detect-newline": "^3.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", - "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "jest-util": "^29.6.3", - "pretty-format": "^29.6.3" + "node": ">= 0.4" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "which-typed-array": "^1.1.11" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "call-bind": "^1.0.2" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-environment-node": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", - "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.6.3", - "jest-util": "^29.6.3" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-haste-map": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", - "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", + "node_modules/istanbul-lib-report/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.6.3", - "jest-worker": "^29.6.4", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "yallist": "^4.0.0" }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-haste-map/node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=10" } }, - "node_modules/jest-leak-detector": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", - "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "semver": "^7.5.3" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-matcher-utils": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", - "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.6.4", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.6.3" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=10" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/istanbul-lib-report/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/jest": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.4.tgz", + "integrity": "sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.6.4", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.6.4" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-changed-files": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.6.3.tgz", + "integrity": "sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==", "dev": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.6.3", + "p-limit": "^3.1.0" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-changed-files/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", - "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", + "node_modules/jest-circus": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.4.tgz", + "integrity": "sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", + "@jest/environment": "^29.6.4", + "@jest/expect": "^29.6.4", + "@jest/test-result": "^29.6.4", "@jest/types": "^29.6.3", - "@types/stack-utils": "^2.0.0", + "@types/node": "*", "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-runtime": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "p-limit": "^3.1.0", "pretty-format": "^29.6.3", + "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -7165,7 +7574,7 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { + "node_modules/jest-circus/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7180,7 +7589,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/chalk": { + "node_modules/jest-circus/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7196,7 +7605,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/color-convert": { + "node_modules/jest-circus/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7208,13 +7617,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-message-util/node_modules/color-name": { + "node_modules/jest-circus/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-message-util/node_modules/has-flag": { + "node_modules/jest-circus/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7223,92 +7632,68 @@ "node": ">=8" } }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-circus/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/jest-mock": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", - "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.6.3" + "node": ">=10" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" + "dependencies": { + "has-flag": "^4.0.0" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-resolve": { + "node_modules/jest-cli": { "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", - "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.4.tgz", + "integrity": "sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==", "dev": true, "dependencies": { + "@jest/core": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-pnp-resolver": "^1.2.2", + "import-local": "^3.0.2", + "jest-config": "^29.6.4", "jest-util": "^29.6.3", "jest-validate": "^29.6.3", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" + "prompts": "^2.0.1", + "yargs": "^17.3.1" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", - "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", - "dev": true, - "dependencies": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.6.4" + "bin": { + "jest": "bin/jest.js" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-resolve/node_modules/ansi-styles": { + "node_modules/jest-cli/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7323,7 +7708,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-resolve/node_modules/chalk": { + "node_modules/jest-cli/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7339,7 +7724,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-resolve/node_modules/color-convert": { + "node_modules/jest-cli/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7351,13 +7736,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-resolve/node_modules/color-name": { + "node_modules/jest-cli/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-resolve/node_modules/has-flag": { + "node_modules/jest-cli/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7366,7 +7751,7 @@ "node": ">=8" } }, - "node_modules/jest-resolve/node_modules/supports-color": { + "node_modules/jest-cli/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -7378,39 +7763,52 @@ "node": ">=8" } }, - "node_modules/jest-runner": { + "node_modules/jest-config": { "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", - "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.4.tgz", + "integrity": "sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==", "dev": true, "dependencies": { - "@jest/console": "^29.6.4", - "@jest/environment": "^29.6.4", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.6.4", "@jest/types": "^29.6.3", - "@types/node": "*", + "babel-jest": "^29.6.4", "chalk": "^4.0.0", - "emittery": "^0.13.1", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.6.3", + "jest-circus": "^29.6.4", "jest-environment-node": "^29.6.4", - "jest-haste-map": "^29.6.4", - "jest-leak-detector": "^29.6.3", - "jest-message-util": "^29.6.3", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", "jest-resolve": "^29.6.4", - "jest-runtime": "^29.6.4", + "jest-runner": "^29.6.4", "jest-util": "^29.6.3", - "jest-watcher": "^29.6.4", - "jest-worker": "^29.6.4", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "jest-validate": "^29.6.3", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/jest-runner/node_modules/ansi-styles": { + "node_modules/jest-config/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7425,7 +7823,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-runner/node_modules/chalk": { + "node_modules/jest-config/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7441,7 +7839,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runner/node_modules/color-convert": { + "node_modules/jest-config/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7453,13 +7851,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-runner/node_modules/color-name": { + "node_modules/jest-config/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-runner/node_modules/has-flag": { + "node_modules/jest-config/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7468,32 +7866,7 @@ "node": ">=8" } }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { + "node_modules/jest-config/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -7505,40 +7878,22 @@ "node": ">=8" } }, - "node_modules/jest-runtime": { + "node_modules/jest-diff": { "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", - "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.4.tgz", + "integrity": "sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==", "dev": true, "dependencies": { - "@jest/environment": "^29.6.4", - "@jest/fake-timers": "^29.6.4", - "@jest/globals": "^29.6.4", - "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.6.4", - "@jest/transform": "^29.6.4", - "@jest/types": "^29.6.3", - "@types/node": "*", "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.6.4", - "jest-message-util": "^29.6.3", - "jest-mock": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.6.4", - "jest-snapshot": "^29.6.4", - "jest-util": "^29.6.3", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { + "node_modules/jest-diff/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7553,7 +7908,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/chalk": { + "node_modules/jest-diff/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7569,7 +7924,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/color-convert": { + "node_modules/jest-diff/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7581,13 +7936,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-runtime/node_modules/color-name": { + "node_modules/jest-diff/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-runtime/node_modules/has-flag": { + "node_modules/jest-diff/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7596,16 +7951,7 @@ "node": ">=8" } }, - "node_modules/jest-runtime/node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { + "node_modules/jest-diff/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -7617,38 +7963,35 @@ "node": ">=8" } }, - "node_modules/jest-snapshot": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", - "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", + "node_modules/jest-docblock": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.6.3.tgz", + "integrity": "sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.3.tgz", + "integrity": "sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==", "dev": true, "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.6.4", - "@jest/transform": "^29.6.4", "@jest/types": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.6.4", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.6.4", "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.6.4", - "jest-message-util": "^29.6.3", "jest-util": "^29.6.3", - "natural-compare": "^1.4.0", - "pretty-format": "^29.6.3", - "semver": "^7.5.3" + "pretty-format": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { + "node_modules/jest-each/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7663,7 +8006,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/chalk": { + "node_modules/jest-each/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7679,7 +8022,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/color-convert": { + "node_modules/jest-each/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7691,13 +8034,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-snapshot/node_modules/color-name": { + "node_modules/jest-each/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-snapshot/node_modules/has-flag": { + "node_modules/jest-each/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7706,84 +8049,127 @@ "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/jest-environment-node": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.4.tgz", + "integrity": "sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.6.3", + "jest-util": "^29.6.3" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/jest-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", - "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", + "node_modules/jest-haste-map": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.4.tgz", + "integrity": "sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==", "dev": true, "dependencies": { "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "jest-regex-util": "^29.6.3", + "jest-util": "^29.6.3", + "jest-worker": "^29.6.4", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-haste-map/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.3.tgz", + "integrity": "sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.4.tgz", + "integrity": "sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-util/node_modules/chalk": { + "node_modules/jest-matcher-utils/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7799,7 +8185,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-util/node_modules/color-convert": { + "node_modules/jest-matcher-utils/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7811,13 +8197,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-util/node_modules/color-name": { + "node_modules/jest-matcher-utils/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-util/node_modules/has-flag": { + "node_modules/jest-matcher-utils/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7826,7 +8212,7 @@ "node": ">=8" } }, - "node_modules/jest-util/node_modules/supports-color": { + "node_modules/jest-matcher-utils/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -7838,24 +8224,27 @@ "node": ">=8" } }, - "node_modules/jest-validate": { + "node_modules/jest-message-util": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", - "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.3.tgz", + "integrity": "sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==", "dev": true, "dependencies": { + "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", - "camelcase": "^6.2.0", + "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "leven": "^3.1.0", - "pretty-format": "^29.6.3" + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.6.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { + "node_modules/jest-message-util/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7870,19 +8259,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-validate/node_modules/chalk": { + "node_modules/jest-message-util/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7898,7 +8275,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-validate/node_modules/color-convert": { + "node_modules/jest-message-util/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7910,13 +8287,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-validate/node_modules/color-name": { + "node_modules/jest-message-util/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-validate/node_modules/has-flag": { + "node_modules/jest-message-util/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7925,7 +8302,7 @@ "node": ">=8" } }, - "node_modules/jest-validate/node_modules/supports-color": { + "node_modules/jest-message-util/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -7937,26 +8314,80 @@ "node": ">=8" } }, - "node_modules/jest-watcher": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", - "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", + "node_modules/jest-mock": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.3.tgz", + "integrity": "sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==", "dev": true, "dependencies": { - "@jest/test-result": "^29.6.4", "@jest/types": "^29.6.3", "@types/node": "*", - "ansi-escapes": "^4.2.1", + "jest-util": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.4.tgz", + "integrity": "sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==", + "dev": true, + "dependencies": { "chalk": "^4.0.0", - "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-pnp-resolver": "^1.2.2", "jest-util": "^29.6.3", - "string-length": "^4.0.1" + "jest-validate": "^29.6.3", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { + "node_modules/jest-resolve-dependencies": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.4.tgz", + "integrity": "sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.6.4" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7971,7 +8402,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/chalk": { + "node_modules/jest-resolve/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7987,7 +8418,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/color-convert": { + "node_modules/jest-resolve/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -7999,13 +8430,13 @@ "node": ">=7.0.0" } }, - "node_modules/jest-watcher/node_modules/color-name": { + "node_modules/jest-resolve/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/jest-watcher/node_modules/has-flag": { + "node_modules/jest-resolve/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -8014,7 +8445,7 @@ "node": ">=8" } }, - "node_modules/jest-watcher/node_modules/supports-color": { + "node_modules/jest-resolve/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -8026,3813 +8457,4975 @@ "node": ">=8" } }, - "node_modules/jest-worker": { + "node_modules/jest-runner": { "version": "29.6.4", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", - "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.4.tgz", + "integrity": "sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==", "dev": true, "dependencies": { + "@jest/console": "^29.6.4", + "@jest/environment": "^29.6.4", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.6.3", + "jest-environment-node": "^29.6.4", + "jest-haste-map": "^29.6.4", + "jest-leak-detector": "^29.6.3", + "jest-message-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-runtime": "^29.6.4", "jest-util": "^29.6.3", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "jest-watcher": "^29.6.4", + "jest-worker": "^29.6.4", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/js-yaml": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", - "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "color-name": "~1.1.4" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/js2xmlparser": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.1.tgz", - "integrity": "sha512-KrPTolcw6RocpYjdC7pL7v62e55q7qOMHvLX1UCLc5AAS8qeJ6nukarEJAF2KL2PZxlbGueEbINqZR2bDe/gUw==", + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "xmlcreate": "^2.0.3" + "engines": { + "node": ">=8" } }, - "node_modules/jsdoc": { - "version": "3.6.6", - "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.6.tgz", - "integrity": "sha512-znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ==", + "node_modules/jest-runner/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "@babel/parser": "^7.9.4", - "bluebird": "^3.7.2", - "catharsis": "^0.8.11", - "escape-string-regexp": "^2.0.0", - "js2xmlparser": "^4.0.1", - "klaw": "^3.0.0", - "markdown-it": "^10.0.0", - "markdown-it-anchor": "^5.2.7", - "marked": "^0.8.2", - "mkdirp": "^1.0.4", - "requizzle": "^0.2.3", - "strip-json-comments": "^3.1.0", - "taffydb": "2.6.2", - "underscore": "~1.10.2" - }, - "bin": { - "jsdoc": "jsdoc.js" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=8.15.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdoc-type-pratt-parser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", - "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, - "engines": { - "node": ">=12.0.0" + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/jsdoc/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/jsdoc/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/jest-runtime": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.4.tgz", + "integrity": "sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" + "dependencies": { + "@jest/environment": "^29.6.4", + "@jest/fake-timers": "^29.6.4", + "@jest/globals": "^29.6.4", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-mock": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.6.4", + "jest-snapshot": "^29.6.4", + "jest-util": "^29.6.3", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jsdoc/node_modules/taffydb": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz", - "integrity": "sha1-fLy2S1oUG2ou/CxdLGe04VCyomg=", - "dev": true - }, - "node_modules/jsdoc/node_modules/underscore": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.10.2.tgz", - "integrity": "sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg==", - "dev": true - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "bin": { - "json5": "lib/cli.js" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, + "color-name": "~1.1.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">=7.0.0" } }, - "node_modules/klaw": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", - "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.9" - } + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/linkify-it": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz", - "integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==", - "dev": true, - "dependencies": { - "uc.micro": "^1.0.1" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "node_modules/jest-snapshot": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.4.tgz", + "integrity": "sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==", "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.6.4", + "@jest/transform": "^29.6.4", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.6.4", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.6.4", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.6.4", + "jest-message-util": "^29.6.3", + "jest-util": "^29.6.3", + "natural-compare": "^1.4.0", + "pretty-format": "^29.6.3", + "semver": "^7.5.3" + }, "engines": { - "node": ">=6.11.5" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "p-locate": "^4.1.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/markdown-it": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-10.0.0.tgz", - "integrity": "sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==", + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "argparse": "^1.0.7", - "entities": "~2.0.0", - "linkify-it": "^2.0.0", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "bin": { - "markdown-it": "bin/markdown-it.js" - } - }, - "node_modules/markdown-it-anchor": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz", - "integrity": "sha512-/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA==", - "dev": true, - "peerDependencies": { - "markdown-it": "*" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/marked": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz", - "integrity": "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==", + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "bin": { - "marked": "bin/marked" + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "node": ">= 8.16.2" + "node": ">=7.0.0" } }, - "node_modules/mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=", - "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">=8.6" + "node": ">=10" } }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "bin": { - "mime": "cli.js" + "semver": "bin/semver.js" }, "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" + "node": ">=10" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "mime-db": "1.52.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.3.tgz", + "integrity": "sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==", "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "color-convert": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "minimist": "^1.2.5" + "color-name": "~1.1.4" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "path-key": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/jest-validate": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.3.tgz", + "integrity": "sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==", "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.3" + }, "engines": { - "node": ">= 0.4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.0.tgz", - "integrity": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.21.2", - "get-intrinsic": "^1.2.1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=7.0.0" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "wrappy": "1" + "engines": { + "node": ">=8" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "mimic-fn": "^2.1.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", - "dev": true, - "bin": { - "opener": "bin/opener-bin.js" + "node": ">=8" } }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "node_modules/jest-watcher": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.4.tgz", + "integrity": "sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==", "dev": true, "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "@jest/test-result": "^29.6.4", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.6.3", + "string-length": "^4.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "p-limit": "^2.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "callsites": "^3.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=6" + "node": ">=7.0.0" } }, - "node_modules/path-exists": { + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/jest-worker": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.4.tgz", + "integrity": "sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==", "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.6.3", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-type": { + "node_modules/jest-worker/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", - "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "find-up": "^6.3.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", - "dev": true, - "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", - "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "node_modules/js-yaml": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", + "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", "dev": true, "dependencies": { - "p-locate": "^6.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "node_modules/js2xmlparser": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.1.tgz", + "integrity": "sha512-KrPTolcw6RocpYjdC7pL7v62e55q7qOMHvLX1UCLc5AAS8qeJ6nukarEJAF2KL2PZxlbGueEbINqZR2bDe/gUw==", "dev": true, "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "xmlcreate": "^2.0.3" } }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", - "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "node_modules/jsdoc": { + "version": "3.6.6", + "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.6.tgz", + "integrity": "sha512-znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ==", "dev": true, "dependencies": { - "p-limit": "^4.0.0" + "@babel/parser": "^7.9.4", + "bluebird": "^3.7.2", + "catharsis": "^0.8.11", + "escape-string-regexp": "^2.0.0", + "js2xmlparser": "^4.0.1", + "klaw": "^3.0.0", + "markdown-it": "^10.0.0", + "markdown-it-anchor": "^5.2.7", + "marked": "^0.8.2", + "mkdirp": "^1.0.4", + "requizzle": "^0.2.3", + "strip-json-comments": "^3.1.0", + "taffydb": "2.6.2", + "underscore": "~1.10.2" }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "bin": { + "jsdoc": "jsdoc.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8.15.0" } }, - "node_modules/pkg-dir/node_modules/path-exists": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", - "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "node_modules/jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=12.0.0" } }, - "node_modules/pkg-dir/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "node_modules/jsdoc/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/portfinder": { - "version": "1.0.28", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", - "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "node_modules/jsdoc/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "dependencies": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { - "node": ">= 0.12.0" + "node": ">=10" } }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "node_modules/jsdoc/node_modules/taffydb": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz", + "integrity": "sha1-fLy2S1oUG2ou/CxdLGe04VCyomg=", + "dev": true + }, + "node_modules/jsdoc/node_modules/underscore": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.10.2.tgz", + "integrity": "sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg==", + "dev": true + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, + "bin": { + "json5": "lib/cli.js" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=6" } }, - "node_modules/pretty-format": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", - "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", + "node_modules/keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", "dev": true, "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "json-buffer": "3.0.1" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/klaw": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", + "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", "dev": true, "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" + "graceful-fs": "^4.1.9" } }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, "engines": { "node": ">=6" } }, - "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" + "node": ">=6" } }, - "node_modules/qs": { - "version": "6.9.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz", - "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "engines": { - "node": ">=0.6" + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/linkify-it": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz", + "integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==", "dev": true, "dependencies": { - "safe-buffer": "^5.1.0" + "uc.micro": "^1.0.1" } }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } }, - "node_modules/rechoir": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", - "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "resolve": "^1.20.0" + "p-locate": "^4.1.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=8" } }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" + "yallist": "^3.0.2" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" + "tmpl": "1.0.5" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/markdown-it": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-10.0.0.tgz", + "integrity": "sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==", "dev": true, "dependencies": { - "jsesc": "~0.5.0" + "argparse": "^1.0.7", + "entities": "~2.0.0", + "linkify-it": "^2.0.0", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" }, "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "markdown-it": "bin/markdown-it.js" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "node_modules/markdown-it-anchor": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz", + "integrity": "sha512-/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "markdown-it": "*" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "node_modules/marked": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz", + "integrity": "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==", "dev": true, + "bin": { + "marked": "bin/marked" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 8.16.2" } }, - "node_modules/require-package-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", - "integrity": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=", + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=", "dev": true }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, - "node_modules/requizzle": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz", - "integrity": "sha512-YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ==", + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "dependencies": { - "lodash": "^4.17.14" + "engines": { + "node": ">= 8" } }, - "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8.6" } }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "dependencies": { - "resolve-from": "^5.0.0" + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, "engines": { - "node": ">=10" + "node": ">= 0.6" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "brace-expansion": "^1.1.7" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": "*" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safe-array-concat": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", - "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" + "minimist": "^1.2.5" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "bin": { + "mkdirp": "bin/cmd.js" + } }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true }, - "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true }, - "node_modules/schema-utils/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "whatwg-url": "^5.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" + "engines": { + "node": "4.x || >=6.0.0" }, "peerDependencies": { - "ajv": "^8.8.2" + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/schema-utils/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, - "node_modules/secure-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", - "integrity": "sha1-8aAymzCLIh+uN7mXTz1XjQypmeM=", + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "dependencies": { - "randombytes": "^2.1.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "kind-of": "^6.0.2" + "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "node_modules/object.groupby": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.0.tgz", + "integrity": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==", "dev": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "get-intrinsic": "^1.2.1" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", - "dev": true - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { - "escape-string-regexp": "^2.0.0" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=10" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", "dev": true, - "engines": { - "node": ">=8" + "bin": { + "opener": "bin/opener-bin.js" } }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, "engines": { - "node": ">=10" + "node": ">= 0.8.0" } }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "p-try": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "p-limit": "^2.2.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "callsites": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/strip-json-comments": { + "node_modules/path-key": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/supports-preserve-symlinks-flag": { + "node_modules/picocolors": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/taffydb": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.7.3.tgz", - "integrity": "sha1-KtNxaWKUmPylvIQkMJbTzeDsOjQ=", - "dev": true - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 6" } }, - "node_modules/terser": { - "version": "5.19.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz", - "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==", + "node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "dev": true, "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" + "find-up": "^6.3.0" }, "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "node_modules/pkg-dir/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "p-locate": "^6.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terser-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "p-limit": "^4.0.0" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "node_modules/pkg-dir/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", "dev": true, "engines": { - "node": ">=4" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", "dev": true, "dependencies": { - "is-number": "^7.0.0" + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" }, "engines": { - "node": ">=8.0" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "node": ">= 0.12.0" } }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", "dev": true, "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" + "ms": "^2.1.1" } }, - "node_modules/tslib": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", - "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==", - "dev": true - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + "node": ">= 0.8.0" } }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "node_modules/pretty-format": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.3.tgz", + "integrity": "sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, "engines": { - "node": ">= 0.4" + "node": ">= 6" } }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.6.0", + "teleport": ">=0.2.0" } }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "node_modules/qs": { + "version": "6.9.4", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz", + "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "engines": { + "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, - "peer": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/uc.micro": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", - "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", - "dev": true + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "safe-buffer": "^5.1.0" } }, - "node_modules/underscore": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.11.0.tgz", - "integrity": "sha512-xY96SsN3NA461qIRKZ/+qox37YXPtSBswMGfiNptr+wrt6ds4HaMw23TP612fEyGekRE6LNRiLYr/aqbHXNedw==", + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "dev": true, + "dependencies": { + "resolve": "^1.20.0" + }, "engines": { - "node": ">=4" + "node": ">= 10.13.0" } }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", "dev": true, "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" + "regenerate": "^1.4.2" }, "engines": { "node": ">=4" } }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "@babel/runtime": "^7.8.4" } }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/union": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", - "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, "dependencies": { - "qs": "^6.4.0" + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "jsesc": "~0.5.0" }, "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "regjsparser": "bin/parser" } }, - "node_modules/uri-js": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", - "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "dev": true, - "dependencies": { - "punycode": "^2.1.0" + "bin": { + "jsesc": "bin/jsesc" } }, - "node_modules/url-join": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz", - "integrity": "sha1-WvIvGMBSoACkjXuCxenC4v7tpyg=", - "dev": true - }, - "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, "engines": { - "node": ">=10.12.0" + "node": ">=0.10" } }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true, - "dependencies": { - "makeerror": "1.0.12" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dev": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, "engines": { - "node": ">=10.13.0" + "node": ">=0.10.0" } }, - "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "node_modules/require-package-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", + "integrity": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "node_modules/requizzle": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz", + "integrity": "sha512-YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ==", "dev": true, "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "lodash": "^4.17.14" } }, - "node_modules/webpack-cli": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", - "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dev": true, "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.1.1", - "@webpack-cli/info": "^2.0.2", - "@webpack-cli/serve": "^2.0.5", - "colorette": "^2.0.14", - "commander": "^10.0.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" + "resolve": "bin/resolve" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "engines": { - "node": ">=14" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/webpack-merge": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", - "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" + "resolve-from": "^5.0.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=8" } }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, - "peerDependencies": { - "acorn": "^8" + "engines": { + "node": ">=10" } }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "glob": "^7.1.3" }, "bin": { - "node-which": "bin/node-which" + "rimraf": "bin.js" }, - "engines": { - "node": ">= 8" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "queue-microtask": "^1.2.2" } }, - "node_modules/which-typed-array": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", - "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "node_modules/safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" }, "engines": { - "node": ">= 0.4" + "node": ">=0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/wildcard": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">=8" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "node_modules/secure-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", + "integrity": "sha1-8aAymzCLIh+uN7mXTz1XjQypmeM=", "dev": true }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "engines": { - "node": ">=8" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" + "randombytes": "^2.1.0" } }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" + "kind-of": "^6.0.2" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=8" } }, - "node_modules/xmlcreate": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.3.tgz", - "integrity": "sha512-HgS+X6zAztGa9zIK3Y3LXuJes33Lz9x+YyTxgrkIdabu2vqcGOWwdfCpf1hWLRrd553wd4QCDf6BBO6FfdsRiQ==", - "dev": true - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/yargs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/yargs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/yargs/node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true }, - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "requires": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "@babel/compat-data": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", - "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", + "node_modules/spdx-license-ids": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", "dev": true }, - "@babel/core": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", - "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, "dependencies": { - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - } + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "@babel/eslint-parser": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz", - "integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==", + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, - "requires": { - "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", - "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.1" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - } + "engines": { + "node": ">=8" } }, - "@babel/generator": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", - "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "requires": { - "@babel/types": "^7.23.0", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" } }, - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz", - "integrity": "sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==", + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", "dev": true, - "requires": { - "@babel/types": "^7.22.10" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", "dev": true, - "requires": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/helper-create-class-features-plugin": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.11.tgz", - "integrity": "sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "semver": "^6.3.1" + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz", - "integrity": "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==", + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.1" + "engines": { + "node": ">=4" } }, - "@babel/helper-define-polyfill-provider": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", - "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "engines": { + "node": ">=6" } }, - "@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true - }, - "@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, - "requires": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "node_modules/taffydb": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.7.3.tgz", + "integrity": "sha1-KtNxaWKUmPylvIQkMJbTzeDsOjQ=", + "dev": true + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true, - "requires": { - "@babel/types": "^7.22.15" + "engines": { + "node": ">=6" } }, - "@babel/helper-module-transforms": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", - "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", + "node_modules/terser": { + "version": "5.19.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz", + "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==", "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } } }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "engines": { + "node": ">=8" } }, - "@babel/helper-replace-supers": { - "version": "7.22.9", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz", - "integrity": "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==", + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5" + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" } }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "requires": { - "@babel/types": "^7.22.5" + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" } }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, - "@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" - } - }, - "@babel/helpers": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", - "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true, - "requires": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0" + "engines": { + "node": ">=4" } }, - "@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz", - "integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz", - "integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==", + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.15" + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" } }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "requires": {} + "node_modules/tslib": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", + "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==", + "dev": true }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "engines": { + "node": ">=4" } }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" } }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-syntax-import-attributes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", - "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "dependencies": { + "is-typedarray": "^1.0.0" } }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "node_modules/typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" } }, - "@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "node_modules/underscore": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.11.0.tgz", + "integrity": "sha512-xY96SsN3NA461qIRKZ/+qox37YXPtSBswMGfiNptr+wrt6ds4HaMw23TP612fEyGekRE6LNRiLYr/aqbHXNedw==", + "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "engines": { + "node": ">=4" } }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" + "engines": { + "node": ">=4" } }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "engines": { + "node": ">=4" } }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "node_modules/union": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "node_modules/uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "dependencies": { + "punycode": "^2.1.0" } }, - "@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } + "node_modules/url-join": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.5.tgz", + "integrity": "sha1-WvIvGMBSoACkjXuCxenC4v7tpyg=", + "dev": true }, - "@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" } }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", + "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", + "dev": true }, - "@babel/plugin-transform-async-generator-functions": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", - "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" + "dependencies": { + "makeerror": "1.0.12" } }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "@babel/plugin-transform-block-scoping": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz", - "integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==", + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/webpack": { + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "@babel/plugin-transform-class-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", - "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-class-static-block": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz", - "integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==", + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.11", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } } }, - "@babel/plugin-transform-classes": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz", - "integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==", + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-split-export-declaration": "^7.22.6", - "globals": "^11.1.0" + "engines": { + "node": ">=14" } }, - "@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "node_modules/webpack-merge": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz", + "integrity": "sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" } }, - "@babel/plugin-transform-destructuring": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz", - "integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==", + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "engines": { + "node": ">=10.13.0" } }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "peerDependencies": { + "acorn": "^8" } }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "@babel/plugin-transform-dynamic-import": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz", - "integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==", + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "@babel/plugin-transform-export-namespace-from": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz", - "integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==", + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-transform-for-of": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz", - "integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==", + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "@babel/plugin-transform-json-strings": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz", - "integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==", + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "@babel/plugin-transform-logical-assignment-operators": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz", - "integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==", + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "engines": { + "node": ">=8" } }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "@babel/plugin-transform-modules-amd": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz", - "integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==", + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz", - "integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==", + "node_modules/xdg-basedir": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", + "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz", - "integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==", + "node_modules/xmlcreate": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.3.tgz", + "integrity": "sha512-HgS+X6zAztGa9zIK3Y3LXuJes33Lz9x+YyTxgrkIdabu2vqcGOWwdfCpf1hWLRrd553wd4QCDf6BBO6FfdsRiQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" } }, - "@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "engines": { + "node": ">=12" } }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "engines": { + "node": ">=8" } }, - "@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz", - "integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==", + "node_modules/yargs/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "engines": { + "node": ">=10" } }, - "@babel/plugin-transform-numeric-separator": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz", - "integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==", + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true }, - "@babel/plugin-transform-object-rest-spread": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz", - "integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==", + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, "requires": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.22.15" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" } }, - "@babel/plugin-transform-optional-catch-binding": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz", - "integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==", + "@babel/compat-data": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", + "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", + "dev": true + }, + "@babel/core": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", + "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helpers": "^7.23.2", + "@babel/parser": "^7.23.0", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + } } }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz", - "integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==", + "@babel/eslint-parser": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz", + "integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } } }, - "@babel/plugin-transform-parameters": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz", - "integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==", + "@babel/generator": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.23.0", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" } }, - "@babel/plugin-transform-private-methods": { + "@babel/helper-annotate-as-pure": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", - "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.22.5" } }, - "@babel/plugin-transform-private-property-in-object": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz", - "integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==", + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz", + "integrity": "sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.11", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/types": "^7.22.10" } }, - "@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" } }, - "@babel/plugin-transform-regenerator": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", - "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "@babel/helper-create-class-features-plugin": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.11.tgz", + "integrity": "sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.2" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" } }, - "@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "@babel/helper-create-regexp-features-plugin": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz", + "integrity": "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" } }, - "@babel/plugin-transform-runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz", - "integrity": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==", + "@babel/helper-define-polyfill-provider": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", + "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", - "semver": "^6.3.1" + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" } }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" } }, - "@babel/plugin-transform-spread": { + "@babel/helper-hoist-variables": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/types": "^7.22.5" } }, - "@babel/plugin-transform-sticky-regex": { + "@babel/helper-member-expression-to-functions": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.22.5" } }, - "@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.22.15" } }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "@babel/helper-module-transforms": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", + "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" } }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", - "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.22.5" } }, - "@babel/plugin-transform-unicode-property-regex": { + "@babel/helper-plugin-utils": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", - "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" } }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "@babel/helper-replace-supers": { + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz", + "integrity": "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5" } }, - "@babel/plugin-transform-unicode-sets-regex": { + "@babel/helper-simple-access": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", - "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.22.5" } }, - "@babel/preset-env": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", - "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.23.2", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.23.2", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.23.0", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.11", - "@babel/plugin-transform-classes": "^7.22.15", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.23.0", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.11", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.11", - "@babel/plugin-transform-for-of": "^7.22.15", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.11", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.23.0", - "@babel/plugin-transform-modules-commonjs": "^7.23.0", - "@babel/plugin-transform-modules-systemjs": "^7.23.0", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", - "@babel/plugin-transform-numeric-separator": "^7.22.11", - "@babel/plugin-transform-object-rest-spread": "^7.22.15", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.11", - "@babel/plugin-transform-optional-chaining": "^7.23.0", - "@babel/plugin-transform-parameters": "^7.22.15", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.11", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.10", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.10", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "@babel/types": "^7.23.0", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", - "core-js-compat": "^3.31.0", - "semver": "^6.3.1" + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" } }, - "@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" + "@babel/types": "^7.22.5" } }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", "dev": true }, - "@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.14.0" - } + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true }, - "@babel/template": { + "@babel/helper-validator-option": { "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "dev": true, "requires": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" } }, - "@babel/traverse": { + "@babel/helpers": { "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", - "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", + "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", "dev": true, "requires": { - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.0", - "@babel/types": "^7.23.0", - "debug": "^4.1.0", - "globals": "^11.1.0" + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0" } }, - "@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" } }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "@babel/parser": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", "dev": true }, - "@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz", + "integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } }, - "@es-joy/jsdoccomment": { - "version": "0.40.1", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz", - "integrity": "sha512-YORCdZSusAlBrFpZ77pJjc5r1bQs5caPWtAu+WWmiSo+8XaUzseapVrfAtiRFbQWnrBxxLLEwF6f6ZG/UgCQCg==", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz", + "integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==", "dev": true, "requires": { - "comment-parser": "1.4.0", - "esquery": "^1.5.0", - "jsdoc-type-pratt-parser": "~4.0.0" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.15" } }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "dev": true, "requires": { - "eslint-visitor-keys": "^3.3.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true - } + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, - "@eslint-community/regexpp": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz", - "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==", - "dev": true + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "requires": {} }, - "@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", + "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", + "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", + "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", + "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", + "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", + "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz", + "integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", + "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz", + "integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz", + "integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", + "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz", + "integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", + "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", + "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz", + "integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", + "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz", + "integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz", + "integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", + "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz", + "integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", + "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz", + "integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", + "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz", + "integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz", + "integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz", + "integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", + "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", + "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz", + "integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz", + "integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz", + "integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.15" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", + "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz", + "integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz", + "integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz", + "integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", + "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.22.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz", + "integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", + "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", + "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", + "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz", + "integrity": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", + "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", + "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", + "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", + "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", + "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", + "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", + "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", + "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", + "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/preset-env": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", + "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.23.2", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.23.2", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.11", + "@babel/plugin-transform-classes": "^7.22.15", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.23.0", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.11", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-for-of": "^7.22.15", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.11", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.23.0", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-modules-systemjs": "^7.23.0", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-numeric-separator": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.22.15", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.10", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.10", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/types": "^7.23.0", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + } + }, + "@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + } + }, + "@babel/traverse": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@cspell/cspell-bundled-dicts": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-7.3.8.tgz", + "integrity": "sha512-Dj8iSGQyfgIsCjmXk9D/SjV7EpbpQSogeaGcBM66H33pd0GyGmLhn3biRN+vqi/vqWmsp75rT3kd5MKa8X5W9Q==", + "dev": true, + "requires": { + "@cspell/dict-ada": "^4.0.2", + "@cspell/dict-aws": "^4.0.0", + "@cspell/dict-bash": "^4.1.2", + "@cspell/dict-companies": "^3.0.26", + "@cspell/dict-cpp": "^5.0.8", + "@cspell/dict-cryptocurrencies": "^4.0.0", + "@cspell/dict-csharp": "^4.0.2", + "@cspell/dict-css": "^4.0.12", + "@cspell/dict-dart": "^2.0.3", + "@cspell/dict-django": "^4.1.0", + "@cspell/dict-docker": "^1.1.7", + "@cspell/dict-dotnet": "^5.0.0", + "@cspell/dict-elixir": "^4.0.3", + "@cspell/dict-en_us": "^4.3.9", + "@cspell/dict-en-common-misspellings": "^1.0.2", + "@cspell/dict-en-gb": "1.1.33", + "@cspell/dict-filetypes": "^3.0.1", + "@cspell/dict-fonts": "^4.0.0", + "@cspell/dict-fsharp": "^1.0.0", + "@cspell/dict-fullstack": "^3.1.5", + "@cspell/dict-gaming-terms": "^1.0.4", + "@cspell/dict-git": "^2.0.0", + "@cspell/dict-golang": "^6.0.3", + "@cspell/dict-haskell": "^4.0.1", + "@cspell/dict-html": "^4.0.5", + "@cspell/dict-html-symbol-entities": "^4.0.0", + "@cspell/dict-java": "^5.0.6", + "@cspell/dict-k8s": "^1.0.1", + "@cspell/dict-latex": "^4.0.0", + "@cspell/dict-lorem-ipsum": "^4.0.0", + "@cspell/dict-lua": "^4.0.2", + "@cspell/dict-node": "^4.0.3", + "@cspell/dict-npm": "^5.0.12", + "@cspell/dict-php": "^4.0.3", + "@cspell/dict-powershell": "^5.0.2", + "@cspell/dict-public-licenses": "^2.0.5", + "@cspell/dict-python": "^4.1.9", + "@cspell/dict-r": "^2.0.1", + "@cspell/dict-ruby": "^5.0.1", + "@cspell/dict-rust": "^4.0.1", + "@cspell/dict-scala": "^5.0.0", + "@cspell/dict-software-terms": "^3.3.6", + "@cspell/dict-sql": "^2.1.2", + "@cspell/dict-svelte": "^1.0.2", + "@cspell/dict-swift": "^2.0.1", + "@cspell/dict-typescript": "^3.1.2", + "@cspell/dict-vue": "^3.0.0" + } + }, + "@cspell/cspell-json-reporter": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-7.3.8.tgz", + "integrity": "sha512-FxYJWtDgxIQYxdP0RWwRV8nzLfxVx8D8D5L2sbbP/0NFczDbq/zWYep4nSAHJT10aUJrogsVUYwNwdkr562wKA==", + "dev": true, + "requires": { + "@cspell/cspell-types": "7.3.8" + } + }, + "@cspell/cspell-pipe": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-7.3.8.tgz", + "integrity": "sha512-/vKPfiHM5bJUkNX12w9j533Lm2JvvSMKUCChM2AxYjy6vL8prc/7ei++4g2xAWwRxLZPg2OfpDJS5EirZNBJdA==", + "dev": true + }, + "@cspell/cspell-resolver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-7.3.8.tgz", + "integrity": "sha512-CeyQmhqZI5a+T7a6oiVN90TFlzU3qVVYqCaZ9grFrVOsmzY9ipH5gmqfgMavaBOqb0di/+VZS8d02suMOXcKLQ==", + "dev": true, + "requires": { + "global-dirs": "^3.0.1" + } + }, + "@cspell/cspell-service-bus": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-7.3.8.tgz", + "integrity": "sha512-3E7gwY6QILrZH83p69i9CERbRBEqeBiKCIKnAd7U2PbxfFqG/P47fqpnarzSWFwFpU92oyGsYry+wC8TEGISRQ==", + "dev": true + }, + "@cspell/cspell-types": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-7.3.8.tgz", + "integrity": "sha512-hsOtaULDnawEL4pU0fga941GhvE8mbTbywrJBx+eGX3fnJsaUr8XQzCtnLsW2ko7WCLWFItNEhSSTPQHBFRLsw==", + "dev": true + }, + "@cspell/dict-ada": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.2.tgz", + "integrity": "sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA==", + "dev": true + }, + "@cspell/dict-aws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.0.tgz", + "integrity": "sha512-1YkCMWuna/EGIDN/zKkW+j98/55mxigftrSFgsehXhPld+ZMJM5J9UuBA88YfL7+/ETvBdd7mwW6IwWsC+/ltQ==", + "dev": true + }, + "@cspell/dict-bash": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.1.2.tgz", + "integrity": "sha512-AEBWjbaMaJEyAjOHW0F15P2izBjli2cNerG3NjuVH7xX/HUUeNoTj8FF1nwpMufKwGQCvuyO2hCmkVxhJ0y55Q==", + "dev": true + }, + "@cspell/dict-companies": { + "version": "3.0.27", + "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.27.tgz", + "integrity": "sha512-gaPR/luf+4oKGyxvW4GbxGGPdHiC5kj/QefnmQqrLFrLiCSXMZg5/NL+Lr4E5lcHsd35meX61svITQAvsT7lyQ==", + "dev": true + }, + "@cspell/dict-cpp": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.0.9.tgz", + "integrity": "sha512-ql9WPNp8c+fhdpVpjpZEUWmxBHJXs9CJuiVVfW/iwv5AX7VuMHyEwid+9/6nA8qnCxkUQ5pW83Ums1lLjn8ScA==", + "dev": true + }, + "@cspell/dict-cryptocurrencies": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-4.0.0.tgz", + "integrity": "sha512-EiZp91ATyRxTmauIQfOX9adLYCunKjHEh092rrM7o2eMXP9n7zpXAL9BK7LviL+LbB8VDOm21q+s83cKrrRrsg==", + "dev": true + }, + "@cspell/dict-csharp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz", + "integrity": "sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==", + "dev": true + }, + "@cspell/dict-css": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.12.tgz", + "integrity": "sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw==", + "dev": true + }, + "@cspell/dict-dart": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.3.tgz", + "integrity": "sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==", + "dev": true + }, + "@cspell/dict-data-science": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.11.tgz", + "integrity": "sha512-TaHAZRVe0Zlcc3C23StZqqbzC0NrodRwoSAc8dis+5qLeLLnOCtagYQeROQvDlcDg3X/VVEO9Whh4W/z4PAmYQ==", + "dev": true + }, + "@cspell/dict-django": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.0.tgz", + "integrity": "sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==", + "dev": true + }, + "@cspell/dict-docker": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.7.tgz", + "integrity": "sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==", + "dev": true + }, + "@cspell/dict-dotnet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.0.tgz", + "integrity": "sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==", + "dev": true + }, + "@cspell/dict-elixir": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz", + "integrity": "sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==", + "dev": true + }, + "@cspell/dict-en_us": { + "version": "4.3.11", + "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.11.tgz", + "integrity": "sha512-GhdavZFlS2YbUNcRtPbgJ9j6aUyq116LmDQ2/Q5SpQxJ5/6vVs8Yj5WxV1JD+Zh/Zim1NJDcneTOuLsUGi+Czw==", + "dev": true + }, + "@cspell/dict-en-common-misspellings": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-1.0.2.tgz", + "integrity": "sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==", + "dev": true + }, + "@cspell/dict-en-gb": { + "version": "1.1.33", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", + "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", + "dev": true + }, + "@cspell/dict-filetypes": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.2.tgz", + "integrity": "sha512-StoC0wPmFNav6F6P8/FYFN1BpZfPgOmktb8gQ9wTauelWofPeBW+A0t5ncZt9hXHtnbGDA98v4ukacV+ucbnUg==", + "dev": true + }, + "@cspell/dict-fonts": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz", + "integrity": "sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q==", + "dev": true + }, + "@cspell/dict-fsharp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.0.1.tgz", + "integrity": "sha512-23xyPcD+j+NnqOjRHgW3IU7Li912SX9wmeefcY0QxukbAxJ/vAN4rBpjSwwYZeQPAn3fxdfdNZs03fg+UM+4yQ==", + "dev": true + }, + "@cspell/dict-fullstack": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.1.5.tgz", + "integrity": "sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==", + "dev": true + }, + "@cspell/dict-gaming-terms": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.4.tgz", + "integrity": "sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==", + "dev": true + }, + "@cspell/dict-git": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-2.0.0.tgz", + "integrity": "sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==", + "dev": true + }, + "@cspell/dict-golang": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.4.tgz", + "integrity": "sha512-jOfewPEyN6U9Q80okE3b1PTYBfqZgHh7w4o271GSuAX+VKJ1lUDhdR4bPKRxSDdO5jHArw2u5C8nH2CWGuygbQ==", + "dev": true + }, + "@cspell/dict-haskell": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz", + "integrity": "sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==", + "dev": true + }, + "@cspell/dict-html": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.5.tgz", + "integrity": "sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w==", + "dev": true + }, + "@cspell/dict-html-symbol-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz", + "integrity": "sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==", + "dev": true + }, + "@cspell/dict-java": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.6.tgz", + "integrity": "sha512-kdE4AHHHrixyZ5p6zyms1SLoYpaJarPxrz8Tveo6gddszBVVwIUZ+JkQE1bWNLK740GWzIXdkznpUfw1hP9nXw==", + "dev": true + }, + "@cspell/dict-k8s": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.2.tgz", + "integrity": "sha512-tLT7gZpNPnGa+IIFvK9SP1LrSpPpJ94a/DulzAPOb1Q2UBFwdpFd82UWhio0RNShduvKG/WiMZf/wGl98pn+VQ==", + "dev": true + }, + "@cspell/dict-latex": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.0.tgz", + "integrity": "sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==", + "dev": true + }, + "@cspell/dict-lorem-ipsum": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz", + "integrity": "sha512-1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw==", + "dev": true + }, + "@cspell/dict-lua": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.2.tgz", + "integrity": "sha512-eeC20Q+UnHcTVBK6pgwhSjGIVugO2XqU7hv4ZfXp2F9DxGx1RME0+1sKX4qAGhdFGwOBsEzb2fwUsAEP6Mibpg==", + "dev": true + }, + "@cspell/dict-node": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-4.0.3.tgz", + "integrity": "sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg==", + "dev": true + }, + "@cspell/dict-npm": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.12.tgz", + "integrity": "sha512-T/+WeQmtbxo7ad6hrdI8URptYstKJP+kXyWJZfuVJJGWJQ7yubxrI5Z5AfM+Dh/ff4xHmdzapxD9adaEQ727uw==", + "dev": true + }, + "@cspell/dict-php": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.4.tgz", + "integrity": "sha512-fRlLV730fJbulDsLIouZxXoxHt3KIH6hcLFwxaupHL+iTXDg0lo7neRpbqD5MScr/J3idEr7i9G8XWzIikKFug==", + "dev": true + }, + "@cspell/dict-powershell": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.2.tgz", + "integrity": "sha512-IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw==", + "dev": true + }, + "@cspell/dict-public-licenses": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.5.tgz", + "integrity": "sha512-91HK4dSRri/HqzAypHgduRMarJAleOX5NugoI8SjDLPzWYkwZ1ftuCXSk+fy8DLc3wK7iOaFcZAvbjmnLhVs4A==", + "dev": true + }, + "@cspell/dict-python": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.1.10.tgz", + "integrity": "sha512-ErF/Ohcu6Xk4QVNzFgo8p7CxkxvAKAmFszvso41qOOhu8CVpB35ikBRpGVDw9gsCUtZzi15Yl0izi4do6WcLkA==", + "dev": true, + "requires": { + "@cspell/dict-data-science": "^1.0.11" + } + }, + "@cspell/dict-r": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.0.1.tgz", + "integrity": "sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==", + "dev": true + }, + "@cspell/dict-ruby": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.1.tgz", + "integrity": "sha512-rruTm7Emhty/BSYavSm8ZxRuVw0OBqzJkwIFXcV0cX7To8D1qbmS9HFHRuRg8IL11+/nJvtdDz+lMFBSmPUagQ==", + "dev": true + }, + "@cspell/dict-rust": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.1.tgz", + "integrity": "sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==", + "dev": true + }, + "@cspell/dict-scala": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.0.tgz", + "integrity": "sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==", + "dev": true + }, + "@cspell/dict-software-terms": { + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.3.9.tgz", + "integrity": "sha512-/O3EWe0SIznx18S7J3GAXPDe7sexn3uTsf4IlnGYK9WY6ZRuEywkXCB+5/USLTGf4+QC05pkHofphdvVSifDyA==", + "dev": true + }, + "@cspell/dict-sql": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.2.tgz", + "integrity": "sha512-Pi0hAcvsSGtZZeyyAN1VfGtQJbrXos5x2QjJU0niAQKhmITSOrXU/1II1Gogk+FYDjWyV9wP2De0U2f7EWs6oQ==", + "dev": true + }, + "@cspell/dict-svelte": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz", + "integrity": "sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==", + "dev": true + }, + "@cspell/dict-swift": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.1.tgz", + "integrity": "sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==", + "dev": true + }, + "@cspell/dict-typescript": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.2.tgz", + "integrity": "sha512-lcNOYWjLUvDZdLa0UMNd/LwfVdxhE9rKA+agZBGjL3lTA3uNvH7IUqSJM/IXhJoBpLLMVEOk8v1N9xi+vDuCdA==", + "dev": true + }, + "@cspell/dict-vue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.0.tgz", + "integrity": "sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==", + "dev": true + }, + "@cspell/dynamic-import": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-7.3.8.tgz", + "integrity": "sha512-s8x7dH/ScfW0pFEIvNFo4JOR7YmvM2wZSHOykmWTJCQ8k2EQ/+uECPp6ZxkoJoukTz8sj+3KzF0fRl5mKxPd6g==", + "dev": true, + "requires": { + "import-meta-resolve": "^3.0.0" + } + }, + "@cspell/strong-weak-map": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-7.3.8.tgz", + "integrity": "sha512-qNnt2wG45wb8JP54mENarnQgxfSYKPp3zlYID/2przbMNmVJRqUlcIBOdLI6plCgGeNkzJTl3T9T1ATbnN+LLw==", + "dev": true + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true + }, + "@es-joy/jsdoccomment": { + "version": "0.40.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.40.1.tgz", + "integrity": "sha512-YORCdZSusAlBrFpZ77pJjc5r1bQs5caPWtAu+WWmiSo+8XaUzseapVrfAtiRFbQWnrBxxLLEwF6f6ZG/UgCQCg==", + "dev": true, + "requires": { + "comment-parser": "1.4.0", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" + } + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + } + } + }, + "@eslint-community/regexpp": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz", + "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, @@ -12936,769 +14529,1184 @@ "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "requires": {} + }, + "@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + } + }, + "array-timsort": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", + "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array.prototype.findlastindex": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz", + "integrity": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" } }, - "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.11.6", - "@xtuc/long": "4.2.2" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" } }, - "@webpack-cli/configtest": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", - "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", "dev": true, - "requires": {} + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } }, - "@webpack-cli/info": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", - "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "arraybuffer.prototype.slice": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", + "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", "dev": true, - "requires": {} + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } }, - "@webpack-cli/serve": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", - "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", "dev": true, - "requires": {} + "requires": { + "lodash": "^4.17.14" + } }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", "dev": true }, - "acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "dev": true + "axios": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.0.tgz", + "integrity": "sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==", + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", "dev": true, "requires": {} }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "babel-jest": { + "version": "29.6.4", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", + "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", "dev": true, "requires": { - "ajv": "^8.0.0" + "@jest/transform": "^29.6.4", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" }, "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", "dev": true, "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" } }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "dev": true, + "requires": { + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-lodash": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz", + "integrity": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.0.0-beta.49", + "@babel/types": "^7.0.0-beta.49", + "glob": "^7.1.1", + "lodash": "^4.17.10", + "require-package-name": "^2.0.1" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", + "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.3", + "semver": "^6.3.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.5.tgz", + "integrity": "sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==", "dev": true, - "requires": {} + "requires": { + "@babel/helper-define-polyfill-provider": "^0.4.3", + "core-js-compat": "^3.32.2" + } }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "babel-plugin-polyfill-regenerator": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", + "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", "dev": true, "requires": { - "type-fest": "^0.21.3" - }, - "dependencies": { - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - } + "@babel/helper-define-polyfill-provider": "^0.4.3" } }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "requires": { - "color-convert": "^1.9.0" + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" } }, - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" } }, - "are-docs-informative": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", - "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "basic-auth": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz", + "integrity": "sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ=", + "dev": true + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { - "sprintf-js": "~1.0.2" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "fill-range": "^7.0.1" } }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "browserslist": { + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" } }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array.prototype.findlastindex": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz", - "integrity": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==", + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "node-int64": "^0.4.0" } }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" } }, - "array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001551", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz", + "integrity": "sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==", + "dev": true + }, + "catharsis": { + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz", + "integrity": "sha512-a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "lodash": "^4.17.14" } }, - "arraybuffer.prototype.slice": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz", - "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==", + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "chalk-template": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.0.tgz", + "integrity": "sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==", "dev": true, "requires": { - "lodash": "^4.17.14" + "chalk": "^5.2.0" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + } } }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, - "axios": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.5.0.tgz", - "integrity": "sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==", + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dev": true, "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "tslib": "^1.9.0" } }, - "babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", - "dev": true, - "requires": {} + "ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true }, - "babel-jest": { - "version": "29.6.4", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.4.tgz", - "integrity": "sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==", + "cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "clear-module": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz", + "integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==", "dev": true, "requires": { - "@jest/transform": "^29.6.4", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.6.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" + "parent-module": "^2.0.0", + "resolve-from": "^5.0.0" }, "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "parent-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", + "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", "dev": true, "requires": { - "color-name": "~1.1.4" + "callsites": "^3.1.0" } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + } + } + }, + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } } } }, - "babel-loader": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", - "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "requires": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" } }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true }, - "babel-plugin-jest-hoist": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", - "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } + "collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true }, - "babel-plugin-lodash": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz", - "integrity": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==", + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.0.0-beta.49", - "@babel/types": "^7.0.0-beta.49", - "glob": "^7.1.1", - "lodash": "^4.17.10", - "require-package-name": "^2.0.1" + "color-name": "1.1.3" } }, - "babel-plugin-polyfill-corejs2": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", - "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", - "semver": "^6.3.1" - } + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true }, - "babel-plugin-polyfill-corejs3": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.5.tgz", - "integrity": "sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.3", - "core-js-compat": "^3.32.2" - } + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true }, - "babel-plugin-polyfill-regenerator": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", - "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.3" - } + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "delayed-stream": "~1.0.0" } }, - "babel-preset-jest": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", - "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "comment-json": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.3.tgz", + "integrity": "sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==", "dev": true, "requires": { - "babel-plugin-jest-hoist": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0" + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" } }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "basic-auth": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz", - "integrity": "sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ=", + "comment-parser": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.0.tgz", + "integrity": "sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw==", "dev": true }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "configstore": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", "dev": true, "requires": { - "fill-range": "^7.0.1" + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + }, + "dependencies": { + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } } }, - "browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" + "safe-buffer": "~5.1.1" } }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "core-js-compat": { + "version": "3.33.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.1.tgz", + "integrity": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==", "dev": true, "requires": { - "node-int64": "^0.4.0" + "browserslist": "^4.22.1" } }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true }, - "builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "corser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", + "integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=", "dev": true }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "cosmiconfig": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz", + "integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==", "dev": true, "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } } }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001551", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz", - "integrity": "sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==", - "dev": true - }, - "catharsis": { - "version": "0.8.11", - "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz", - "integrity": "sha512-a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g==", + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { - "lodash": "^4.17.14" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" } }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "type-fest": "^1.0.1" + }, + "dependencies": { + "type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true + } } }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true + "cspell": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-7.3.8.tgz", + "integrity": "sha512-8AkqsBQAMsKYV5XyJLB6rBs5hgspL4+MPOg6mBKG2j5EvQgRVc6dIfAPWDNLpIeW2a3+7K5BIWqKHapKPeiknQ==", + "dev": true, + "requires": { + "@cspell/cspell-json-reporter": "7.3.8", + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "@cspell/dynamic-import": "7.3.8", + "chalk": "^5.3.0", + "chalk-template": "^1.1.0", + "commander": "^11.1.0", + "cspell-gitignore": "7.3.8", + "cspell-glob": "7.3.8", + "cspell-io": "7.3.8", + "cspell-lib": "7.3.8", + "fast-glob": "^3.3.1", + "fast-json-stable-stringify": "^2.1.0", + "file-entry-cache": "^7.0.1", + "get-stdin": "^9.0.0", + "semver": "^7.5.4", + "strip-ansi": "^7.1.0", + "vscode-uri": "^3.0.8" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "dev": true + }, + "file-entry-cache": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-7.0.1.tgz", + "integrity": "sha512-uLfFktPmRetVCbHe5UPuekWrQ6hENufnA46qEGbfACkK5drjTTdQYUragRgMjHldcbYG+nslUerqMPjbBSHXjQ==", + "dev": true, + "requires": { + "flat-cache": "^3.1.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } }, - "chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "cspell-dictionary": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-7.3.8.tgz", + "integrity": "sha512-gkq4t78eLR0xC3P0vDDHPeNY4iZRd5YE6Z8uDJ7RM4UaX/TSdVUN9KNFr34RnJ119NYVHujpL9+uW7wPSAe8Eg==", "dev": true, "requires": { - "tslib": "^1.9.0" + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "cspell-trie-lib": "7.3.8", + "fast-equals": "^4.0.3", + "gensequence": "^6.0.0" + }, + "dependencies": { + "fast-equals": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-4.0.3.tgz", + "integrity": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==", + "dev": true + } } }, - "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true - }, - "cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", - "dev": true - }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "cspell-gitignore": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-7.3.8.tgz", + "integrity": "sha512-vJzCOUEiw6/MwV/U4Ux3bgSdj9mXB+X5eHL+qzVoyFI7ArlvrkuGTL+iFJThQcS8McM3SGqtvaBNCiKBmAeCkA==", "dev": true, "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "cspell-glob": "7.3.8", + "find-up": "^5.0.0" }, "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "p-limit": "^3.0.2" } } } }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "cspell-glob": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-7.3.8.tgz", + "integrity": "sha512-wUZC6znyxEs0wlhzGfZ4XHkATPJyazJIFi/VvAdj+KHe7U8SoSgitJVDQqdgectI2y3MxR7lQdVLX9dONFh+7A==", "dev": true, "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "micromatch": "^4.0.5" } }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "cspell-grammar": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-7.3.8.tgz", + "integrity": "sha512-nTjAlMAZAVSFhBd9U3MB9l5FfC5JCCr9DTOA2wWxusVOm+36MbSEH90ucLPkhPa9/+0HtbpDhqVMwXCZllRpsg==", "dev": true, "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8" } }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "comment-parser": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.0.tgz", - "integrity": "sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw==", - "dev": true - }, - "common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "cspell-io": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-7.3.8.tgz", + "integrity": "sha512-XrxPbaiek7EZh+26k9RYVz2wKclaMqM6mXBiu/kpFAHRHHfz91ado6xWvyxZ7UAxQ8ixEwZ+oz9TU+k21gHzyw==", "dev": true, "requires": { - "safe-buffer": "~5.1.1" + "@cspell/cspell-service-bus": "7.3.8", + "node-fetch": "^2.7.0" } }, - "core-js-compat": { - "version": "3.33.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.1.tgz", - "integrity": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==", + "cspell-lib": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-7.3.8.tgz", + "integrity": "sha512-2L770sI5DdsAKVzO3jxmfP2fz4LryW6dzL93BpN7WU+ebFC6rg4ioa5liOJV4WoDo2fNQMSeqfW4Aawu9zWR7A==", "dev": true, "requires": { - "browserslist": "^4.22.1" + "@cspell/cspell-bundled-dicts": "7.3.8", + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-resolver": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "@cspell/dynamic-import": "7.3.8", + "@cspell/strong-weak-map": "7.3.8", + "clear-module": "^4.1.2", + "comment-json": "^4.2.3", + "configstore": "^6.0.0", + "cosmiconfig": "8.0.0", + "cspell-dictionary": "7.3.8", + "cspell-glob": "7.3.8", + "cspell-grammar": "7.3.8", + "cspell-io": "7.3.8", + "cspell-trie-lib": "7.3.8", + "fast-equals": "^5.0.1", + "find-up": "^6.3.0", + "gensequence": "^6.0.0", + "import-fresh": "^3.3.0", + "resolve-from": "^5.0.0", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.8" + }, + "dependencies": { + "find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "requires": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + } + }, + "locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + }, + "yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true + } } }, - "corser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", - "integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "cspell-trie-lib": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-7.3.8.tgz", + "integrity": "sha512-UQx1Bazbyz2eQJ/EnMohINnUdZvAQL+OcQU3EPPbNWM1DWF4bJGgmFXKNCRYfJk6wtOZVXG5g5AZXx9KnHeN9A==", "dev": true, "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "@cspell/cspell-pipe": "7.3.8", + "@cspell/cspell-types": "7.3.8", + "gensequence": "^6.0.0" } }, "debug": { @@ -13774,6 +15782,15 @@ "esutils": "^2.0.2" } }, + "dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, "dotenv": { "version": "16.3.1", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", @@ -14408,6 +16425,12 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "fast-equals": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", + "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", + "dev": true + }, "fast-glob": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", @@ -14507,20 +16530,20 @@ } }, "flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", + "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", "dev": true, "requires": { - "flatted": "^3.2.7", + "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" } }, "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, "follow-redirects": { @@ -14577,6 +16600,12 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true }, + "gensequence": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-6.0.0.tgz", + "integrity": "sha512-8WwuywE9pokJRAcg2QFR/plk3cVPebSUqRPzpGQh3WQ0wIiHAw+HyOQj5IuHyUTQBHpBKFoB2JUMu9zT3vJ16Q==", + "dev": true + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -14607,6 +16636,12 @@ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, + "get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", + "dev": true + }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -14652,6 +16687,15 @@ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, + "global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "dev": true, + "requires": { + "ini": "2.0.0" + } + }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -14723,6 +16767,12 @@ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true }, + "has-own-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", + "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", + "dev": true + }, "has-property-descriptors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", @@ -14845,6 +16895,12 @@ } } }, + "import-meta-resolve": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.1.1.tgz", + "integrity": "sha512-qeywsE/KC3w9Fd2ORrRDUw6nS/nLwZpXgfrOc2IILvZYnCaEMd+D56Vfg9k4G29gIeVi3XKql1RQatME8iYsiw==", + "dev": true + }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -14867,6 +16923,12 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true + }, "internal-slot": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", @@ -14995,6 +17057,12 @@ "has-tostringtag": "^1.0.0" } }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, "is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -15062,6 +17130,12 @@ "which-typed-array": "^1.1.11" } }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, "is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", @@ -15453,18 +17527,6 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -16772,6 +18834,15 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -16939,6 +19010,18 @@ "callsites": "^3.0.0" } }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -17235,6 +19318,12 @@ } } }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -17728,6 +19817,12 @@ "is-number": "^7.0.0" } }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "tsconfig-paths": { "version": "3.14.2", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", @@ -17834,6 +19929,15 @@ "is-typed-array": "^1.1.9" } }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, "typescript": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", @@ -17902,6 +20006,15 @@ "qs": "^6.4.0" } }, + "unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "requires": { + "crypto-random-string": "^4.0.0" + } + }, "update-browserslist-db": { "version": "1.0.13", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", @@ -17938,6 +20051,18 @@ "convert-source-map": "^1.6.0" } }, + "vscode-languageserver-textdocument": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", + "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", + "dev": true + }, + "vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true + }, "walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -17957,6 +20082,12 @@ "graceful-fs": "^4.1.2" } }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, "webpack": { "version": "5.88.2", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", @@ -18054,6 +20185,16 @@ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -18171,6 +20312,12 @@ "signal-exit": "^3.0.7" } }, + "xdg-basedir": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", + "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", + "dev": true + }, "xmlcreate": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.3.tgz", diff --git a/package.json b/package.json index 6921a39..22ab0be 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,9 @@ "clean:dist": "rm -rf web.js web.js.map node.js node.js.map web-dev.js web-dev.js.map node-dev.js node-dev.js.map", "clean:docs": "rm -rf docs", "ci": "npm run clean && npm run lint && npm run test && npm run build && npm run build:docs", - "lint": "eslint integration-tests/**/*.js src/**/*.js", + "lint": "npm run lint:js && npm run lint:spelling", + "lint:js": "eslint integration-tests/**/*.js src/**/*.js", + "lint:spelling": "cspell integration-tests/**/*.js src/**/*.js --quiet", "prepublishOnly": "npm run build", "serve:docs": "npm run build:docs && http-server ./docs -c-1", "test": "jest --maxWorkers=2", @@ -64,6 +66,7 @@ "babel-jest": "29.6.4", "babel-loader": "^9.1.3", "babel-plugin-lodash": "^3.3.4", + "cspell": "^7.3.8", "dotenv": "^16.3.1", "eslint": "^8.48.0", "eslint-config-airbnb-base": "^15.0.0", From 8a285cbcc2074940fb1610ec496e57aabee3a8ca Mon Sep 17 00:00:00 2001 From: Mike Kreiser Date: Sat, 4 Nov 2023 11:03:24 -0400 Subject: [PATCH 3/6] Fix spelling errors --- cspell.json | 2 ++ src/client/client.js | 10 +++++----- src/client/client.test.js | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/cspell.json b/cspell.json index c5af603..663a187 100644 --- a/cspell.json +++ b/cspell.json @@ -11,7 +11,9 @@ "node" ], "words": [ + "ffl", "kona", + "rostered", "SWID" ], "flagWords": [] diff --git a/src/client/client.js b/src/client/client.js index 714f0dd..fd6749f 100644 --- a/src/client/client.js +++ b/src/client/client.js @@ -37,7 +37,7 @@ class Client { } /** - * Set cookies from ESPN for interacting with private leagues in NodeJS. Both cookie smust be + * Set cookies from ESPN for interacting with private leagues in NodeJS. Both cookies must be * provided to be set. See the README for instructions on how to find these cookies. * * @param {object} options Required options object. @@ -240,7 +240,7 @@ class Client { }); return axios.get(route, this._buildAxiosConfig()).then((response) => ( - this._parseTeamReponse(response.data, seasonId) + this._parseTeamResponse(response.data, seasonId) )); } @@ -275,11 +275,11 @@ class Client { return axios.get(route, axiosConfig).then((response) => ( // Data returns an array for historical teams (??) - this._parseTeamReponse(response.data[0], seasonId) + this._parseTeamResponse(response.data[0], seasonId) )); } - _parseTeamReponse(responseData, seasonId) { + _parseTeamResponse(responseData, seasonId) { // Join member (owner) information with team data before dumping into builder const teams = _.get(responseData, 'teams'); const members = _.get(responseData, 'members'); @@ -305,7 +305,7 @@ class Client { getNFLGamesForPeriod({ startDate, endDate }) { const route = this.constructor._buildRoute({ base: 'apis/fantasy/v2/games/ffl/games', - params: `?dates=${startDate}-${endDate}&pbpOnly=true` + params: `?dates=${startDate}-${endDate}&pbpOnly=true` // cspell:disable-line pbp }); const axiosConfig = this._buildAxiosConfig({ baseURL: 'https://site.api.espn.com/' }); diff --git a/src/client/client.test.js b/src/client/client.test.js index 3fa2317..8b1fb2a 100644 --- a/src/client/client.test.js +++ b/src/client/client.test.js @@ -1034,7 +1034,7 @@ describe('Client', () => { test('calls axios.get with the correct params', () => { const routeBase = 'apis/fantasy/v2/games/ffl/games'; - const routeParams = `?dates=${startDate}-${endDate}&pbpOnly=true`; + const routeParams = `?dates=${startDate}-${endDate}&pbpOnly=true`; // cspell:disable-line pbp const route = `${routeBase}${routeParams}`; const config = {}; From b75e0209375a31e17db51c29547b1e6f02c5b3de Mon Sep 17 00:00:00 2001 From: Mike Kreiser Date: Sat, 4 Nov 2023 11:04:14 -0400 Subject: [PATCH 4/6] Enable caching for linters --- .gitignore | 1 + package.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d64068a..e76eafa 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ docs node_modules/ # Optional eslint cache +.cspellcache .eslintcache # dotenv environment variables file diff --git a/package.json b/package.json index 22ab0be..2246a39 100644 --- a/package.json +++ b/package.json @@ -27,8 +27,8 @@ "clean:docs": "rm -rf docs", "ci": "npm run clean && npm run lint && npm run test && npm run build && npm run build:docs", "lint": "npm run lint:js && npm run lint:spelling", - "lint:js": "eslint integration-tests/**/*.js src/**/*.js", - "lint:spelling": "cspell integration-tests/**/*.js src/**/*.js --quiet", + "lint:js": "eslint integration-tests/**/*.js src/**/*.js --cache", + "lint:spelling": "cspell integration-tests/**/*.js src/**/*.js --quiet --cache", "prepublishOnly": "npm run build", "serve:docs": "npm run build:docs && http-server ./docs -c-1", "test": "jest --maxWorkers=2", From 495430c6e4efa1e79aacda26c3b04c3d39f978fd Mon Sep 17 00:00:00 2001 From: Mike Kreiser Date: Sat, 4 Nov 2023 11:07:56 -0400 Subject: [PATCH 5/6] Update snapshots with new stats --- .../__snapshots__/integration.test.js.snap | 13424 +++++++++++++-- .../__snapshots__/integration.test.js.snap | 13931 ++++++++++++++-- 2 files changed, 24287 insertions(+), 3068 deletions(-) diff --git a/integration-tests/2018-season/__snapshots__/integration.test.js.snap b/integration-tests/2018-season/__snapshots__/integration.test.js.snap index 598016b..044e624 100644 --- a/integration-tests/2018-season/__snapshots__/integration.test.js.snap +++ b/integration-tests/2018-season/__snapshots__/integration.test.js.snap @@ -52,18 +52,31 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.2, "receivingTargets": 5.7, "receivingTouchdowns": 0.2, - "receivingTouchdowns40Plus": 0.004960734, - "receivingTouchdowns50Plus": 0.003241839, + "receivingTouchdowns40Plus": 0.044226676, + "receivingTouchdowns50Plus": 0.001367835, "receivingYards": 37.7, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.976190476190476, "rushing2PtConversions": 0.012045459, "rushingAttempts": 17.9, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.298140783, + "rushingGame200PlusYards": 0.010174401, "rushingTouchdowns": 0.7, "rushingTouchdowns40Plus": 0.038359526, "rushingTouchdowns50Plus": 0.026851668, "rushingYards": 82.5, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.608938547486034, - "turnovers": 0.219135699, + "totalTurnovers": 0.219135699, "usesPoints": false, }, "rawStats": PlayerStats { @@ -71,10 +84,24 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingTouchdowns": 1, "receivingYards": 39, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 13, "rushingAttempts": 20, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 1, "rushingYards": 108, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 5.4, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.700000000000003, @@ -130,18 +157,31 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.3, "receivingTargets": 5.9, "receivingTouchdowns": 0.2, - "receivingTouchdowns40Plus": 0.003963826, - "receivingTouchdowns50Plus": 0.002590361, + "receivingTouchdowns40Plus": 0.042039567, + "receivingTouchdowns50Plus": 0.001300193, "receivingYards": 37, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.604651162790699, "rushing2PtConversions": 0.009080228, "rushingAttempts": 12.8, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.113194765, + "rushingGame200PlusYards": 0.00386, "rushingTouchdowns": 0.3, "rushingTouchdowns40Plus": 0.026289551, "rushingTouchdowns50Plus": 0.018402686, "rushingYards": 50.9, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 3.9765624999999996, - "turnovers": 0.059066505, + "totalTurnovers": 0.059066505, "usesPoints": false, }, "rawStats": PlayerStats { @@ -150,11 +190,24 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6, "receivingTargets": 9, "receivingYards": 45, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 7.5, + "receptionsPer5Receptions": 1, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 50, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 5, - "turnovers": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 7.5, @@ -206,28 +259,48 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.7, "receivingTargets": 3.5, "receivingTouchdowns": 0.1, - "receivingTouchdowns40Plus": 0.004271366, - "receivingTouchdowns50Plus": 0.002791338, + "receivingTouchdowns40Plus": 0.011522214, + "receivingTouchdowns50Plus": 0.000356, "receivingYards": 22.2, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.222222222222221, "rushing2PtConversions": 0.010588824, "rushingAttempts": 12.7, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.116, + "rushingGame200PlusYards": 0.00394, "rushingTouchdowns": 0.4, "rushingTouchdowns40Plus": 0.025962063, "rushingTouchdowns50Plus": 0.018173444, "rushingYards": 51.4, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.047244094488189, - "turnovers": 0.075951036, + "totalTurnovers": 0.075951036, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 4.666666666666667, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 36, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 6, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5, @@ -281,18 +354,26 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.195366842, "receivingTargets": 7.714238607, "receivingTouchdowns": 0.39726215, - "receivingTouchdowns40Plus": 0.014543251, - "receivingTouchdowns50Plus": 0.009504014, + "receivingTouchdowns40Plus": 0.198298092, + "receivingTouchdowns50Plus": 0.006132931, "receivingYards": 66.26020702, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.753710957298363, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000338814, "rushingAttempts": 0.537377503, + "rushingGame100To199Yards": 0.000373124, + "rushingGame200PlusYards": 0.0000127333, "rushingTouchdowns": 0.012229298, "rushingTouchdowns40Plus": 0.000990398, "rushingTouchdowns50Plus": 0.000693278, "rushingYards": 3.001954587, "rushingYardsPerAttempt": 5.586304916452746, - "turnovers": 0.024653259, + "totalTurnovers": 0.024653259, "usesPoints": false, }, "rawStats": PlayerStats { @@ -300,10 +381,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingTouchdowns": 1, "receivingYards": 43, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 14.333333333333334, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 11.1, @@ -351,18 +438,30 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.3, "receivingTargets": 7.7, "receivingTouchdowns": 0.4, - "receivingTouchdowns40Plus": 0.007798909, - "receivingTouchdowns50Plus": 0.005096587, + "receivingTouchdowns40Plus": 0.137581184, + "receivingTouchdowns50Plus": 0.004255088, "receivingYards": 57.2, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.79245283018868, - "turnovers": 0.031761728, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.031761728, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 10, "receivingYards": 48, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.6, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.800000000000001, @@ -416,20 +515,39 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.14777908, "passingCompletionPercentage": 0.604402236, "passingCompletions": 21.24339626, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.904382819999999, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1.100208338, "passingTouchdowns": 1.545618709, "passingTouchdowns40Plus": 0.210528411, "passingTouchdowns50Plus": 0.137580317, "passingYards": 250.052119, + "passingYards300To399": 0.223207665, + "passingYards400Plus": 0.030149503, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 50, "rushing2PtConversions": 0.006219484, "rushingAttempts": 5.362947848, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.032870868, + "rushingGame200PlusYards": 0.001121757, "rushingTouchdowns": 0.128869898, "rushingTouchdowns40Plus": 0.010322988, "rushingTouchdowns50Plus": 0.007226092, "rushingYards": 27.45805135, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 5.119954944227159, - "turnovers": 1.357492257, + "totalTurnovers": 1.357492257, "usesPoints": false, }, "rawStats": PlayerStats { @@ -438,14 +556,30 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 34, "passingCompletionPercentage": 0.5, "passingCompletions": 17, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 17, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 176, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 17, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 35, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 40, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 5, - "turnovers": 2, + "teamLoss": 1, + "totalTurnovers": 2, "usesPoints": false, }, "totalPoints": 11.04, @@ -498,18 +632,24 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.027466359, "receivingTargets": 5.696645223, "receivingTouchdowns": 0.346025495, - "receivingTouchdowns40Plus": 0.01419231, - "receivingTouchdowns50Plus": 0.009274674, + "receivingTouchdowns40Plus": 0.089360967, + "receivingTouchdowns50Plus": 0.00276, "receivingYards": 48.62757038, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 16.062134013625222, "rushing2PtConversions": 0.0000777819, "rushingAttempts": 0.124155659, + "rushingGame100To199Yards": 0.0000203006, + "rushingGame200PlusYards": 6.92781e-7, "rushingTouchdowns": 0.003208135, "rushingTouchdowns40Plus": 0.000227951, "rushingTouchdowns50Plus": 0.000159566, "rushingYards": 0.769765084, "rushingYardsPerAttempt": 6.19999998550207, - "turnovers": 0.012843928, + "totalTurnovers": 0.012843928, "usesPoints": false, }, "rawStats": PlayerStats { @@ -519,7 +659,10 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingTouchdowns": 1, "receivingYards": 17, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 17, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 7.7, @@ -568,18 +711,30 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.274640666, "receivingTargets": 7.260796391, "receivingTouchdowns": 0.361756105, - "receivingTouchdowns40Plus": 0.009382724, - "receivingTouchdowns50Plus": 0.00613161, + "receivingTouchdowns40Plus": 0.130066811, + "receivingTouchdowns50Plus": 0.004022685, "receivingYards": 55.99155521, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 13.098540809605446, - "turnovers": 0.025062894, + "totalTurnovers": 0.025062894, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 6, "receivingTargets": 13, "receivingYards": 62, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 10.333333333333334, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6.2, @@ -627,18 +782,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.01822151, "receivingTargets": 6.050663659, "receivingTouchdowns": 0.401475715, - "receivingTouchdowns40Plus": 0.010619103, - "receivingTouchdowns50Plus": 0.006939584, + "receivingTouchdowns40Plus": 0.086594788, + "receivingTouchdowns50Plus": 0.002678189, "receivingYards": 48.06762012, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 11.962411728765048, - "turnovers": 0.034876105, + "totalTurnovers": 0.034876105, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 4, "receivingTargets": 7, "receivingYards": 52, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.2, @@ -691,18 +856,24 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.859228707, "receivingTargets": 5.490195583, "receivingTouchdowns": 0.273945393, - "receivingTouchdowns40Plus": 0.008288775, - "receivingTouchdowns50Plus": 0.005416714, + "receivingTouchdowns40Plus": 0.056359659, + "receivingTouchdowns50Plus": 0.001743082, "receivingYards": 41.11539947, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.65378669976814, "rushing2PtConversions": 0.000640616, "rushingAttempts": 0.745957065, + "rushingGame100To199Yards": 0.000851343, + "rushingGame200PlusYards": 0.0000290531, "rushingTouchdowns": 0.017485311, "rushingTouchdowns40Plus": 0.001377453, "rushingTouchdowns50Plus": 0.000964217, "rushingYards": 4.490434933, "rushingYardsPerAttempt": 6.019696231444635, - "turnovers": 0.023269331, + "totalTurnovers": 0.023269331, "usesPoints": false, }, "rawStats": PlayerStats { @@ -711,9 +882,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 10, "receivingTouchdowns": 1, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 142, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 15.777777777777779, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.200000000000003, @@ -765,20 +943,35 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.83319086, "passingCompletionPercentage": 0.64235155, "passingCompletions": 23.0175057, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.815685160000001, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.703191697, "passingTouchdowns": 1.472974109, "passingTouchdowns40Plus": 0.237778404, "passingTouchdowns50Plus": 0.155388187, "passingYards": 266.9880329, + "passingYards300To399": 0.287570223, + "passingYards400Plus": 0.038843197, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushing2PtConversions": 0.001188873, "rushingAttempts": 2.010772518, + "rushingGame100To199Yards": 0.001726818, + "rushingGame200PlusYards": 0.0000589297, "rushingTouchdowns": 0.045447424, "rushingTouchdowns40Plus": 0.003756147, "rushingTouchdowns50Plus": 0.002629303, "rushingYards": 6.358939837, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.162436217959092, - "turnovers": 0.90616242, + "totalTurnovers": 0.90616242, "usesPoints": false, }, "rawStats": PlayerStats { @@ -786,13 +979,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 43, "passingCompletionPercentage": 0.4883720930232558, "passingCompletions": 21, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 22, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 1, "passingYards": 251, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 50, "rushingAttempts": 2, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 8.840000000000002, @@ -841,18 +1046,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.237883935, "receivingTargets": 5.798298576, "receivingTouchdowns": 0.390406683, - "receivingTouchdowns40Plus": 0.011086925, - "receivingTouchdowns50Plus": 0.007245306, + "receivingTouchdowns40Plus": 0.079333089, + "receivingTouchdowns50Plus": 0.002453601, "receivingYards": 46.547998, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 14.376055144175512, - "turnovers": 0.018984225, + "totalTurnovers": 0.018984225, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 3, "receivingYards": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 11, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1.1, @@ -903,10 +1115,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.099769969, "defensiveForcedFumbles": 0.57697448, "defensiveFumbles": 0.375033412, + "defensiveHalfSacks": 6, "defensiveInterceptions": 1.105518469, "defensivePointsAllowed": 19.3492773, "defensiveSacks": 3.179810445, "defensiveSafeties": 0.020706139, + "defensiveStuffs": 2.035963554, "defensiveYardsAllowed": 347.348048, "fumbleReturnTouchdown": 0.111426685, "interceptionReturnTouchdown": 0.052736679, @@ -914,16 +1128,21 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 59.88584071, "puntReturnTouchdown": 0.02388, "puntReturnYards": 17.512, + "totalReturnTouchdowns": 0.224944678, "usesPoints": false, }, "rawStats": PlayerStats { "defensive18To21PointsAllowed": 1, "defensiveAssistedTackles": 41, "defensiveFumbles": 1, + "defensiveHalfSacks": 6, "defensiveInterceptions": 1, "defensivePointsAllowed": 20, "defensiveSacks": 3, "defensiveSoloTackles": 41, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 27, + "defensiveTacklesPer5Tackles": 16, "defensiveTotalTackles": 82, "defensiveYardsAllowed": 325, "kickoffReturnYards": 19, @@ -998,6 +1217,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3, @@ -1048,24 +1268,40 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.668833509, "receivingTargets": 2.103883256, "receivingTouchdowns": 0.043894214, - "receivingTouchdowns40Plus": 0.003560292, - "receivingTouchdowns50Plus": 0.002326651, + "receivingTouchdowns40Plus": 0.004844556, + "receivingTouchdowns50Plus": 0.000149832, "receivingYards": 12.95539564, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.763144477943246, "rushing2PtConversions": 0.009665075, "rushingAttempts": 9.404106311, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.058967855, + "rushingGame200PlusYards": 0.002012347, "rushingTouchdowns": 0.348855607, "rushingTouchdowns40Plus": 0.018746319, "rushingTouchdowns50Plus": 0.013122424, "rushingYards": 36.74793444, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.907647704600689, - "turnovers": 0.042750432, + "totalTurnovers": 0.042750432, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 11, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 42, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 3.8181818181818183, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.2, @@ -1118,18 +1354,27 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.233936721, "receivingTargets": 4.187660083, "receivingTouchdowns": 0.121531608, - "receivingTouchdowns40Plus": 0.005246256, - "receivingTouchdowns50Plus": 0.003428429, + "receivingTouchdowns40Plus": 0.020332879, + "receivingTouchdowns50Plus": 0.000629, "receivingYards": 28.2247707, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 8.727681811681311, "rushing2PtConversions": 0.002901756, "rushingAttempts": 4.961930958, + "rushingGame100To199Yards": 0.020318487, + "rushingGame200PlusYards": 0.000693392, "rushingTouchdowns": 0.142793071, "rushingTouchdowns40Plus": 0.009517331, "rushingTouchdowns50Plus": 0.006662131, "rushingYards": 21.60595478, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.35434409766731, - "turnovers": 0.059106433, + "totalTurnovers": 0.059106433, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1137,10 +1382,23 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingTouchdowns": 1, "receivingYards": 63, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 10.5, + "receptionsPer5Receptions": 1, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 65, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 13, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 18.8, @@ -1197,29 +1455,52 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.9, "receivingTargets": 3.7, "receivingTouchdowns": 0.1, - "receivingTouchdowns40Plus": 0.005430762, - "receivingTouchdowns50Plus": 0.003549003, + "receivingTouchdowns40Plus": 0.015546892, + "receivingTouchdowns50Plus": 0.000480832, "receivingYards": 25.3, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 8.724137931034484, "rushing2PtConversions": 0.015402447, "rushingAttempts": 19.6, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.301426943, + "rushingGame200PlusYards": 0.010286545, "rushingTouchdowns": 0.7, "rushingTouchdowns40Plus": 0.042424235, "rushingTouchdowns50Plus": 0.029696964, "rushingYards": 83, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.23469387755102, - "turnovers": 0.087781532, + "totalTurnovers": 0.087781532, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 17, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 5.666666666666667, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 69, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.6, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 14.600000000000001, @@ -1272,29 +1553,58 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.8, "receivingTargets": 4.9, "receivingTouchdowns": 0.1, - "receivingTouchdowns40Plus": 0.00506304, - "receivingTouchdowns50Plus": 0.003308697, + "receivingTouchdowns40Plus": 0.029386261, + "receivingTouchdowns50Plus": 0.000909, "receivingYards": 32.4, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.526315789473685, "rushing2PtConversions": 0.013733476, "rushingAttempts": 16.7, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.206233551, + "rushingGame200PlusYards": 0.00703796, "rushingTouchdowns": 0.4, "rushingTouchdowns40Plus": 0.035372666, "rushingTouchdowns50Plus": 0.024760866, "rushingYards": 68.6, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.107784431137724, - "turnovers": 0.082939162, + "totalTurnovers": 0.082939162, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 9, "receivingTargets": 13, + "receivingTouchdowns40Plus": 1, "receivingYards": 102, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 11.333333333333334, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 1, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 64, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.266666666666667, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 18.6, @@ -1346,18 +1656,31 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.670027163, "receivingTargets": 4.688117129, "receivingTouchdowns": 0.083227999, - "receivingTouchdowns40Plus": 0.003055628, - "receivingTouchdowns50Plus": 0.001996853, + "receivingTouchdowns40Plus": 0.019532451, + "receivingTouchdowns50Plus": 0.000604096, "receivingYards": 27.78511942, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.57082119176675, "rushing2PtConversions": 0.006450393, "rushingAttempts": 14.86167626, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.188232498, + "rushingGame200PlusYards": 0.006423653, "rushingTouchdowns": 0.299576343, "rushingTouchdowns40Plus": 0.031001312, "rushingTouchdowns50Plus": 0.021700918, "rushingYards": 65.58929241, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.413317263984056, - "turnovers": 0.07766482, + "totalTurnovers": 0.07766482, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1366,8 +1689,13 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingYards": -1, "receivingYardsPerReception": -1, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 22, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.142857142857143, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 2.1, @@ -1425,18 +1753,27 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.187750975, "receivingTargets": 7.62591437, "receivingTouchdowns": 0.281141816, - "receivingTouchdowns40Plus": 0.014691249, - "receivingTouchdowns50Plus": 0.009600731, + "receivingTouchdowns40Plus": 0.194098179, + "receivingTouchdowns50Plus": 0.006003036, "receivingYards": 65.67083448, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.658825528918145, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000723671, "rushingAttempts": 1.063882468, + "rushingGame100To199Yards": 0.002368535, + "rushingGame200PlusYards": 0.000080829, "rushingTouchdowns": 0.029555897, "rushingTouchdowns40Plus": 0.001970258, "rushingTouchdowns50Plus": 0.001379181, "rushingYards": 7.432735597, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 6.986425493948453, - "turnovers": 0.023101936, + "totalTurnovers": 0.023101936, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1446,12 +1783,20 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 8, "receivingTouchdowns": 2, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 169, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 24.142857142857142, + "receptionsPer5Receptions": 1, "rushingAttempts": 2, "rushingYards": 4, "rushingYardsPerAttempt": 2, + "teamWin": 1, + "totalReturnTouchdowns": 1, "usesPoints": false, }, "totalPoints": 35.3, @@ -1501,11 +1846,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.429598437, "receivingTargets": 8.862505761, "receivingTouchdowns": 0.397856023, - "receivingTouchdowns40Plus": 0.006807557, - "receivingTouchdowns50Plus": 0.004448738, + "receivingTouchdowns40Plus": 0.178220599, + "receivingTouchdowns50Plus": 0.005511977, "receivingYards": 63.40407374, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 11.677488579621823, - "turnovers": 0.035499661, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.035499661, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1513,7 +1864,14 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 10, "receivingTouchdowns": 1, "receivingYards": 63, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 10.5, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12.3, @@ -1562,18 +1920,29 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.649807176, "receivingTargets": 8.813634652, "receivingTouchdowns": 0.48803472, - "receivingTouchdowns40Plus": 0.010695385, - "receivingTouchdowns50Plus": 0.006989434, + "receivingTouchdowns40Plus": 0.226542382, + "receivingTouchdowns50Plus": 0.007006465, "receivingYards": 70.1387801, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 15.084234129540171, - "turnovers": 0.022950954, + "totalTurnovers": 0.022950954, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 4, "receivingTargets": 7, "receivingYards": 61, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 15.25, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6.1000000000000005, @@ -1629,18 +1998,26 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.334677674, "receivingTargets": 7.415238513, "receivingTouchdowns": 0.277506801, - "receivingTouchdowns40Plus": 0.011120141, - "receivingTouchdowns50Plus": 0.007267012, + "receivingTouchdowns40Plus": 0.152531524, + "receivingTouchdowns50Plus": 0.00471747, "receivingYards": 59.57203212, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.166941240019144, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000357178, "rushingAttempts": 0.374239768, + "rushingGame100To199Yards": 0.000154845, + "rushingGame200PlusYards": 0.00000528428, "rushingTouchdowns": 0.009480371, "rushingTouchdowns40Plus": 0.000688696, "rushingTouchdowns50Plus": 0.000482087, "rushingYards": 1.964962642, "rushingYardsPerAttempt": 5.250544730991817, - "turnovers": 0.034829601, + "totalTurnovers": 0.034829601, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1650,7 +2027,14 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 15, "receivingTouchdowns": 1, "receivingYards": 79, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 11.285714285714286, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 13.9, @@ -1701,22 +2085,30 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.811330201, "receivingTargets": 7.49510323, "receivingTouchdowns": 0.300828297, - "receivingTouchdowns40Plus": 0.009586824, - "receivingTouchdowns50Plus": 0.00626499, + "receivingTouchdowns40Plus": 0.143076017, + "receivingTouchdowns50Plus": 0.004425031, "receivingYards": 58.09579477, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 15.242918274243747, "rushing2PtConversions": 0.000130286, "rushingAttempts": 0.221786125, + "rushingGame100To199Yards": 0.0000667845, + "rushingGame200PlusYards": 0.0000022791, "rushingTouchdowns": 0.005190307, "rushingTouchdowns40Plus": 0.000407569, "rushingTouchdowns50Plus": 0.000285298, "rushingYards": 1.321025788, "rushingYardsPerAttempt": 5.956304922140643, - "turnovers": 0.023375294, + "totalTurnovers": 0.023375294, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0, @@ -1764,18 +2156,24 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.369221836, "receivingTargets": 5.167242901, "receivingTouchdowns": 0.450814308, - "receivingTouchdowns40Plus": 0.007993518, - "receivingTouchdowns50Plus": 0.005223764, + "receivingTouchdowns40Plus": 0.046540994, + "receivingTouchdowns50Plus": 0.001439412, "receivingYards": 38.36970083, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 11.388297564743672, - "turnovers": 0.017617528, + "totalTurnovers": 0.017617528, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0.8, @@ -1828,20 +2226,39 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 30.54476954, "passingCompletionPercentage": 0.619747845, "passingCompletions": 18.9300551, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 11.61471444, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.595803531, "passingTouchdowns": 1.444765698, "passingTouchdowns40Plus": 0.163354629, "passingTouchdowns50Plus": 0.10675225, "passingYards": 217.8480218, + "passingYards300To399": 0.135890479, + "passingYards400Plus": 0.018355241, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 21, + "passingYardsPer20Yards": 10, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 43, "rushing2PtConversions": 0.005842204, "rushingAttempts": 5.754562368, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.035943212, + "rushingGame200PlusYards": 0.001226604, "rushingTouchdowns": 0.155288502, "rushingTouchdowns40Plus": 0.011115021, "rushingTouchdowns50Plus": 0.007780515, "rushingYards": 28.70874045, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4.988865983909343, - "turnovers": 0.881379422, + "totalTurnovers": 0.881379422, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1849,16 +2266,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 33, "passingCompletionPercentage": 0.5757575757575758, "passingCompletions": 19, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 14, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 2, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 298, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 29, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 59, "rushingAttempts": 2, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.5, - "turnovers": 2, + "teamLoss": 1, + "totalTurnovers": 2, "usesPoints": false, }, "totalPoints": 20.42, @@ -1924,6 +2353,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeExtraPoints": 3, "madeFieldGoals": 2, "madeFieldGoalsFromUnder40": 2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9, @@ -1971,18 +2401,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.38379655, "receivingTargets": 7.144761554, "receivingTouchdowns": 0.349189532, - "receivingTouchdowns40Plus": 0.003909144, - "receivingTouchdowns50Plus": 0.002554625, + "receivingTouchdowns40Plus": 0.072265324, + "receivingTouchdowns50Plus": 0.00223501, "receivingYards": 44.99021475, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.262842774945842, - "turnovers": 0.023285812, + "totalTurnovers": 0.023285812, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 5, "receivingYards": 18, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1.8, @@ -2034,27 +2471,43 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.141795482, "receivingTargets": 1.499020646, "receivingTouchdowns": 0.026319644, - "receivingTouchdowns40Plus": 0.002695539, - "receivingTouchdowns50Plus": 0.001761535, + "receivingTouchdowns40Plus": 0.003362882, + "receivingTouchdowns50Plus": 0.000104007, "receivingYards": 8.585395934, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7.519206433503824, "rushing2PtConversions": 0.006948255, "rushingAttempts": 10.86752015, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.091353635, + "rushingGame200PlusYards": 0.003117549, "rushingTouchdowns": 0.276803798, "rushingTouchdowns40Plus": 0.021933275, "rushingTouchdowns50Plus": 0.015353293, "rushingYards": 45.71849302, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.206892868747062, - "turnovers": 0.038598759, + "totalTurnovers": 0.038598759, "usesPoints": false, }, "rawStats": PlayerStats { "fumbles": 2, "lostFumbles": 1, "rushingAttempts": 12, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 38, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.1666666666666665, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 1.8000000000000003, @@ -2108,18 +2561,29 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.737958482, "receivingTargets": 2.293213512, "receivingTouchdowns": 0.059129512, - "receivingTouchdowns40Plus": 0.003393246, - "receivingTouchdowns50Plus": 0.002217486, + "receivingTouchdowns40Plus": 0.00527668, + "receivingTouchdowns50Plus": 0.000163196, "receivingYards": 13.95635462, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.03031531796972, "rushing2PtConversions": 0.017109195, "rushingAttempts": 16.5551204, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.199654299, + "rushingGame200PlusYards": 0.006813435, "rushingTouchdowns": 0.454250461, "rushingTouchdowns40Plus": 0.035009355, "rushingTouchdowns50Plus": 0.024506548, "rushingYards": 67.54741844, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.080152654160099, - "turnovers": 0.080929955, + "totalTurnovers": 0.080929955, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2128,12 +2592,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5, "receivingTargets": 6, "receivingYards": 57, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.4, + "receptionsPer5Receptions": 1, "rushingAttempts": 31, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 2, "rushingYards": 135, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 27, "rushingYardsPerAttempt": 4.354838709677419, - "turnovers": 1, + "teamTie": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 29.2, @@ -2186,10 +2666,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.085353555, "defensiveForcedFumbles": 0.748476864, "defensiveFumbles": 0.486509961, + "defensiveHalfSacks": 3, "defensiveInterceptions": 1.335234901, "defensivePointsAllowed": 17.70268134, "defensiveSacks": 1.824025058, "defensiveSafeties": 0.022221262, + "defensiveStuffs": 3.777163508, "defensiveYardsAllowed": 368.5426167, "fumbleReturnTouchdown": 0.136, "interceptionReturnTouchdown": 0.064373802, @@ -2197,6 +2679,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 45.15814286, "puntReturnTouchdown": 0.016109701, "puntReturnYards": 18.30948785, + "totalReturnTouchdowns": 0.231963366, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2206,6 +2689,9 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveForcedFumbles": 1, "defensivePointsAllowed": 42, "defensiveSoloTackles": 47, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 22, + "defensiveTacklesPer5Tackles": 13, "defensiveTotalTackles": 67, "defensiveYardsAllowed": 529, "kickoffReturnYards": 69, @@ -2261,34 +2747,61 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 34.4081663, "passingCompletionPercentage": 0.648996192, "passingCompletions": 22.33076891, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.077397389999998, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.564997091, "passingTouchdowns": 1.824251762, "passingTouchdowns40Plus": 0.231310108, "passingTouchdowns50Plus": 0.151161155, "passingYards": 263.0611241, + "passingYards300To399": 0.27139497, + "passingYards400Plus": 0.036658344, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 52, "rushing2PtConversions": 0.002795067, "rushingAttempts": 1.99760557, + "rushingGame100To199Yards": 0.001833788, + "rushingGame200PlusYards": 0.0000625802, "rushingTouchdowns": 0.074187771, "rushingTouchdowns40Plus": 0.003731105, "rushingTouchdowns50Plus": 0.002611774, "rushingYards": 6.550331604, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.2790915796255016, - "turnovers": 0.811729189, + "totalTurnovers": 0.811729189, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 46, "passingCompletionPercentage": 0.5869565217391305, "passingCompletions": 27, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 19, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 4, "passingTouchdowns": 1, "passingYards": 286, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 57, "rushingAttempts": 1, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 6, - "turnovers": 4, + "teamLoss": 1, + "totalTurnovers": 4, "usesPoints": false, }, "totalPoints": 8.04, @@ -2352,31 +2865,58 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.8, "receivingTargets": 6.1, "receivingTouchdowns": 0.2, - "receivingTouchdowns40Plus": 0.009936796, - "receivingTouchdowns50Plus": 0.006493696, + "receivingTouchdowns40Plus": 0.083120186, + "receivingTouchdowns50Plus": 0.00257, "receivingYards": 47.3, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.854166666666666, "rushing2PtConversions": 0.013623747, "rushingAttempts": 16.2, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.238862447, + "rushingGame200PlusYards": 0.008151459, "rushingTouchdowns": 0.7, "rushingTouchdowns40Plus": 0.034166578, "rushingTouchdowns50Plus": 0.023916605, "rushingYards": 73.9, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.561728395061729, - "turnovers": 0.070174474, + "totalTurnovers": 0.070174474, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 9, "receivingTargets": 12, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 112, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 12.444444444444445, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 1, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 2, "rushingYards": 29, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.625, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 34.1, @@ -2429,18 +2969,31 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.1, "receivingTargets": 4.2, "receivingTouchdowns": 0.1, - "receivingTouchdowns40Plus": 0.006094, - "receivingTouchdowns50Plus": 0.003982429, + "receivingTouchdowns40Plus": 0.022495998, + "receivingTouchdowns50Plus": 0.000695753, "receivingYards": 29.3, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 9.451612903225806, "rushing2PtConversions": 0.011365667, "rushingAttempts": 14.8, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.163502174, + "rushingGame200PlusYards": 0.005579702, "rushingTouchdowns": 0.4, "rushingTouchdowns40Plus": 0.030805512, "rushingTouchdowns50Plus": 0.021563858, "rushingYards": 61.1, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.128378378378378, - "turnovers": 0.084587623, + "totalTurnovers": 0.084587623, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2449,11 +3002,24 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6, "receivingTargets": 7, "receivingYards": 55, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 9.166666666666666, + "receptionsPer5Receptions": 1, "rushingAttempts": 16, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 40, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 2.5, - "turnovers": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 7.5, @@ -2505,25 +3071,42 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.4, "receivingTargets": 9.4, "receivingTouchdowns": 0.5, - "receivingTouchdowns40Plus": 0.017487307, - "receivingTouchdowns50Plus": 0.011427955, + "receivingTouchdowns40Plus": 0.332248925, + "receivingTouchdowns50Plus": 0.01027574, "receivingYards": 84.3, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 13.171874999999998, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.0000770318, "rushingAttempts": 0.1, + "rushingGame100To199Yards": 0.0000235928, + "rushingGame200PlusYards": 8.0513e-7, "rushingTouchdowns40Plus": 0.00023596, "rushingTouchdowns50Plus": 0.000165172, "rushingYards": 0.8, "rushingYardsPerAttempt": 8, - "turnovers": 0.035849814, + "totalTurnovers": 0.035849814, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 8, "receivingTargets": 11, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 108, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 13.5, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 16.8, @@ -2573,11 +3156,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.658045766, "receivingTargets": 8.368757319, "receivingTouchdowns": 0.454391287, - "receivingTouchdowns40Plus": 0.018671321, - "receivingTouchdowns50Plus": 0.012201708, + "receivingTouchdowns40Plus": 0.275827972, + "receivingTouchdowns50Plus": 0.008530762, "receivingYards": 76.71131091, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 16.46856101542219, - "turnovers": 0.043302061, + "totalTurnovers": 0.043302061, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2585,7 +3173,13 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 11, "receivingTouchdowns": 1, "receivingYards": 46, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.2, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 10.600000000000001, @@ -2638,34 +3232,59 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 37.4, "passingCompletionPercentage": 0.641402077, "passingCompletions": 24, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.399999999999999, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.4, "passingTouchdowns": 2.1, "passingTouchdowns40Plus": 0.267339896, "passingTouchdowns50Plus": 0.174706622, "passingYards": 284.3, + "passingYards300To399": 0.36844274, + "passingYards400Plus": 0.049766953, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 56, "rushing2PtConversions": 0.00290614, "rushingAttempts": 1.8, + "rushingGame100To199Yards": 0.00010377, + "rushingGame200PlusYards": 0.00000354, "rushingTouchdowns": 0.1, "rushingTouchdowns40Plus": 0.003427567, "rushingTouchdowns50Plus": 0.002399297, "rushingYards": 1.6, "rushingYardsPerAttempt": 0.888888888888889, - "turnovers": 0.663785149, + "totalTurnovers": 0.663785149, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 39, "passingCompletionPercentage": 0.6666666666666666, "passingCompletions": 26, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 13, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1, "passingTouchdowns": 3, "passingYards": 277, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 55, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, - "turnovers": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 21.28, @@ -2719,18 +3338,29 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.818784689, "receivingTargets": 2.371094168, "receivingTouchdowns": 0.039727099, - "receivingTouchdowns40Plus": 0.003011096, - "receivingTouchdowns50Plus": 0.001967751, + "receivingTouchdowns40Plus": 0.005296162, + "receivingTouchdowns50Plus": 0.000163799, "receivingYards": 13.99894477, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.696867504254651, "rushing2PtConversions": 0.0109574, "rushingAttempts": 16.37600101, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.232790692, + "rushingGame200PlusYards": 0.007944253, "rushingTouchdowns": 0.403821184, "rushingTouchdowns40Plus": 0.034580814, "rushingTouchdowns50Plus": 0.02420657, "rushingYards": 72.93099268, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.453528833777228, - "turnovers": 0.1228482, + "totalTurnovers": 0.1228482, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2741,12 +3371,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 13, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.8571428571428572, - "turnovers": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 5.9, @@ -2799,18 +3434,29 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.395546609, "receivingTargets": 1.845237395, "receivingTouchdowns": 0.043042004, - "receivingTouchdowns40Plus": 0.002869797, - "receivingTouchdowns50Plus": 0.001875412, + "receivingTouchdowns40Plus": 0.004037657, + "receivingTouchdowns50Plus": 0.000124876, "receivingYards": 10.7552272, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.706820489289728, "rushing2PtConversions": 0.019101577, "rushingAttempts": 14.56101816, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.178480825, + "rushingGame200PlusYards": 0.006090866, "rushingTouchdowns": 0.345057496, "rushingTouchdowns40Plus": 0.030299884, "rushingTouchdowns50Plus": 0.021209919, "rushingYards": 63.86993732, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.386364787007449, - "turnovers": 0.08457102, + "totalTurnovers": 0.08457102, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2818,9 +3464,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveTotalTackles": 1, "rushing2PtConversions": 1, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 2, "rushingYards": 62, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.133333333333334, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.2, @@ -2873,28 +3527,43 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.990097542, "receivingTargets": 6.659827095, "receivingTouchdowns": 0.339854555, - "receivingTouchdowns40Plus": 0.018218839, - "receivingTouchdowns50Plus": 0.011906011, + "receivingTouchdowns40Plus": 0.159600501, + "receivingTouchdowns50Plus": 0.004936098, "receivingYards": 60.65046045, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 15.200245059573032, "rushing2PtConversions": 0.000321248, "rushingAttempts": 0.520001514, + "rushingGame100To199Yards": 0.000376, + "rushingGame200PlusYards": 0.0000128, "rushingTouchdowns": 0.018271252, "rushingTouchdowns40Plus": 0.00095822, "rushingTouchdowns50Plus": 0.000670754, "rushingYards": 3.01316222, "rushingYardsPerAttempt": 5.794525859784323, - "turnovers": 0.017573148, + "totalTurnovers": 0.017573148, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 8, "receivingYards": 87, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 17.4, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9.3, @@ -2946,27 +3615,48 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.07005581, "receivingTargets": 2.711601759, "receivingTouchdowns": 0.058171217, - "receivingTouchdowns40Plus": 0.00405046, - "receivingTouchdowns50Plus": 0.002646976, + "receivingTouchdowns40Plus": 0.007084017, + "receivingTouchdowns50Plus": 0.000219, "receivingYards": 17.21801651, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.317658116666914, "rushing2PtConversions": 0.009708001, "rushingAttempts": 11.67597778, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.11438677, + "rushingGame200PlusYards": 0.003903582, "rushingTouchdowns": 0.320758731, "rushingTouchdowns40Plus": 0.023725052, "rushingTouchdowns50Plus": 0.016607536, "rushingYards": 51.14834525, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.380647703664952, - "turnovers": 0.05045893, + "totalTurnovers": 0.05045893, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 2, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 102, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 10.2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 22.200000000000003, @@ -3015,18 +3705,27 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.554499683, "receivingTargets": 6.586016956, "receivingTouchdowns": 0.28867296, - "receivingTouchdowns40Plus": 0.0126685, - "receivingTouchdowns50Plus": 0.008278864, + "receivingTouchdowns40Plus": 0.122003294, + "receivingTouchdowns50Plus": 0.00377, "receivingYards": 54.63753224, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 15.371370688626953, - "turnovers": 0.017635129, + "totalTurnovers": 0.017635129, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 21, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 2.1, @@ -3076,11 +3775,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.92873426, "receivingTargets": 6.966730268, "receivingTouchdowns": 0.312079995, - "receivingTouchdowns40Plus": 0.013620826, - "receivingTouchdowns50Plus": 0.00890121, + "receivingTouchdowns40Plus": 0.147903515, + "receivingTouchdowns50Plus": 0.00457, "receivingYards": 58.85459099, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 14.980547701895215, - "turnovers": 0.044001824, + "totalTurnovers": 0.044001824, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3088,9 +3792,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingTouchdowns": 2, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 106, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 26.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 22.6, @@ -3139,11 +3849,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.285757163, "receivingTargets": 5.821744222, "receivingTouchdowns": 0.377925868, - "receivingTouchdowns40Plus": 0.004788635, - "receivingTouchdowns50Plus": 0.003129373, + "receivingTouchdowns40Plus": 0.046734595, + "receivingTouchdowns50Plus": 0.0014454, "receivingYards": 38.42728202, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.96627609976417, - "turnovers": 0.038162096, + "totalTurnovers": 0.038162096, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3152,8 +3866,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 7, "receivingTargets": 10, "receivingYards": 60, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.571428571428571, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 4, @@ -3207,10 +3928,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.091655549, "defensiveForcedFumbles": 0.846066431, "defensiveFumbles": 0.54994318, + "defensiveHalfSacks": 4, "defensiveInterceptions": 0.708837699, "defensivePointsAllowed": 21.08238299, "defensiveSacks": 2.10390075, "defensiveSafeties": 0.020050961, + "defensiveStuffs": 3.911643114, "defensiveYardsAllowed": 351.7345446, "fumbleReturnTouchdown": 0.074618203, "interceptionReturnTouchdown": 0.082094837, @@ -3218,6 +3941,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 46.35, "puntReturnTouchdown": 0.042095832, "puntReturnYards": 23.37726316, + "totalReturnTouchdowns": 0.2196372, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3225,10 +3949,14 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensive7To13PointsAllowed": 1, "defensiveAssistedTackles": 15, "defensiveForcedFumbles": 1, + "defensiveHalfSacks": 8, "defensiveInterceptions": 1, "defensivePointsAllowed": 12, "defensiveSacks": 4, "defensiveSoloTackles": 42, + "defensiveStuffs": 5, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 57, "defensiveYardsAllowed": 299, "kickoffReturnYards": 43, @@ -3298,6 +4026,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeExtraPoints": 3, "missedFieldGoals": 1, "missedFieldGoalsFrom40To49": 1, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 2, @@ -3349,20 +4078,36 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 33.34326988, "passingCompletionPercentage": 0.645001756, "passingCompletions": 21.50646762, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11.836802260000002, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.35236607, "passingTouchdowns": 1.569445195, "passingTouchdowns40Plus": 0.209344931, "passingTouchdowns50Plus": 0.136806913, "passingYards": 249.2920601, + "passingYards300To399": 0.220639112, + "passingYards400Plus": 0.029802559, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 49, "rushing2PtConversions": 0.002289934, "rushingAttempts": 3.573883889, + "rushingGame100To199Yards": 0.015207585, + "rushingGame200PlusYards": 0.000518977, "rushingTouchdowns": 0.112685802, "rushingTouchdowns40Plus": 0.006770815, "rushingTouchdowns50Plus": 0.004739571, "rushingYards": 18.70350777, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 5.233384281892097, - "turnovers": 0.531863888, + "totalTurnovers": 0.531863888, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3370,12 +4115,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 30, "passingCompletionPercentage": 0.7, "passingCompletions": 21, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 9, + "passingIncompletionsPer5Incompletions": 1, "passingTouchdowns": 2, "passingYards": 255, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 51, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 14, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.75, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 19.6, @@ -3427,10 +4185,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.09374668, "defensiveForcedFumbles": 0.930552554, "defensiveFumbles": 0.60485916, + "defensiveHalfSacks": 5, "defensiveInterceptions": 0.806162861, "defensivePointsAllowed": 21.21463863, "defensiveSacks": 2.516362647, "defensiveSafeties": 0.019428733, + "defensiveStuffs": 3.601730503, "defensiveYardsAllowed": 344.4769979, "fumbleReturnTouchdown": 0.087990863, "interceptionReturnTouchdown": 0.083505953, @@ -3438,6 +4198,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 46.35, "puntReturnTouchdown": 0.0206562, "puntReturnYards": 16.65449091, + "totalReturnTouchdowns": 0.212990777, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3446,9 +4207,13 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveAssistedTackles": 23, "defensiveForcedFumbles": 1, "defensiveFumbles": 1, + "defensiveHalfSacks": 12, "defensivePointsAllowed": 8, "defensiveSacks": 6, "defensiveSoloTackles": 38, + "defensiveStuffs": 2, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 61, "defensiveYardsAllowed": 232, "puntReturnYards": 62, @@ -3495,6 +4260,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "usesPoints": false, }, "rawStats": PlayerStats { + "teamTie": 1, "usesPoints": false, }, "totalPoints": 0, @@ -3546,27 +4312,47 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6, "receivingTargets": 9.7, "receivingTouchdowns": 0.4, - "receivingTouchdowns40Plus": 0.021887427, - "receivingTouchdowns50Plus": 0.014303434, + "receivingTouchdowns40Plus": 0.388003525, + "receivingTouchdowns50Plus": 0.012000109, "receivingYards": 92.7, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 15.450000000000001, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.0000671455, "rushingAttempts": 0.1, + "rushingGame100To199Yards": 0.0000163397, + "rushingGame200PlusYards": 5.5761e-7, "rushingTouchdowns40Plus": 0.000215405, "rushingTouchdowns50Plus": 0.000150783, "rushingYards": 0.7, "rushingYardsPerAttempt": 6.999999999999999, - "turnovers": 0.032652923, + "totalTurnovers": 0.032652923, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 10, "receivingTargets": 19, + "receivingTouchdowns40Plus": 1, "receivingYards": 169, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 16.9, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushingAttempts": 1, "rushingYards": 11, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 11, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 18.000000000000004, @@ -3618,28 +4404,52 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.866759148, "receivingTargets": 2.467817702, "receivingTouchdowns": 0.063182832, - "receivingTouchdowns40Plus": 0.004223724, - "receivingTouchdowns50Plus": 0.002760203, + "receivingTouchdowns40Plus": 0.006227525, + "receivingTouchdowns50Plus": 0.000192604, "receivingYards": 15.82401755, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.476732291336814, "rushing2PtConversions": 0.011930862, "rushingAttempts": 13.90329073, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.141991996, + "rushingGame200PlusYards": 0.004845642, "rushingTouchdowns": 0.407033105, "rushingTouchdowns40Plus": 0.028776114, "rushingTouchdowns50Plus": 0.02014328, "rushingYards": 56.97734004, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.098119009843938, - "turnovers": 0.051580974, + "totalTurnovers": 0.051580974, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 5, "receivingYards": 25, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 5, + "receptionsPer5Receptions": 1, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 82, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 5.466666666666667, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 10.700000000000001, @@ -3691,20 +4501,36 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 33.9, "passingCompletionPercentage": 0.635505361, "passingCompletions": 21.5, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.399999999999999, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.4, "passingTouchdowns": 2, "passingTouchdowns40Plus": 0.190200094, "passingTouchdowns50Plus": 0.124295761, "passingYards": 236.7, + "passingYards300To399": 0.181762222, + "passingYards400Plus": 0.02455131, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 47, "rushing2PtConversions": 0.003839435, "rushingAttempts": 3.6, + "rushingGame100To199Yards": 0.016524128, + "rushingGame200PlusYards": 0.000563905, "rushingTouchdowns": 0.1, "rushingTouchdowns40Plus": 0.006842783, "rushingTouchdowns50Plus": 0.004789948, "rushingYards": 19.5, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 5.416666666666667, - "turnovers": 0.593021231, + "totalTurnovers": 0.593021231, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3712,14 +4538,27 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 30, "passingCompletionPercentage": 0.6666666666666666, "passingCompletions": 20, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 10, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 286, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 57, "rushingAttempts": 1, "rushingYards": 15, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 15, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 24.939999999999998, @@ -3771,18 +4610,32 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.316115145, "receivingTargets": 6.703239496, "receivingTouchdowns": 0.333697652, - "receivingTouchdowns40Plus": 0.013657613, - "receivingTouchdowns50Plus": 0.00892525, + "receivingTouchdowns40Plus": 0.134181404, + "receivingTouchdowns50Plus": 0.00414994, "receivingYards": 56.66713294, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 13.12919860482545, - "turnovers": 0.020244852, + "totalTurnovers": 0.020244852, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 8, + "receivingTouchdowns40Plus": 1, "receivingYards": 119, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 23.8, + "receptionsPer5Receptions": 1, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 11.9, @@ -3831,11 +4684,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.702833145, "receivingTargets": 6.404069625, "receivingTouchdowns": 0.497020261, - "receivingTouchdowns40Plus": 0.01950228, - "receivingTouchdowns50Plus": 0.01274474, + "receivingTouchdowns40Plus": 0.151342227, + "receivingTouchdowns50Plus": 0.004680687, "receivingYards": 59.38856218, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 16.038681694365142, - "turnovers": 0.032565444, + "totalTurnovers": 0.032565444, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3844,7 +4702,13 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4, "receivingTargets": 8, "receivingYards": 54, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.4, @@ -3884,6 +4748,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0, @@ -3924,6 +4789,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0, @@ -3976,29 +4842,47 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.319967039, "receivingTargets": 3.114552754, "receivingTouchdowns": 0.088755259, - "receivingTouchdowns40Plus": 0.004958667, - "receivingTouchdowns50Plus": 0.003240489, + "receivingTouchdowns40Plus": 0.009926148, + "receivingTouchdowns50Plus": 0.000306994, "receivingYards": 20.72311483, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.932503988906888, "rushing2PtConversions": 0.005766426, "rushingAttempts": 8.917038369, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.054322569, + "rushingGame200PlusYards": 0.001853821, "rushingTouchdowns": 0.220434951, "rushingTouchdowns40Plus": 0.017701719, "rushingTouchdowns50Plus": 0.012391204, "rushingYards": 35.27420515, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.9558207209952627, - "turnovers": 0.047270365, + "totalTurnovers": 0.047270365, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 26, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 26, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 19, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 2.111111111111111, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 10.5, @@ -4047,11 +4931,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.801123652, "receivingTargets": 5.61035535, "receivingTouchdowns": 0.478747627, - "receivingTouchdowns40Plus": 0.005922605, - "receivingTouchdowns50Plus": 0.003870422, + "receivingTouchdowns40Plus": 0.04826107, + "receivingTouchdowns50Plus": 0.00149261, "receivingYards": 38.87593548, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.227485091032236, - "turnovers": 0.01517359, + "totalTurnovers": 0.01517359, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4059,7 +4947,10 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingTouchdowns": 1, "receivingYards": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 11, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.1, @@ -4113,18 +5004,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.639185385, "receivingTargets": 7.380949579, "receivingTouchdowns": 0.337878648, - "receivingTouchdowns40Plus": 0.007493442, - "receivingTouchdowns50Plus": 0.004896964, + "receivingTouchdowns40Plus": 0.118232594, + "receivingTouchdowns50Plus": 0.003656678, "receivingYards": 53.98947644, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 11.637706183194487, "rushing2PtConversions": 0.000676434, "rushingAttempts": 0.520036363, + "rushingGame100To199Yards": 0.00041887, + "rushingGame200PlusYards": 0.0000142944, "rushingTouchdowns": 0.012219332, "rushingTouchdowns40Plus": 0.000958285, "rushingTouchdowns50Plus": 0.000670799, "rushingYards": 3.175500596, "rushingYardsPerAttempt": 6.106304908528099, - "turnovers": 0.026511993, + "totalTurnovers": 0.026511993, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4132,13 +5030,23 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingCompletionPercentage": 1, "passingCompletions": 1, "passingYards": 15, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "receivingReceptions": 8, "receivingTargets": 10, "receivingYards": 33, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 4.125, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 16, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 5.5, @@ -4196,18 +5104,26 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.529559005, "receivingTargets": 4.583090019, "receivingTouchdowns": 0.118103324, - "receivingTouchdowns40Plus": 0.004651383, - "receivingTouchdowns50Plus": 0.003039679, + "receivingTouchdowns40Plus": 0.023936605, + "receivingTouchdowns50Plus": 0.00074, "receivingYards": 30.04998043, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.513805942167554, "rushing2PtConversions": 0.004176165, "rushingAttempts": 4.634430243, + "rushingGame100To199Yards": 0.014422717, + "rushingGame200PlusYards": 0.000492192, "rushingTouchdowns": 0.142473994, "rushingTouchdowns40Plus": 0.008863417, "rushingTouchdowns50Plus": 0.006204392, "rushingYards": 18.21668178, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.9307273655731665, - "turnovers": 0.048288886, + "totalTurnovers": 0.048288886, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4215,10 +5131,18 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 16, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 5.333333333333333, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4.1, @@ -4273,25 +5197,36 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.169624984, "receivingTargets": 6.120426275, "receivingTouchdowns": 0.260096886, - "receivingTouchdowns40Plus": 0.01188984, - "receivingTouchdowns50Plus": 0.007770011, + "receivingTouchdowns40Plus": 0.096257814, + "receivingTouchdowns50Plus": 0.002977046, "receivingYards": 49.98340302, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 11.987505641826322, "rushing2PtConversions": 0.00025183, "rushingAttempts": 0.496193096, + "rushingGame100To199Yards": 0.000319965, + "rushingGame200PlusYards": 0.0000109192, "rushingTouchdowns": 0.012392347, "rushingTouchdowns40Plus": 0.000914147, "rushingTouchdowns50Plus": 0.000639903, "rushingYards": 2.786320637, "rushingYardsPerAttempt": 5.615395819614548, - "turnovers": 0.039015226, + "totalTurnovers": 0.039015226, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 32, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.666666666666666, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 3.2, @@ -4357,6 +5292,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeExtraPoints": 3, "madeFieldGoals": 1, "madeFieldGoalsFromUnder40": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6, @@ -4408,28 +5344,39 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.92893371, "receivingTargets": 2.481501613, "receivingTouchdowns": 0.059554649, - "receivingTouchdowns40Plus": 0.00447205, - "receivingTouchdowns50Plus": 0.002922485, + "receivingTouchdowns40Plus": 0.006400249, + "receivingTouchdowns50Plus": 0.000198, "receivingYards": 16.12376938, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.35890279505769, "rushing2PtConversions": 0.005309486, "rushingAttempts": 6.097843165, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.025224339, + "rushingGame200PlusYards": 0.00086081, "rushingTouchdowns": 0.138027175, "rushingTouchdowns40Plus": 0.011813579, "rushingTouchdowns50Plus": 0.008269506, "rushingYards": 24.06375136, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.946272593253881, - "turnovers": 0.054834612, + "totalTurnovers": 0.054834612, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5.5, "rushingAttempts": 2, "rushingYards": 4, "rushingYardsPerAttempt": 2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1.5, @@ -4482,10 +5429,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.079999383, "defensiveForcedFumbles": 0.727553482, "defensiveFumbles": 0.472909764, + "defensiveHalfSacks": 5, "defensiveInterceptions": 1.032684325, "defensivePointsAllowed": 18.69436042, "defensiveSacks": 2.68309069, "defensiveSafeties": 0.021807052, + "defensiveStuffs": 2.823044358, "defensiveYardsAllowed": 349.6022904, "fumbleReturnTouchdown": 0.107159087, "interceptionReturnTouchdown": 0.064403155, @@ -4493,6 +5442,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 54.71016667, "puntReturnTouchdown": 0.062540897, "puntReturnYards": 29.11158171, + "totalReturnTouchdowns": 0.249721453, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4500,13 +5450,18 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveAssistedTackles": 10, "defensiveForcedFumbles": 1, "defensiveFumbles": 1, + "defensiveHalfSacks": 4, "defensiveInterceptions": 1, "defensivePointsAllowed": 42, "defensiveSacks": 2, "defensiveSoloTackles": 54, + "defensiveStuffs": 1, + "defensiveTacklesPer3Tackles": 21, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 64, "defensiveYardsAllowed": 349, "fumbleReturnTouchdown": 1, + "totalReturnTouchdowns": 1, "usesPoints": false, }, "totalPoints": 9, @@ -4568,31 +5523,57 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.7, "receivingTargets": 4.9, "receivingTouchdowns": 0.2, - "receivingTouchdowns40Plus": 0.004146572, - "receivingTouchdowns50Plus": 0.002709785, + "receivingTouchdowns40Plus": 0.026472675, + "receivingTouchdowns50Plus": 0.000819, "receivingYards": 31.2, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.432432432432432, "rushing2PtConversions": 0.022128128, "rushingAttempts": 15.6, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.197161159, + "rushingGame200PlusYards": 0.006728354, "rushingTouchdowns": 0.4, "rushingTouchdowns40Plus": 0.032761481, "rushingTouchdowns50Plus": 0.022933037, "rushingYards": 67.1, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.301282051282051, - "turnovers": 0.087381895, + "totalTurnovers": 0.087381895, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 6, "receivingYards": 22, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 11, "rushingAttempts": 18, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 1, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 106, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 5.888888888888889, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 18.8, @@ -4647,27 +5628,45 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.7, "receivingTargets": 9.8, "receivingTouchdowns": 0.4, - "receivingTouchdowns40Plus": 0.007313292, - "receivingTouchdowns50Plus": 0.004779237, + "receivingTouchdowns40Plus": 0.233776778, + "receivingTouchdowns50Plus": 0.00723021, "receivingYards": 71.1, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 12.473684210526315, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000219515, "rushingAttempts": 0.2, + "rushingGame100To199Yards": 0.0000609269, + "rushingGame200PlusYards": 0.0000020792, "rushingTouchdowns40Plus": 0.000397181, "rushingTouchdowns50Plus": 0.000278027, "rushingYards": 1.3, "rushingYardsPerAttempt": 6.5, - "turnovers": 0.036265416, + "totalTurnovers": 0.036265416, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 11, "receivingTargets": 15, + "receivingTouchdowns40Plus": 1, "receivingYards": 111, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 10.090909090909092, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 11.000000000000002, @@ -4716,11 +5715,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.2, "receivingTargets": 8.1, "receivingTouchdowns": 0.6, - "receivingTouchdowns40Plus": 0.010410724, - "receivingTouchdowns50Plus": 0.006803408, + "receivingTouchdowns40Plus": 0.181190406, + "receivingTouchdowns50Plus": 0.005603827, "receivingYards": 63.8, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.269230769230768, - "turnovers": 0.021665035, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.021665035, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4728,7 +5733,14 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 8, "receivingTouchdowns": 1, "receivingYards": 88, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 17.6, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14.8, @@ -4780,25 +5792,42 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.172151882, "receivingTargets": 8.064885816, "receivingTouchdowns": 0.445868991, - "receivingTouchdowns40Plus": 0.017273838, - "receivingTouchdowns50Plus": 0.011288453, + "receivingTouchdowns40Plus": 0.243545822, + "receivingTouchdowns50Plus": 0.007532345, "receivingYards": 72.42237544, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 14.002368277707124, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000092323, "rushingAttempts": 0.134344376, + "rushingGame100To199Yards": 0.0000234002, + "rushingGame200PlusYards": 7.98559e-7, "rushingTouchdowns": 0.00333235, "rushingTouchdowns40Plus": 0.000246681, "rushingTouchdowns50Plus": 0.000172677, "rushingYards": 0.819500693, "rushingYardsPerAttempt": 6.099999995533866, - "turnovers": 0.05117102, + "totalTurnovers": 0.05117102, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 6, "receivingTargets": 12, + "receivingTouchdowns40Plus": 1, "receivingYards": 102, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 17, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 10.200000000000001, @@ -4853,28 +5882,49 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.68322902, "receivingTargets": 3.483365134, "receivingTouchdowns": 0.07328289, - "receivingTouchdowns40Plus": 0.002918634, - "receivingTouchdowns50Plus": 0.001907327, + "receivingTouchdowns40Plus": 0.00961421, + "receivingTouchdowns50Plus": 0.000297347, "receivingYards": 20.39613059, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.6013379543726005, "rushing2PtConversions": 0.011250297, "rushingAttempts": 12.45094312, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.117164266, + "rushingGame200PlusYards": 0.003998367, "rushingTouchdowns": 0.339729357, "rushingTouchdowns40Plus": 0.025463414, "rushingTouchdowns50Plus": 0.01782439, "rushingYards": 51.76458397, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.157482969049175, - "turnovers": 0.072548135, + "totalTurnovers": 0.072548135, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 18, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6, "rushingAttempts": 14, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 48, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.4285714285714284, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6.6000000000000005, @@ -4926,28 +5976,47 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.411271368, "receivingTargets": 1.815199098, "receivingTouchdowns": 0.051248351, - "receivingTouchdowns40Plus": 0.006087834, - "receivingTouchdowns50Plus": 0.003978399, + "receivingTouchdowns40Plus": 0.004724805, + "receivingTouchdowns50Plus": 0.000146, "receivingYards": 12.65750834, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.968869224589838, "rushing2PtConversions": 0.008701307, "rushingAttempts": 14.43054672, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.169517549, + "rushingGame200PlusYards": 0.00578, "rushingTouchdowns": 0.485785264, "rushingTouchdowns40Plus": 0.029996451, "rushingTouchdowns50Plus": 0.020997516, "rushingYards": 62.24765809, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.3136035867392275, - "turnovers": 0.060822467, + "totalTurnovers": 0.060822467, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.6, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3.1, @@ -4999,18 +6068,29 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.517141169, "receivingTargets": 3.300480769, "receivingTouchdowns": 0.114584417, - "receivingTouchdowns40Plus": 0.004003276, - "receivingTouchdowns50Plus": 0.002616141, + "receivingTouchdowns40Plus": 0.010098975, + "receivingTouchdowns50Plus": 0.000312, "receivingYards": 20.89972905, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.302962625772382, "rushing2PtConversions": 0.009891454, "rushingAttempts": 10.78072463, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.084824553, + "rushingGame200PlusYards": 0.002894737, "rushingTouchdowns": 0.400909712, "rushingTouchdowns40Plus": 0.021742229, "rushingTouchdowns50Plus": 0.01521956, "rushingYards": 44.05752355, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.086694082455198, - "turnovers": 0.068234418, + "totalTurnovers": 0.068234418, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5018,10 +6098,19 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1, "receivingTargets": 3, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, "rushingAttempts": 18, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 64, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 3.5555555555555554, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6.9, @@ -5069,18 +6158,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.983540325, "receivingTargets": 6.470329516, "receivingTouchdowns": 0.333733958, - "receivingTouchdowns40Plus": 0.011078659, - "receivingTouchdowns50Plus": 0.007239904, + "receivingTouchdowns40Plus": 0.106662622, + "receivingTouchdowns50Plus": 0.003298844, "receivingYards": 51.93353083, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13.037029022669678, - "turnovers": 0.022171789, + "totalTurnovers": 0.022171789, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 33, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 16.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 3.3000000000000003, @@ -5130,11 +6229,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.315388964, "receivingTargets": 7.444504839, "receivingTouchdowns": 0.327112234, - "receivingTouchdowns40Plus": 0.008580856, - "receivingTouchdowns50Plus": 0.00560759, + "receivingTouchdowns40Plus": 0.131369887, + "receivingTouchdowns50Plus": 0.004062986, "receivingYards": 56.20657514, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 13.024683431525778, - "turnovers": 0.024853978, + "totalTurnovers": 0.024853978, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5143,7 +6247,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingTouchdowns40Plus": 1, "receivingYards": 135, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 13.5, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 19.5, @@ -5195,32 +6308,68 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 31.99215183, "passingCompletionPercentage": 0.588149033, "passingCompletions": 18.81615318, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 13.17599865, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.794741567, "passingTouchdowns": 1.385058351, "passingTouchdowns40Plus": 0.178535973, "passingTouchdowns50Plus": 0.116673258, "passingYards": 228.6754256, + "passingYards300To399": 0.160577074, + "passingYards400Plus": 0.021689752, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 45, "rushing2PtConversions": 0.009704178, "rushingAttempts": 7.588987912, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.059397882, + "rushingGame200PlusYards": 0.002027022, "rushingTouchdowns": 0.368227005, "rushingTouchdowns40Plus": 0.014894378, "rushingTouchdowns50Plus": 0.010426064, "rushingYards": 36.88137705, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.859854499396651, - "turnovers": 1.033440771, + "totalTurnovers": 1.033440771, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 26, "passingCompletionPercentage": 0.6538461538461539, "passingCompletions": 17, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 9, + "passingIncompletionsPer5Incompletions": 1, "passingYards": 161, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 16, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 32, "rushingAttempts": 13, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 58, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.461538461538462, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 18.240000000000002, @@ -5261,6 +6410,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0, @@ -5313,10 +6463,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.082125136, "defensiveForcedFumbles": 0.913107184, "defensiveFumbles": 0.593519669, + "defensiveHalfSacks": 4, "defensiveInterceptions": 1.096392712, "defensivePointsAllowed": 20.05468057, "defensiveSacks": 2.118609156, "defensiveSafeties": 0.023944562, + "defensiveStuffs": 4.099337961, "defensiveYardsAllowed": 336.848299, "fumbleReturnTouchdown": 0.114600161, "interceptionReturnTouchdown": 0.08863146, @@ -5324,21 +6476,27 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 48.84072727, "puntReturnTouchdown": 0.038992483, "puntReturnYards": 20.27350769, + "totalReturnTouchdowns": 0.256567963, "usesPoints": false, }, "rawStats": PlayerStats { "defensive14To17PointsAllowed": 1, "defensiveAssistedTackles": 22, "defensiveFumbles": 1, + "defensiveHalfSacks": 4, "defensiveInterceptions": 1, "defensivePointsAllowed": 15, "defensiveSacks": 2, "defensiveSoloTackles": 46, + "defensiveStuffs": 7, + "defensiveTacklesPer3Tackles": 22, + "defensiveTacklesPer5Tackles": 13, "defensiveTotalTackles": 68, "defensiveYardsAllowed": 324, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 45, "puntReturnYards": 10, + "totalReturnTouchdowns": 1, "usesPoints": false, }, "totalPoints": 13, @@ -5393,18 +6551,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.869239551, "receivingTargets": 3.552479495, "receivingTouchdowns": 0.131416517, - "receivingTouchdowns40Plus": 0.004285142, - "receivingTouchdowns50Plus": 0.00280034, + "receivingTouchdowns40Plus": 0.012226206, + "receivingTouchdowns50Plus": 0.00037813, "receivingYards": 22.85557283, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.965724863242692, "rushing2PtConversions": 0.008950215, "rushingAttempts": 7.956875359, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.053350599, + "rushingGame200PlusYards": 0.001820651, "rushingTouchdowns": 0.244291782, "rushingTouchdowns40Plus": 0.015666057, "rushingTouchdowns50Plus": 0.01096624, "rushingYards": 34.95796716, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.393429026189174, - "turnovers": 0.036606658, + "totalTurnovers": 0.036606658, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5412,10 +6580,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 21, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.5, "rushingAttempts": 2, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 2.8000000000000003, @@ -5484,6 +6657,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeFieldGoals": 2, "madeFieldGoalsFrom40To49": 1, "madeFieldGoalsFromUnder40": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12, @@ -5537,18 +6711,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 0.985897026, "receivingTargets": 1.288510795, "receivingTouchdowns": 0.030711989, - "receivingTouchdowns40Plus": 0.002809988, - "receivingTouchdowns50Plus": 0.001836327, + "receivingTouchdowns40Plus": 0.003032168, + "receivingTouchdowns50Plus": 0.0000938, "receivingYards": 7.466960096, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7.5737728171217755, "rushing2PtConversions": 0.008242312, "rushingAttempts": 13.64531014, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.125712507, + "rushingGame200PlusYards": 0.00429, "rushingTouchdowns": 0.405597588, "rushingTouchdowns40Plus": 0.028182452, "rushingTouchdowns50Plus": 0.019727717, "rushingYards": 53.61667483, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 3.9293115568569994, - "turnovers": 0.0945656, + "totalTurnovers": 0.0945656, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5559,12 +6743,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 70, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 35, "rushingAttempts": 26, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 96, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 3.6923076923076925, - "turnovers": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 20.6, @@ -5612,18 +6809,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.505002189, "receivingTargets": 5.288180791, "receivingTouchdowns": 0.290828121, - "receivingTouchdowns40Plus": 0.009294684, - "receivingTouchdowns50Plus": 0.006074076, + "receivingTouchdowns40Plus": 0.054753567, + "receivingTouchdowns50Plus": 0.001693409, "receivingYards": 40.68835675, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11.60865373428159, - "turnovers": 0.01861784, + "totalTurnovers": 0.01861784, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 6, "receivingYards": 15, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 15, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1.5, @@ -5680,11 +6884,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.7, "receivingTargets": 10.2, "receivingTouchdowns": 0.5, - "receivingTouchdowns40Plus": 0.021579288, - "receivingTouchdowns50Plus": 0.014102064, + "receivingTouchdowns40Plus": 0.414161835, + "receivingTouchdowns50Plus": 0.012809129, "receivingYards": 97.5, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 14.552238805970148, - "turnovers": 0.049079673, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.049079673, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5694,7 +6904,14 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 16, "receivingTouchdowns": 1, "receivingYards": 93, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 10.333333333333334, + "receptionsPer5Receptions": 1, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 15.3, @@ -5742,25 +6959,45 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.6, "receivingTargets": 4.9, "receivingTouchdowns": 0.1, - "receivingTouchdowns40Plus": 0.002745947, - "receivingTouchdowns50Plus": 0.001794476, + "receivingTouchdowns40Plus": 0.019814158, + "receivingTouchdowns50Plus": 0.000612809, "receivingYards": 27.9, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.749999999999999, "rushing2PtConversions": 0.010041649, "rushingAttempts": 13.8, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.166502087, + "rushingGame200PlusYards": 0.005682077, "rushingTouchdowns": 0.4, "rushingTouchdowns40Plus": 0.028608316, "rushingTouchdowns50Plus": 0.020025821, "rushingYards": 61.7, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.471014492753623, - "turnovers": 0.051772015, + "totalTurnovers": 0.051772015, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 1, "rushingAttempts": 16, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 49, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.0625, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.9, @@ -5813,29 +7050,55 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.709937261, "receivingTargets": 3.396330327, "receivingTouchdowns": 0.078107008, - "receivingTouchdowns40Plus": 0.00537449, - "receivingTouchdowns50Plus": 0.003512229, + "receivingTouchdowns40Plus": 0.012421026, + "receivingTouchdowns50Plus": 0.000384155, "receivingYards": 23.01786041, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.493872069018355, "rushing2PtConversions": 0.008652295, "rushingAttempts": 14.19245603, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.142741659, + "rushingGame200PlusYards": 0.004871225, "rushingTouchdowns": 0.390357117, "rushingTouchdowns40Plus": 0.029444221, "rushingTouchdowns50Plus": 0.020610955, "rushingYards": 57.12732857, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.025189752164411, - "turnovers": 0.095933644, + "totalTurnovers": 0.095933644, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 7, "receivingYards": 54, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.8, + "receptionsPer5Receptions": 1, "rushingAttempts": 17, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 95, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 5.588235294117647, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.9, @@ -5886,22 +7149,30 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.856912309, "receivingTargets": 6.881344358, "receivingTouchdowns": 0.350882935, - "receivingTouchdowns40Plus": 0.016639822, - "receivingTouchdowns50Plus": 0.010874124, + "receivingTouchdowns40Plus": 0.163205703, + "receivingTouchdowns50Plus": 0.00505, "receivingYards": 61.19294506, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.599145540801238, "rushing2PtConversions": 0.000211983, "rushingAttempts": 0.257824632, + "rushingGame100To199Yards": 0.0000696326, + "rushingGame200PlusYards": 0.00000237629, "rushingTouchdowns": 0.0056346, "rushingTouchdowns40Plus": 0.000473953, "rushingTouchdowns50Plus": 0.000331767, "rushingYards": 1.347001369, "rushingYardsPerAttempt": 5.224486731740977, - "turnovers": 0.018857131, + "totalTurnovers": 0.018857131, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0, @@ -5953,25 +7224,35 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.274070722, "receivingTargets": 6.967681624, "receivingTouchdowns": 0.496077546, - "receivingTouchdowns40Plus": 0.016843918, - "receivingTouchdowns50Plus": 0.011007501, + "receivingTouchdowns40Plus": 0.169698081, + "receivingTouchdowns50Plus": 0.005248394, "receivingYards": 62.1580987, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 14.543067427511788, "rushing2PtConversions": 0.000424908, "rushingAttempts": 0.539036232, + "rushingGame100To199Yards": 0.000449971, + "rushingGame200PlusYards": 0.0000153558, "rushingTouchdowns": 0.017221931, "rushingTouchdowns40Plus": 0.00099347, "rushingTouchdowns50Plus": 0.000695429, "rushingYards": 3.288121014, "rushingYardsPerAttempt": 6.099999997773805, - "turnovers": 0.031613034, + "totalTurnovers": 0.031613034, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 5, "receivingYards": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 11, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1.1, @@ -6024,29 +7305,47 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.984061274, "receivingTargets": 2.657870719, "receivingTouchdowns": 0.052367398, - "receivingTouchdowns40Plus": 0.002563957, - "receivingTouchdowns50Plus": 0.001675546, + "receivingTouchdowns40Plus": 0.005781517, + "receivingTouchdowns50Plus": 0.00017881, "receivingYards": 14.99794677, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.559215517453822, "rushing2PtConversions": 0.0115, "rushingAttempts": 11.14822165, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.0931, + "rushingGame200PlusYards": 0.00318, "rushingTouchdowns": 0.34018057, "rushingTouchdowns40Plus": 0.0226, "rushingTouchdowns50Plus": 0.0158, "rushingYards": 46.16160451, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.140714632275005, - "turnovers": 0.049580205, + "totalTurnovers": 0.049580205, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4, "rushingAttempts": 11, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 41, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 3.727272727272727, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 10.900000000000002, @@ -6101,25 +7400,42 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.211745137, "receivingTargets": 7.495585819, "receivingTouchdowns": 0.331438508, - "receivingTouchdowns40Plus": 0.006523415, - "receivingTouchdowns50Plus": 0.004263052, + "receivingTouchdowns40Plus": 0.11316266, + "receivingTouchdowns50Plus": 0.0035, "receivingYards": 53.10172804, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.188857406516728, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.0000646748, "rushingAttempts": 0.124155659, + "rushingGame100To199Yards": 0.0000149841, + "rushingGame200PlusYards": 5.11348e-7, "rushingTouchdowns": 0.002667529, "rushingTouchdowns40Plus": 0.000227951, "rushingTouchdowns50Plus": 0.000159566, "rushingYards": 0.674782592, "rushingYardsPerAttempt": 5.434972496904068, - "turnovers": 0.041383534, + "totalTurnovers": 0.041383534, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 7, "receivingTargets": 15, + "receivingTouchdowns40Plus": 1, "receivingYards": 106, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 15.142857142857142, + "receptionsPer5Receptions": 1, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 10.600000000000001, @@ -6168,18 +7484,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.693549815, "receivingTargets": 6.778440446, "receivingTouchdowns": 0.375741092, - "receivingTouchdowns40Plus": 0.009661373, - "receivingTouchdowns50Plus": 0.006313708, + "receivingTouchdowns40Plus": 0.110559748, + "receivingTouchdowns50Plus": 0.003419374, "receivingYards": 52.6381619, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 14.251374568234976, - "turnovers": 0.015752666, + "totalTurnovers": 0.015752666, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 41, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.666666666666666, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.1000000000000005, @@ -6232,18 +7558,29 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.741831725, "receivingTargets": 2.293781453, "receivingTouchdowns": 0.066423306, - "receivingTouchdowns40Plus": 0.003019178, - "receivingTouchdowns50Plus": 0.001973033, + "receivingTouchdowns40Plus": 0.005096323, + "receivingTouchdowns50Plus": 0.000157618, "receivingYards": 13.55202392, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.780329021163052, "rushing2PtConversions": 0.011876637, "rushingAttempts": 13.66470551, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.119714339, + "rushingGame200PlusYards": 0.004085391, "rushingTouchdowns": 0.315686513, "rushingTouchdowns40Plus": 0.028227006, "rushingTouchdowns50Plus": 0.019758904, "rushingYards": 52.32396447, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 3.8291322437727384, - "turnovers": 0.054737393, + "totalTurnovers": 0.054737393, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6252,11 +7589,22 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 28, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 9.333333333333334, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 51, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 7.285714285714286, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 5.9, @@ -6305,11 +7653,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.321694827, "receivingTargets": 5.798298576, "receivingTouchdowns": 0.353684379, - "receivingTouchdowns40Plus": 0.009132606, - "receivingTouchdowns50Plus": 0.005968158, + "receivingTouchdowns40Plus": 0.069805633, + "receivingTouchdowns50Plus": 0.002158937, "receivingYards": 44.42724385, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.280051143925903, - "turnovers": 0.0353716, + "totalTurnovers": 0.0353716, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6317,7 +7669,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingTouchdowns": 1, "receivingYards": 48, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 10.8, @@ -6369,20 +7726,34 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 34.83370012, "passingCompletionPercentage": 0.666042326, "passingCompletions": 23.20071865, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11.632981470000004, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.804148254, "passingTouchdowns": 1.823651673, "passingTouchdowns40Plus": 0.260712551, "passingTouchdowns50Plus": 0.170375652, "passingYards": 280.4921151, + "passingYards300To399": 0.349332361, + "passingYards400Plus": 0.047185642, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 56, "rushing2PtConversions": 0.001933588, "rushingAttempts": 1.733084962, + "rushingGame100To199Yards": 0.000171391, + "rushingGame200PlusYards": 0.00000584891, "rushingTouchdowns": 0.10296683, "rushingTouchdowns40Plus": 0.003229261, "rushingTouchdowns50Plus": 0.002260482, "rushingYards": 2.062697086, "rushingYardsPerAttempt": 1.1901880930405304, - "turnovers": 0.999864586, + "totalTurnovers": 0.999864586, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6390,9 +7761,20 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 45, "passingCompletionPercentage": 0.8222222222222222, "passingCompletions": 37, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 7, "passingIncompletions": 8, + "passingIncompletionsPer5Incompletions": 1, "passingTouchdowns": 3, "passingYards": 439, + "passingYards400Plus": 1, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 43, + "passingYardsPer20Yards": 21, + "passingYardsPer25Yards": 17, + "passingYardsPer50Yards": 8, + "passingYardsPer5Yards": 87, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 31.56, @@ -6445,34 +7827,63 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 37.23089928, "passingCompletionPercentage": 0.626088981, "passingCompletions": 23.30985578, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.921043500000003, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1.024971491, "passingTouchdowns": 1.86470791, "passingTouchdowns40Plus": 0.241504045, "passingTouchdowns50Plus": 0.157822893, "passingYards": 269.2253092, + "passingYards300To399": 0.297137303, + "passingYards400Plus": 0.040135459, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushing2PtConversions": 0.003512259, "rushingAttempts": 3.837285871, + "rushingGame100To199Yards": 0.015413117, + "rushingGame200PlusYards": 0.000525991, "rushingTouchdowns": 0.114660461, "rushingTouchdowns40Plus": 0.007286981, "rushingTouchdowns50Plus": 0.005100887, "rushingYards": 18.82890301, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.906828326838514, - "turnovers": 1.268688449, + "totalTurnovers": 1.268688449, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 53, "passingCompletionPercentage": 0.7358490566037735, "passingCompletions": 39, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 7, "passingIncompletions": 14, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1, "passingTouchdowns": 2, "passingYards": 319, + "passingYards300To399": 1, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 31, + "passingYardsPer20Yards": 15, + "passingYardsPer25Yards": 12, + "passingYardsPer50Yards": 6, + "passingYardsPer5Yards": 63, "rushingAttempts": 1, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 7, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 19.46, @@ -6545,6 +7956,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeFieldGoalsFromUnder40": 3, "missedFieldGoals": 1, "missedFieldGoalsFrom40To49": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 16, @@ -6597,10 +8009,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.093905423, "defensiveForcedFumbles": 0.849236351, "defensiveFumbles": 0.552003628, + "defensiveHalfSacks": 4, "defensiveInterceptions": 1.408859242, "defensivePointsAllowed": 15.75776218, "defensiveSacks": 2.422884927, "defensiveSafeties": 0.022684261, + "defensiveStuffs": 3.437234036, "defensiveYardsAllowed": 321.8460297, "fumbleReturnTouchdown": 0.152, "interceptionReturnTouchdown": 0.076407156, @@ -6608,16 +8022,21 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 50.5318, "puntReturnTouchdown": 0.02388, "puntReturnYards": 17.512, + "totalReturnTouchdowns": 0.269434985, "usesPoints": false, }, "rawStats": PlayerStats { "defensive100To199YardsAllowed": 1, "defensive1To6PointsAllowed": 1, "defensiveAssistedTackles": 7, + "defensiveHalfSacks": 12, "defensiveInterceptions": 2, "defensivePointsAllowed": 3, "defensiveSacks": 6, "defensiveSoloTackles": 46, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 17, + "defensiveTacklesPer5Tackles": 10, "defensiveTotalTackles": 53, "defensiveYardsAllowed": 153, "kickoffReturnYards": 24, @@ -6676,18 +8095,25 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.827659454, "receivingTargets": 6.618393754, "receivingTouchdowns": 0.225089314, - "receivingTouchdowns40Plus": 0.00910074, - "receivingTouchdowns50Plus": 0.005947333, + "receivingTouchdowns40Plus": 0.099850592, + "receivingTouchdowns50Plus": 0.003088163, "receivingYards": 50.6688729, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.49553585599702, "rushing2PtConversions": 0.000076916, "rushingAttempts": 0.11528651, + "rushingGame100To199Yards": 0.0000149369, + "rushingGame200PlusYards": 5.0974e-7, "rushingTouchdowns": 0.00232266, "rushingTouchdowns40Plus": 0.00021165, "rushingTouchdowns50Plus": 0.000148155, "rushingYards": 0.673871996, "rushingYardsPerAttempt": 5.845193821896422, - "turnovers": 0.02614343, + "totalTurnovers": 0.02614343, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6697,7 +8123,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4, "receivingTargets": 6, "receivingYards": 26, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 2.6, @@ -6748,11 +8179,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.161214862, "receivingTargets": 6.659827095, "receivingTouchdowns": 0.375272151, - "receivingTouchdowns40Plus": 0.01123665, - "receivingTouchdowns50Plus": 0.00734315, + "receivingTouchdowns40Plus": 0.116221051, + "receivingTouchdowns50Plus": 0.003594466, "receivingYards": 53.63957838, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 12.89036499168401, - "turnovers": 0.026082458, + "totalTurnovers": 0.026082458, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6760,10 +8196,19 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 9, "receivingTouchdowns": 1, "receivingYards": 52, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.4, + "receptionsPer5Receptions": 1, "rushingAttempts": 2, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 8, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12.8, @@ -6819,21 +8264,34 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.4, "receivingTargets": 11.4, "receivingTouchdowns": 0.5, - "receivingTouchdowns40Plus": 0.009588162, - "receivingTouchdowns50Plus": 0.006265864, + "receivingTouchdowns40Plus": 0.358727554, + "receivingTouchdowns50Plus": 0.011094667, "receivingYards": 88.1, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 13.765624999999998, - "turnovers": 0.038872429, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.038872429, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 8, "receivingTargets": 11, "receivingYards": 78, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 9.75, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": -7, "rushingYardsPerAttempt": -7, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7.1000000000000005, @@ -6885,28 +8343,48 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.5, "receivingTargets": 3.2, "receivingTouchdowns": 0.1, - "receivingTouchdowns40Plus": 0.004286209, - "receivingTouchdowns50Plus": 0.002801038, + "receivingTouchdowns40Plus": 0.010015367, + "receivingTouchdowns50Plus": 0.000309754, "receivingYards": 20.8, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.32, "rushing2PtConversions": 0.019503757, "rushingAttempts": 20.2, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.27262898, + "rushingGame200PlusYards": 0.009303781, "rushingTouchdowns": 0.7, "rushingTouchdowns40Plus": 0.044055385, "rushingTouchdowns50Plus": 0.030838769, "rushingYards": 78.9, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 3.9059405940594063, - "turnovers": 0.078435773, + "totalTurnovers": 0.078435773, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 3, "receivingYards": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 4.666666666666667, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 41, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.555555555555555, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 5.500000000000001, @@ -6956,24 +8434,34 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.3, "receivingTargets": 8, "receivingTouchdowns": 0.3, - "receivingTouchdowns40Plus": 0.010935467, - "receivingTouchdowns50Plus": 0.007146327, + "receivingTouchdowns40Plus": 0.180880612, + "receivingTouchdowns50Plus": 0.00559, "receivingYards": 63.8, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.037735849056604, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000132733, "rushingAttempts": 0.1, + "rushingGame100To199Yards": 0.00000545401, + "rushingGame200PlusYards": 1.86124e-7, "rushingTouchdowns40Plus": 0.000195298, "rushingTouchdowns50Plus": 0.000136709, "rushingYards": 0.4, "rushingYardsPerAttempt": 4, - "turnovers": 0.034039356, + "totalTurnovers": 0.034039356, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 6, "receivingYards": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0.6000000000000001, @@ -7024,11 +8512,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.7, "receivingTargets": 9.8, "receivingTouchdowns": 0.5, - "receivingTouchdowns40Plus": 0.015799739, - "receivingTouchdowns50Plus": 0.01032513, + "receivingTouchdowns40Plus": 0.347019725, + "receivingTouchdowns50Plus": 0.010732569, "receivingYards": 86.4, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 15.157894736842106, - "turnovers": 0.050586953, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.050586953, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7038,8 +8532,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 8, "receivingTouchdowns": 1, "receivingYards": 92, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 15.333333333333334, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 13.200000000000001, @@ -7092,28 +8593,38 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.725185786, "receivingTargets": 8.353307975, "receivingTouchdowns": 0.311743336, - "receivingTouchdowns40Plus": 0.00743087, - "receivingTouchdowns50Plus": 0.004856073, + "receivingTouchdowns40Plus": 0.161808203, + "receivingTouchdowns50Plus": 0.005, "receivingYards": 60.98323508, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.905997317752872, "rushing2PtConversions": 0.0000796437, "rushingAttempts": 0.107194439, + "rushingGame100To199Yards": 0.00001339, + "rushingGame200PlusYards": 4.57e-7, "rushingTouchdowns": 0.002353104, "rushingTouchdowns40Plus": 0.000196779, "rushingTouchdowns50Plus": 0.000137746, "rushingYards": 0.643166633, "rushingYardsPerAttempt": 5.999999990671157, - "turnovers": 0.03508391, + "totalTurnovers": 0.03508391, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 3, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 9, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1.8, @@ -7164,24 +8675,43 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.178101152, "receivingTargets": 2.836001843, "receivingTouchdowns": 0.053357575, - "receivingTouchdowns40Plus": 0.003613513, - "receivingTouchdowns50Plus": 0.002361431, + "receivingTouchdowns40Plus": 0.007292689, + "receivingTouchdowns50Plus": 0.000225547, "receivingYards": 17.52642055, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.046651338440686, "rushing2PtConversions": 0.016256026, "rushingAttempts": 15.1120461, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.18475734, + "rushingGame200PlusYards": 0.006305059, "rushingTouchdowns": 0.422597097, "rushingTouchdowns40Plus": 0.031587759, "rushingTouchdowns50Plus": 0.022111431, "rushingYards": 64.98179825, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.300000001323447, - "turnovers": 0.07699744, + "totalTurnovers": 0.07699744, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 71, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.733333333333333, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.1000000000000005, @@ -7234,18 +8764,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.113996711, "receivingTargets": 1.499117164, "receivingTouchdowns": 0.051349505, - "receivingTouchdowns40Plus": 0.002315026, - "receivingTouchdowns50Plus": 0.00151287, + "receivingTouchdowns40Plus": 0.003241647, + "receivingTouchdowns50Plus": 0.000100257, "receivingYards": 8.176076129, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7.339407781249724, "rushing2PtConversions": 0.0112, "rushingAttempts": 14.1537451, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.139, + "rushingGame200PlusYards": 0.00474, "rushingTouchdowns": 0.461337311, "rushingTouchdowns40Plus": 0.0294, "rushingTouchdowns50Plus": 0.0205, "rushingYards": 56.34764503, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 3.981112040091778, - "turnovers": 0.068372586, + "totalTurnovers": 0.068372586, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7254,9 +8794,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingYards": 3, "receivingYardsPerReception": 3, "rushingAttempts": 22, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, "rushingTouchdowns": 1, "rushingYards": 62, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 2.8181818181818183, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 12.5, @@ -7294,6 +8842,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0, @@ -7347,30 +8896,41 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.938797568, "receivingTargets": 7.117954618, "receivingTouchdowns": 0.290696742, - "receivingTouchdowns40Plus": 0.012519858, - "receivingTouchdowns50Plus": 0.008181727, + "receivingTouchdowns40Plus": 0.148049633, + "receivingTouchdowns50Plus": 0.00458, "receivingYards": 58.87738846, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 14.94806154506085, "rushing2PtConversions": 0.000204265, "rushingAttempts": 0.243249537, + "rushingGame100To199Yards": 0.0000948056, + "rushingGame200PlusYards": 0.00000323535, "rushingTouchdowns": 0.006749065, "rushingTouchdowns40Plus": 0.0004471, "rushingTouchdowns50Plus": 0.00031297, "rushingYards": 1.556797037, "rushingYardsPerAttempt": 6.400000000822201, - "turnovers": 0.018453447, + "totalTurnovers": 0.018453447, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 1, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 41, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 41, "rushingAttempts": 1, "rushingYards": -9, "rushingYardsPerAttempt": -9, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9.2, @@ -7422,25 +8982,37 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.451868163, "receivingTargets": 7.144761554, "receivingTouchdowns": 0.294035274, - "receivingTouchdowns40Plus": 0.005451376, - "receivingTouchdowns50Plus": 0.003562474, + "receivingTouchdowns40Plus": 0.08912091, + "receivingTouchdowns50Plus": 0.002756317, "receivingYards": 48.57936108, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 10.912129313205808, "rushing2PtConversions": 0.000292559, "rushingAttempts": 0.264176631, + "rushingGame100To199Yards": 0.000102001, + "rushingGame200PlusYards": 0.0000034809, "rushingTouchdowns": 0.00545646, "rushingTouchdowns40Plus": 0.000485659, "rushingTouchdowns50Plus": 0.000339961, "rushingYards": 1.611477447, "rushingYardsPerAttempt": 6.099999992050773, - "turnovers": 0.027797526, + "totalTurnovers": 0.027797526, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 7, "receivingYards": 48, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.6, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4.800000000000001, @@ -7489,18 +9061,26 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.138535229, "receivingTargets": 7.367041203, "receivingTouchdowns": 0.233104092, - "receivingTouchdowns40Plus": 0.009700396, - "receivingTouchdowns50Plus": 0.006339209, + "receivingTouchdowns40Plus": 0.137866711, + "receivingTouchdowns50Plus": 0.004263919, "receivingYards": 57.26412954, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 13.836810941884094, - "turnovers": 0.024080052, + "totalTurnovers": 0.024080052, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 7, "receivingYards": 10, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 10, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1, @@ -7540,6 +9120,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0, @@ -7588,11 +9169,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.707580801, "receivingTargets": 7.120348069, "receivingTouchdowns": 0.220543917, - "receivingTouchdowns40Plus": 0.010934983, - "receivingTouchdowns50Plus": 0.007146012, + "receivingTouchdowns40Plus": 0.136041761, + "receivingTouchdowns50Plus": 0.004207477, "receivingYards": 56.96942603, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.10163530658855, - "turnovers": 0.021402149, + "totalTurnovers": 0.021402149, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7601,7 +9187,11 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2, "receivingTargets": 7, "receivingYards": 21, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 2.1, @@ -7652,10 +9242,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.0986, "defensiveForcedFumbles": 0.645767254, "defensiveFumbles": 0.419748715, + "defensiveHalfSacks": 5, "defensiveInterceptions": 0.88917385, "defensivePointsAllowed": 18.28509762, "defensiveSacks": 2.782606403, "defensiveSafeties": 0.0217, + "defensiveStuffs": 2.819716238, "defensiveYardsAllowed": 336.8309265, "fumbleReturnTouchdown": 0.094481896, "interceptionReturnTouchdown": 0.054838507, @@ -7663,20 +9255,26 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 46.81100806, "puntReturnTouchdown": 0.0163578, "puntReturnYards": 16.54423158, + "totalReturnTouchdowns": 0.184389932, "usesPoints": false, }, "rawStats": PlayerStats { "defensive22To27PointsAllowed": 1, "defensiveAssistedTackles": 26, + "defensiveHalfSacks": 2, "defensiveInterceptions": 2, "defensivePointsAllowed": 27, "defensiveSacks": 1, "defensiveSoloTackles": 45, + "defensiveStuffs": 5, + "defensiveTacklesPer3Tackles": 23, + "defensiveTacklesPer5Tackles": 14, "defensiveTotalTackles": 71, "defensiveYardsAllowed": 342, "kickoffReturnTouchdown": 1, "kickoffReturnYards": 121, "puntReturnYards": 44, + "totalReturnTouchdowns": 1, "usesPoints": false, }, "totalPoints": 11, @@ -7745,6 +9343,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeFieldGoalsFrom50Plus": 1, "madeFieldGoalsFromUnder40": 1, "missedExtraPoints": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7, @@ -7796,32 +9395,62 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.87896865, "passingCompletionPercentage": 0.647758292, "passingCompletions": 23.24089944, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.638069209999998, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.830611606, "passingTouchdowns": 1.868409559, "passingTouchdowns40Plus": 0.249047326, "passingTouchdowns50Plus": 0.162752428, "passingYards": 273.7021526, + "passingYards300To399": 0.317064043, + "passingYards400Plus": 0.042827039, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 54, "rushing2PtConversions": 0.003939368, "rushingAttempts": 2.968450678, + "rushingGame100To199Yards": 0.002983274, + "rushingGame200PlusYards": 0.000101808, "rushingTouchdowns": 0.142189341, "rushingTouchdowns40Plus": 0.005593322, "rushingTouchdowns50Plus": 0.003915325, "rushingYards": 8.33129379, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.806613514499499, - "turnovers": 1.134428787, + "totalTurnovers": 1.134428787, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 36, "passingCompletionPercentage": 0.5555555555555556, "passingCompletions": 20, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 16, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingTouchdowns": 2, "passingYards": 244, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushingAttempts": 4, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.36, @@ -7878,29 +9507,53 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.8, "receivingTargets": 6.5, "receivingTouchdowns": 0.2, - "receivingTouchdowns40Plus": 0.006076438, - "receivingTouchdowns50Plus": 0.003970952, + "receivingTouchdowns40Plus": 0.073594268, + "receivingTouchdowns50Plus": 0.002276111, "receivingYards": 45.3, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.4375, "rushing2PtConversions": 0.017428401, "rushingAttempts": 17.4, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.241522634, + "rushingGame200PlusYards": 0.008242241, "rushingTouchdowns": 0.6, "rushingTouchdowns40Plus": 0.036957923, "rushingTouchdowns50Plus": 0.025870546, "rushingYards": 74.3, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.2701149425287355, - "turnovers": 0.14797921, + "totalTurnovers": 0.14797921, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 9, "receivingYards": 30, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 6, + "receptionsPer5Receptions": 1, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 37, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.111111111111111, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 12.7, @@ -7951,11 +9604,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.2, "receivingTargets": 8.7, "receivingTouchdowns": 0.6, - "receivingTouchdowns40Plus": 0.019719872, - "receivingTouchdowns50Plus": 0.012886936, + "receivingTouchdowns40Plus": 0.310685645, + "receivingTouchdowns50Plus": 0.009608834, "receivingYards": 81.4, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 13.129032258064516, - "turnovers": 0.028243416, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.028243416, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7964,9 +9623,19 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 16, "receivingTargets": 17, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 180, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 11.25, - "turnovers": 1, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 22, @@ -8015,11 +9684,17 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5, "receivingTargets": 7.7, "receivingTouchdowns": 0.6, - "receivingTouchdowns40Plus": 0.023215571, - "receivingTouchdowns50Plus": 0.015171376, + "receivingTouchdowns40Plus": 0.262068086, + "receivingTouchdowns50Plus": 0.00811, "receivingYards": 74.9, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 14.98, - "turnovers": 0.025479123, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.025479123, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8028,9 +9703,18 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 7, "receivingTargets": 8, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 123, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 17.571428571428573, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 16.3, @@ -8080,11 +9764,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.507997926, "receivingTargets": 8.684289164, "receivingTouchdowns": 0.409024882, - "receivingTouchdowns40Plus": 0.006538066, - "receivingTouchdowns50Plus": 0.004272626, + "receivingTouchdowns40Plus": 0.165627471, + "receivingTouchdowns50Plus": 0.005122499, "receivingYards": 61.55468203, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 13.654549766977865, - "turnovers": 0.025228661, + "totalTurnovers": 0.025228661, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8092,9 +9781,16 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingTouchdowns": 1, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 147, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 21, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.700000000000003, @@ -8143,18 +9839,31 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.56945178, "receivingTargets": 9.385608377, "receivingTouchdowns": 0.383979094, - "receivingTouchdowns40Plus": 0.006141975, - "receivingTouchdowns50Plus": 0.004013781, + "receivingTouchdowns40Plus": 0.193448148, + "receivingTouchdowns50Plus": 0.005982932, "receivingYards": 65.57926399, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 9.982456099251557, - "turnovers": 0.041618504, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.041618504, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 7, "receivingTargets": 10, "receivingYards": 76, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.857142857142858, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7.6000000000000005, @@ -8206,28 +9915,49 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.481843373, "receivingTargets": 3.100592112, "receivingTouchdowns": 0.07861322, - "receivingTouchdowns40Plus": 0.003237085, - "receivingTouchdowns50Plus": 0.002115435, + "receivingTouchdowns40Plus": 0.008116639, + "receivingTouchdowns50Plus": 0.000251, "receivingYards": 18.64968774, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.514449921735654, "rushing2PtConversions": 0.012041985, "rushingAttempts": 13.6347408, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.124663849, + "rushingGame200PlusYards": 0.004254299, "rushingTouchdowns": 0.249514176, "rushingTouchdowns40Plus": 0.028158179, "rushingTouchdowns50Plus": 0.019710725, "rushingYards": 53.39293192, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 3.9159477032376007, - "turnovers": 0.055568958, + "totalTurnovers": 0.055568958, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 11, "rushingAttempts": 20, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 98, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.9, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 10.9, @@ -8283,29 +10013,52 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.748339788, "receivingTargets": 3.630398196, "receivingTouchdowns": 0.100766623, - "receivingTouchdowns40Plus": 0.004210725, - "receivingTouchdowns50Plus": 0.002751709, + "receivingTouchdowns40Plus": 0.012719565, + "receivingTouchdowns50Plus": 0.000393389, "receivingYards": 23.26196921, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.464007729891367, "rushing2PtConversions": 0.004536691, "rushingAttempts": 8.712782926, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.065460418, + "rushingGame200PlusYards": 0.002233913, "rushingTouchdowns": 0.253278903, "rushingTouchdowns40Plus": 0.017266054, "rushingTouchdowns50Plus": 0.012086238, "rushingYards": 38.71362562, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.443313456653884, - "turnovers": 0.048591441, + "totalTurnovers": 0.048591441, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 5, "receivingTargets": 8, "receivingYards": 35, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 7, + "receptionsPer5Receptions": 1, "rushingAttempts": 16, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 75, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.6875, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 17, @@ -8358,28 +10111,41 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.408863448, "receivingTargets": 6.99281845, "receivingTouchdowns": 0.317917918, - "receivingTouchdowns40Plus": 0.011852748, - "receivingTouchdowns50Plus": 0.007745771, + "receivingTouchdowns40Plus": 0.136626058, + "receivingTouchdowns50Plus": 0.004225548, "receivingYards": 57.06397727, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.943013078775671, "rushing2PtConversions": 0.0000703919, "rushingAttempts": 0.130000379, + "rushingGame100To199Yards": 0.0000233681, + "rushingGame200PlusYards": 7.97463e-7, "rushingTouchdowns": 0.004003593, "rushingTouchdowns40Plus": 0.000238695, "rushingTouchdowns50Plus": 0.000167087, "rushingYards": 0.819002385, "rushingYardsPerAttempt": 6.299999979230829, - "turnovers": 0.031861409, + "totalTurnovers": 0.031861409, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 9, "receivingYards": 37, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.333333333333334, "rushingAttempts": 1, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.300000000000001, @@ -8429,11 +10195,15 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.667058395, "receivingTargets": 7.790737982, "receivingTouchdowns": 0.354875746, - "receivingTouchdowns40Plus": 0.003966565, - "receivingTouchdowns50Plus": 0.00259215, + "receivingTouchdowns40Plus": 0.092374498, + "receivingTouchdowns50Plus": 0.00286, "receivingYards": 49.22678575, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 10.547711552685639, - "turnovers": 0.034327125, + "totalTurnovers": 0.034327125, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8441,7 +10211,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingTouchdowns": 1, "receivingYards": 38, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.666666666666666, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9.8, @@ -8492,25 +10267,43 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.721888486, "receivingTargets": 2.260668769, "receivingTouchdowns": 0.090329219, - "receivingTouchdowns40Plus": 0.004500994, - "receivingTouchdowns50Plus": 0.0029414, + "receivingTouchdowns40Plus": 0.005636224, + "receivingTouchdowns50Plus": 0.000174, "receivingYards": 14.71077303, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.54339473758465, "rushing2PtConversions": 0.015080248, "rushingAttempts": 14.42183659, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.149988523, + "rushingGame200PlusYards": 0.00512, "rushingTouchdowns": 0.411608043, "rushingTouchdowns40Plus": 0.029976215, "rushingTouchdowns50Plus": 0.020983351, "rushingYards": 58.55741071, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.0603296497342996, - "turnovers": 0.035799164, + "totalTurnovers": 0.035799164, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 2, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 47, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.1333333333333333, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.7, @@ -8564,20 +10357,34 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.92307155, "passingCompletionPercentage": 0.639778048, "passingCompletions": 22.9827926, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.940278950000003, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.87602839, "passingTouchdowns": 1.654366922, "passingTouchdowns40Plus": 0.260777163, "passingTouchdowns50Plus": 0.170417876, "passingYards": 280.52929, + "passingYards300To399": 0.349515965, + "passingYards400Plus": 0.047210442, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 56, "rushing2PtConversions": 0.001837415, "rushingAttempts": 1.817578974, + "rushingGame100To199Yards": 0.000527431, + "rushingGame200PlusYards": 0.0000179992, "rushingTouchdowns": 0.048783522, "rushingTouchdowns40Plus": 0.003389303, "rushingTouchdowns50Plus": 0.002372512, "rushingYards": 3.55276442, "rushingYardsPerAttempt": 1.9546685293026502, - "turnovers": 1.076799362, + "totalTurnovers": 1.076799362, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8588,14 +10395,28 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 41, "passingCompletionPercentage": 0.5609756097560976, "passingCompletions": 23, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 18, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 3, "passingTouchdowns": 1, "passingYards": 335, + "passingYards300To399": 1, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 33, + "passingYardsPer20Yards": 16, + "passingYardsPer25Yards": 13, + "passingYardsPer50Yards": 6, + "passingYardsPer5Yards": 67, "rushingAttempts": 3, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 5.333333333333333, - "turnovers": 5, + "teamTie": 1, + "totalTurnovers": 5, "usesPoints": false, }, "totalPoints": 9, @@ -8646,24 +10467,43 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.72565364, "receivingTargets": 2.265466738, "receivingTouchdowns": 0.045101801, - "receivingTouchdowns40Plus": 0.002768976, - "receivingTouchdowns50Plus": 0.001809526, + "receivingTouchdowns40Plus": 0.004893604, + "receivingTouchdowns50Plus": 0.000151349, "receivingYards": 13.07471947, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.5766765513849, "rushing2PtConversions": 0.016813685, "rushingAttempts": 13.43807753, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.136617239, + "rushingGame200PlusYards": 0.004662222, "rushingTouchdowns": 0.207712993, "rushingTouchdowns40Plus": 0.027707207, "rushingTouchdowns50Plus": 0.019395045, "rushingYards": 55.89018229, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.159090626261627, - "turnovers": 0.080043014, + "totalTurnovers": 0.080043014, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 19, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 69, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 3.6315789473684212, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6.9, @@ -8715,28 +10555,42 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.460198249, "receivingTargets": 4.497351492, "receivingTouchdowns": 0.109022665, - "receivingTouchdowns40Plus": 0.006865227, - "receivingTouchdowns50Plus": 0.004486426, + "receivingTouchdowns40Plus": 0.028874099, + "receivingTouchdowns50Plus": 0.000893013, "receivingYards": 32.23749747, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 9.316661980080669, "rushing2PtConversions": 0.003166809, "rushingAttempts": 4.96622635, + "rushingGame100To199Yards": 0.018966792, + "rushingGame200PlusYards": 0.000647264, "rushingTouchdowns": 0.130615815, "rushingTouchdowns40Plus": 0.009525931, "rushingTouchdowns50Plus": 0.006668152, "rushingYards": 20.87777883, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.203952328914689, - "turnovers": 0.053095878, + "totalTurnovers": 0.053095878, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 6, "receivingYards": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 17, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.4, + "teamTie": 1, "usesPoints": false, }, "totalPoints": 2.5, @@ -8788,34 +10642,66 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.62387514, "passingCompletionPercentage": 0.626585685, "passingCompletions": 22.3214102, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.302464940000004, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 0.909461212, "passingTouchdowns": 1.297008023, "passingTouchdowns40Plus": 0.22634681, "passingTouchdowns50Plus": 0.147917641, "passingYards": 260.0099794, + "passingYards300To399": 0.25935966, + "passingYards400Plus": 0.03503269, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 52, "rushing2PtConversions": 0.004405106, "rushingAttempts": 4.119238652, + "rushingGame100To199Yards": 0.021540898, + "rushingGame200PlusYards": 0.000735108, "rushingTouchdowns": 0.179911587, "rushingTouchdowns40Plus": 0.007842108, "rushingTouchdowns50Plus": 0.005489476, "rushingYards": 22.24388872, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.3999999998057895, - "turnovers": 1.17212909, + "totalTurnovers": 1.17212909, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 27, "passingCompletionPercentage": 0.5555555555555556, "passingCompletions": 15, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 12, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 4, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 256, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 51, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 21, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 28.340000000000003, @@ -8868,10 +10754,12 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.0845, "defensiveForcedFumbles": 0.88268771, "defensiveFumbles": 0.573747011, + "defensiveHalfSacks": 3, "defensiveInterceptions": 0.840755332, "defensivePointsAllowed": 18.97248025, "defensiveSacks": 1.668506621, "defensiveSafeties": 0.0239, + "defensiveStuffs": 4.28376324, "defensiveYardsAllowed": 331.6740422, "fumbleReturnTouchdown": 0.086549509, "interceptionReturnTouchdown": 0.0737, @@ -8879,21 +10767,27 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 52.14851852, "puntReturnTouchdown": 0.013134, "puntReturnYards": 19.94853659, + "totalReturnTouchdowns": 0.201769103, "usesPoints": false, }, "rawStats": PlayerStats { "defensive350To399YardsAllowed": 1, "defensive7To13PointsAllowed": 1, "defensiveAssistedTackles": 24, + "defensiveHalfSacks": 2, "defensiveInterceptions": 3, "defensivePointsAllowed": 13, "defensiveSacks": 1, "defensiveSoloTackles": 46, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 23, + "defensiveTacklesPer5Tackles": 14, "defensiveTotalTackles": 70, "defensiveYardsAllowed": 395, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 75, "puntReturnYards": 12, + "totalReturnTouchdowns": 1, "usesPoints": false, }, "totalPoints": 15, @@ -8959,6 +10853,7 @@ exports[`2018 season client integration tests getBoxscoreForWeek returns a popul "madeExtraPoints": 1, "madeFieldGoals": 1, "madeFieldGoalsFromUnder40": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4, @@ -11927,18 +13822,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 79.26771668, "receivingTargets": 140.0255895, "receivingTouchdowns": 5.941496047, - "receivingTouchdowns40Plus": 0.139914599, - "receivingTouchdowns50Plus": 0.09143419, + "receivingTouchdowns40Plus": 3.180473835, + "receivingTouchdowns50Plus": 0.09836517, "receivingYards": 1060.698477, + "receivingYardsPer100Yards": 10, + "receivingYardsPer10Yards": 106, + "receivingYardsPer20Yards": 53, + "receivingYardsPer25Yards": 42, + "receivingYardsPer50Yards": 21, + "receivingYardsPer5Yards": 212, "receivingYardsPerReception": 13.381216482896676, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, "rushing2PtConversions": 0.001440831, "rushingAttempts": 1.817515813, + "rushingGame100To199Yards": 0.000265484, + "rushingGame200PlusYards": 0.00000905997, "rushingTouchdowns": 0.045773647, "rushingTouchdowns40Plus": 0.003336658, "rushingTouchdowns50Plus": 0.002335661, "rushingYards": 11.26846104, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.1999246220588455, - "turnovers": 0.588668183, + "totalTurnovers": 0.588668183, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11950,14 +13857,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 107, "receivingTouchdowns": 7, "receivingTouchdowns40Plus": 3, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns50Plus": 1, "receivingYards": 1005, "receivingYardsAfterCatch": 120, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 94, + "receivingYardsPer20Yards": 42, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 197, "receivingYardsPerReception": 13.4, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 10, "rushingAttempts": 2, "rushingYards": 20, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 10, - "turnovers": 2, + "teamLoss": 8, + "teamWin": 8, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -11998,11 +13917,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 51.80254141, "receivingTargets": 89.90731228, "receivingTouchdowns": 5.064602901, - "receivingTouchdowns40Plus": 0.224287527, - "receivingTouchdowns50Plus": 0.146571899, + "receivingTouchdowns40Plus": 1.364904805, + "receivingTouchdowns50Plus": 0.042213551, "receivingYards": 764.1058272, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 76, + "receivingYardsPer20Yards": 38, + "receivingYardsPer25Yards": 30, + "receivingYardsPer50Yards": 15, + "receivingYardsPer5Yards": 152, "receivingYardsPerReception": 14.750354063758278, - "turnovers": 0.303726488, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.303726488, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12014,12 +13941,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 70, "receivingTargets": 120, "receivingTouchdowns": 5, + "receivingTouchdowns40Plus": 3, "receivingYards": 1063, "receivingYardsAfterCatch": 39, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 99, + "receivingYardsPer20Yards": 44, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 206, "receivingYardsPerReception": 15.185714285714285, + "receptionsPer5Receptions": 8, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -12057,20 +13995,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 577.0296687, "passingCompletionPercentage": 0.627253017, "passingCompletions": 361.9436006, + "passingCompletionsPer10Completions": 36, + "passingCompletionsPer5Completions": 72, "passingIncompletions": 215.08606809999998, + "passingIncompletionsPer10Incompletions": 21, + "passingIncompletionsPer5Incompletions": 43, "passingInterceptions": 11.55000128, "passingTouchdowns": 29.7056609, "passingTouchdowns40Plus": 3.920619597, "passingTouchdowns50Plus": 2.562124907, "passingYards": 4338.88126, + "passingYards300To399": 4.927463443, + "passingYards400Plus": 0.665571112, + "passingYardsPer100Yards": 43, + "passingYardsPer10Yards": 433, + "passingYardsPer20Yards": 216, + "passingYardsPer25Yards": 173, + "passingYardsPer50Yards": 86, + "passingYardsPer5Yards": 867, "rushing2PtConversions": 0.013745431, "rushingAttempts": 23.73042127, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.006383347, + "rushingGame200PlusYards": 0.000217839, "rushingTouchdowns": 0.429477461, "rushingTouchdowns40Plus": 0.044116648, "rushingTouchdowns50Plus": 0.030881653, "rushingYards": 49.4108587, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 2.082173684900622, - "turnovers": 15.18709138, + "totalTurnovers": 15.18709138, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12080,16 +14038,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 508, "passingCompletionPercentage": 0.6830708661417323, "passingCompletions": 347, + "passingCompletionsPer10Completions": 26, + "passingCompletionsPer5Completions": 61, "passingIncompletions": 161, + "passingIncompletionsPer10Incompletions": 10, + "passingIncompletionsPer5Incompletions": 26, "passingInterceptions": 12, "passingTouchdowns": 32, "passingTouchdowns40Plus": 7, "passingTouchdowns50Plus": 3, "passingYards": 4308, + "passingYards300To399": 3, + "passingYards400Plus": 2, + "passingYardsPer100Yards": 37, + "passingYardsPer10Yards": 423, + "passingYardsPer20Yards": 208, + "passingYardsPer25Yards": 166, + "passingYardsPer50Yards": 80, + "passingYardsPer5Yards": 855, "rushingAttempts": 18, "rushingYards": 7, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 0.3888888888888889, - "turnovers": 13, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 13, "usesPoints": false, }, }, @@ -12130,11 +14103,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 72.46750474, "receivingTargets": 137.3659499, "receivingTouchdowns": 7.558531833, - "receivingTouchdowns40Plus": 0.142999973, - "receivingTouchdowns50Plus": 0.093450483, + "receivingTouchdowns40Plus": 3.068349168, + "receivingTouchdowns50Plus": 0.094897397, "receivingYards": 1044.926901, + "receivingYardsPer100Yards": 10, + "receivingYardsPer10Yards": 104, + "receivingYardsPer20Yards": 52, + "receivingYardsPer25Yards": 41, + "receivingYardsPer50Yards": 20, + "receivingYardsPer5Yards": 208, "receivingYardsPerReception": 14.419247699351654, - "turnovers": 0.357691908, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, + "totalTurnovers": 0.357691908, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12145,13 +14126,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 55, "receivingTargets": 94, "receivingTouchdowns": 4, + "receivingTouchdowns40Plus": 1, "receivingYards": 754, "receivingYardsAfterCatch": 21, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 144, "receivingYardsPerReception": 13.709090909090909, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 7, "rushingAttempts": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 9, - "turnovers": 1, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -12189,20 +14182,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 570.718652, "passingCompletionPercentage": 0.647557978, "passingCompletions": 369.5734164, + "passingCompletionsPer10Completions": 36, + "passingCompletionsPer5Completions": 73, "passingIncompletions": 201.14523560000003, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 40, "passingInterceptions": 14.14406979, "passingTouchdowns": 27.2557775, "passingTouchdowns40Plus": 3.88270839, "passingTouchdowns50Plus": 2.537349933, "passingYards": 4315.030724, + "passingYards300To399": 4.841396784, + "passingYards400Plus": 0.653945763, + "passingYardsPer100Yards": 43, + "passingYardsPer10Yards": 431, + "passingYardsPer20Yards": 215, + "passingYardsPer25Yards": 172, + "passingYardsPer50Yards": 86, + "passingYardsPer5Yards": 863, "rushing2PtConversions": 0.059237358, "rushingAttempts": 46.62483641, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 0.049635239, + "rushingGame200PlusYards": 0.00169386, "rushingTouchdowns": 2.042019263, "rushingTouchdowns40Plus": 0.087811773, "rushingTouchdowns50Plus": 0.061468241, "rushingYards": 135.5981272, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 27, "rushingYardsPerAttempt": 2.90828102875482, - "turnovers": 19.05123883, + "totalTurnovers": 19.05123883, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12212,21 +14227,41 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 606, "passingCompletionPercentage": 0.7013201320132013, "passingCompletions": 425, + "passingCompletionsPer10Completions": 38, + "passingCompletionsPer5Completions": 81, "passingIncompletions": 181, + "passingIncompletionsPer10Incompletions": 11, + "passingIncompletionsPer5Incompletions": 30, "passingInterceptions": 10, "passingTouchdowns": 30, "passingTouchdowns40Plus": 4, "passingTouchdowns50Plus": 1, "passingYards": 4298, + "passingYards300To399": 3, + "passingYards400Plus": 2, + "passingYardsPer100Yards": 37, + "passingYardsPer10Yards": 424, + "passingYardsPer20Yards": 209, + "passingYardsPer25Yards": 165, + "passingYardsPer50Yards": 79, + "passingYardsPer5Yards": 853, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": -1, "receivingYardsPerReception": -1, "rushingAttempts": 44, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 123, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 2.7954545454545454, - "turnovers": 17, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, + "totalTurnovers": 17, "usesPoints": false, }, }, @@ -12269,18 +14304,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 88.93662606, "receivingTargets": 123.6225544, "receivingTouchdowns": 4.162173534, - "receivingTouchdowns40Plus": 0.177105707, - "receivingTouchdowns50Plus": 0.11573858, + "receivingTouchdowns40Plus": 2.692598186, + "receivingTouchdowns50Plus": 0.083276233, "receivingYards": 990.5578584, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 99, + "receivingYardsPer20Yards": 49, + "receivingYardsPer25Yards": 39, + "receivingYardsPer50Yards": 19, + "receivingYardsPer5Yards": 198, "receivingYardsPerReception": 11.13779443051654, + "receptionsPer10Receptions": 8, + "receptionsPer5Receptions": 17, "rushing2PtConversions": 0.005114218, "rushingAttempts": 5.30956156, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.001987844, + "rushingGame200PlusYards": 0.0000678375, "rushingTouchdowns": 0.115909279, "rushingTouchdowns40Plus": 0.009767234, "rushingTouchdowns50Plus": 0.006837064, "rushingYards": 28.22662618, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 5.316187760708438, - "turnovers": 0.575945174, + "totalTurnovers": 0.575945174, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12292,13 +14342,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 74, "receivingTargets": 113, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 1, + "receivingTouchdowns40Plus": 2, "receivingYards": 795, "receivingYardsAfterCatch": 105, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 72, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 152, "receivingYardsPerReception": 10.743243243243244, + "receptionsPer5Receptions": 9, "rushingAttempts": 4, "rushingYards": 34, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 8.5, + "teamLoss": 7, + "teamWin": 8, "usesPoints": false, }, }, @@ -12338,18 +14401,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 56.12022537, "receivingTargets": 73.016979, "receivingTouchdowns": 1.498814674, - "receivingTouchdowns40Plus": 0.052881859, - "receivingTouchdowns50Plus": 0.034558295, + "receivingTouchdowns40Plus": 0.305042274, + "receivingTouchdowns50Plus": 0.009434297, "receivingYards": 439.2702409, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 87, "receivingYardsPerReception": 7.8273071429042975, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.118905832, "rushingAttempts": 243.8459301, + "rushingAttemptsPer10Attempts": 24, + "rushingAttemptsPer5Attempts": 48, + "rushingGame100To199Yards": 3.317848355, + "rushingGame200PlusYards": 0.113225435, "rushingTouchdowns": 5.843878169, "rushingTouchdowns40Plus": 0.510508594, "rushingTouchdowns50Plus": 0.357356016, "rushingYards": 1098.015207, + "rushingYardsPer100Yards": 10, + "rushingYardsPer10Yards": 109, + "rushingYardsPer20Yards": 54, + "rushingYardsPer25Yards": 43, + "rushingYardsPer50Yards": 21, + "rushingYardsPer5Yards": 219, "rushingYardsPerAttempt": 4.502905611546231, - "turnovers": 1.254263568, + "totalTurnovers": 1.254263568, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12357,11 +14438,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 46, "receivingYards": 238, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 7, + "receptionsPer5Receptions": 1, "rushingAttempts": 161, + "rushingAttemptsPer10Attempts": 10, + "rushingAttemptsPer5Attempts": 28, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 3, "rushingYards": 514, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 46, + "rushingYardsPer20Yards": 20, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 97, "rushingYardsPerAttempt": 3.1925465838509317, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -12401,11 +14499,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.6477624, "receivingTargets": 63.96951673, "receivingTouchdowns": 4.280736801, - "receivingTouchdowns40Plus": 0.148428458, - "receivingTouchdowns50Plus": 0.096997997, + "receivingTouchdowns40Plus": 0.407299938, + "receivingTouchdowns50Plus": 0.012596905, "receivingYards": 491.3685517, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 49, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 98, "receivingYardsPerReception": 11.005446304292285, - "turnovers": 0.237159595, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.237159595, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12415,7 +14521,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 660, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 125, "receivingYardsPerReception": 9.295774647887324, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 8, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -12457,18 +14572,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.16723222, "receivingTargets": 60.98066778, "receivingTouchdowns": 1.611017749, - "receivingTouchdowns40Plus": 0.057048653, - "receivingTouchdowns50Plus": 0.037281295, + "receivingTouchdowns40Plus": 0.206661129, + "receivingTouchdowns50Plus": 0.006391581, "receivingYards": 374.0852201, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 8.102829693523265, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, "rushing2PtConversions": 0.069813318, "rushingAttempts": 131.9969068, + "rushingAttemptsPer10Attempts": 13, + "rushingAttemptsPer5Attempts": 26, + "rushingGame100To199Yards": 0.902045681, + "rushingGame200PlusYards": 0.030783358, "rushingTouchdowns": 3.672513951, "rushingTouchdowns40Plus": 0.260592767, "rushingTouchdowns50Plus": 0.182414937, "rushingYards": 573.5993804, + "rushingYardsPer100Yards": 5, + "rushingYardsPer10Yards": 57, + "rushingYardsPer20Yards": 28, + "rushingYardsPer25Yards": 22, + "rushingYardsPer50Yards": 11, + "rushingYardsPer5Yards": 114, "rushingYardsPerAttempt": 4.3455516822762394, - "turnovers": 0.758375129, + "totalTurnovers": 0.758375129, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12479,12 +14612,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 400, "receivingYardsAfterCatch": 76, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 6.779661016949152, + "receptionsPer5Receptions": 5, "rushingAttempts": 155, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 25, "rushingTouchdowns": 1, "rushingYards": 517, + "rushingYardsPer10Yards": 45, + "rushingYardsPer20Yards": 19, + "rushingYardsPer25Yards": 15, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 98, "rushingYardsPerAttempt": 3.335483870967742, - "turnovers": 1, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -12525,18 +14673,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 62.33618434, "receivingTargets": 117.4091167, "receivingTouchdowns": 6.281246931, - "receivingTouchdowns40Plus": 0.212862619, - "receivingTouchdowns50Plus": 0.139105722, + "receivingTouchdowns40Plus": 2.658712748, + "receivingTouchdowns50Plus": 0.0822, "receivingYards": 985.0410404, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 98, + "receivingYardsPer20Yards": 49, + "receivingYardsPer25Yards": 39, + "receivingYardsPer50Yards": 19, + "receivingYardsPer5Yards": 197, "receivingYardsPerReception": 15.802074683097294, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, "rushing2PtConversions": 0.001192147, "rushingAttempts": 1.891993373, + "rushingGame100To199Yards": 0.000292263, + "rushingGame200PlusYards": 0.00000997382, "rushingTouchdowns": 0.049608601, "rushingTouchdowns40Plus": 0.003473541, "rushingTouchdowns50Plus": 0.002431478, "rushingYards": 11.74218265, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.206249354553104, - "turnovers": 0.262219338, + "totalTurnovers": 0.262219338, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12545,10 +14705,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 41, "receivingTargets": 71, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, + "receivingTouchdowns40Plus": 2, "receivingYards": 737, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 31, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 144, "receivingYardsPerReception": 17.975609756097562, + "receptionsPer5Receptions": 4, + "teamLoss": 5, + "teamTie": 1, + "teamWin": 10, "usesPoints": false, }, }, @@ -12589,11 +14758,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 88.11528626, "receivingTargets": 143.8268942, "receivingTouchdowns": 6.157855567, - "receivingTouchdowns40Plus": 0.108195421, - "receivingTouchdowns50Plus": 0.070705708, + "receivingTouchdowns40Plus": 2.933737613, + "receivingTouchdowns50Plus": 0.090734153, "receivingYards": 1026.005319, + "receivingYardsPer100Yards": 10, + "receivingYardsPer10Yards": 102, + "receivingYardsPer20Yards": 51, + "receivingYardsPer25Yards": 41, + "receivingYardsPer50Yards": 20, + "receivingYardsPer5Yards": 205, "receivingYardsPerReception": 11.643897018873512, - "turnovers": 0.576113101, + "receptionsPer10Receptions": 8, + "receptionsPer5Receptions": 17, + "totalTurnovers": 0.576113101, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12605,7 +14782,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns40Plus": 1, "receivingYards": 677, "receivingYardsAfterCatch": 33, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 61, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 129, "receivingYardsPerReception": 11.474576271186441, + "receptionsPer5Receptions": 6, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -12646,11 +14832,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 37.95382635, "receivingTargets": 58.48039061, "receivingTouchdowns": 2.304455754, - "receivingTouchdowns40Plus": 0.127975969, - "receivingTouchdowns50Plus": 0.083632296, + "receivingTouchdowns40Plus": 0.29457642, + "receivingTouchdowns50Plus": 0.009110611, "receivingYards": 433.7185389, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 86, "receivingYardsPerReception": 11.427531308710854, - "turnovers": 0.231158783, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.231158783, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12661,12 +14855,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 76, "receivingTargets": 108, "receivingTouchdowns": 7, + "receivingTouchdowns40Plus": 3, "receivingYards": 1028, "receivingYardsAfterCatch": 52, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 97, + "receivingYardsPer20Yards": 45, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 201, "receivingYardsPerReception": 13.526315789473685, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 8, "rushingAttempts": 2, "rushingYards": 3, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -12709,18 +14915,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43.49642721, "receivingTargets": 77.20333232, "receivingTouchdowns": 3.525859474, - "receivingTouchdowns40Plus": 0.142935992, - "receivingTouchdowns50Plus": 0.093408671, + "receivingTouchdowns40Plus": 0.696053513, + "receivingTouchdowns50Plus": 0.021527428, "receivingYards": 588.5577439, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 13.531174435510607, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.000207615, "rushingAttempts": 0.283497999, + "rushingGame100To199Yards": 0.000122529, + "rushingGame200PlusYards": 0.00000418145, "rushingTouchdowns": 0.007835227, "rushingTouchdowns40Plus": 0.000521272, "rushingTouchdowns50Plus": 0.00036489, "rushingYards": 1.757687593, "rushingYardsPerAttempt": 6.199999997178111, - "turnovers": 0.256391801, + "totalTurnovers": 0.256391801, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12734,14 +14950,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 82, "receivingTouchdowns": 2, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 788, "receivingYardsAfterCatch": 53, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 72, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 151, "receivingYardsPerReception": 14.327272727272728, + "receptionsPer5Receptions": 4, "rushingAttempts": 13, "rushingYards": 172, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 30, "rushingYardsPerAttempt": 13.23076923076923, - "turnovers": 2, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -12781,18 +15009,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.70188942, "receivingTargets": 14.15664917, "receivingTouchdowns": 0.470301361, - "receivingTouchdowns40Plus": 0.048520411, - "receivingTouchdowns50Plus": 0.031708088, + "receivingTouchdowns40Plus": 0.036942803, + "receivingTouchdowns50Plus": 0.001142561, "receivingYards": 86.3029267, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 8.064270084749202, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.119204525, "rushingAttempts": 116.3890538, + "rushingAttemptsPer10Attempts": 11, + "rushingAttemptsPer5Attempts": 23, + "rushingGame100To199Yards": 0.836008398, + "rushingGame200PlusYards": 0.028529759, "rushingTouchdowns": 3.035504852, "rushingTouchdowns40Plus": 0.229946172, "rushingTouchdowns50Plus": 0.16096232, "rushingYards": 515.8269467, + "rushingYardsPer100Yards": 5, + "rushingYardsPer10Yards": 51, + "rushingYardsPer20Yards": 25, + "rushingYardsPer25Yards": 20, + "rushingYardsPer50Yards": 10, + "rushingYardsPer5Yards": 103, "rushingYardsPerAttempt": 4.43191975412382, - "turnovers": 0.44877322, + "totalTurnovers": 0.44877322, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12802,12 +15047,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 35, "receivingTouchdowns": 1, "receivingYards": 206, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 7.923076923076923, + "receptionsPer5Receptions": 1, "rushingAttempts": 133, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 22, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 8, "rushingYards": 728, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 68, + "rushingYardsPer20Yards": 32, + "rushingYardsPer25Yards": 23, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 143, "rushingYardsPerAttempt": 5.473684210526316, - "turnovers": 1, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -12848,11 +15111,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 60.24586564, "receivingTargets": 111.5309435, "receivingTouchdowns": 5.41647253, - "receivingTouchdowns40Plus": 0.223852047, - "receivingTouchdowns50Plus": 0.146287313, + "receivingTouchdowns40Plus": 2.413641384, + "receivingTouchdowns50Plus": 0.0746, "receivingYards": 948.0006938, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 94, + "receivingYardsPer20Yards": 47, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 189, "receivingYardsPerReception": 15.735531122829096, - "turnovers": 0.298901036, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, + "totalTurnovers": 0.298901036, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12862,12 +15133,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 40, "receivingTargets": 55, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 2, "receivingYards": 519, "receivingYardsAfterCatch": 104, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 100, "receivingYardsPerReception": 12.975, + "receptionsPer5Receptions": 5, "rushingAttempts": 5, "rushingYards": 52, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 10.4, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -12908,18 +15193,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 71.39659504, "receivingTargets": 114.5483597, "receivingTouchdowns": 5.150678382, - "receivingTouchdowns40Plus": 0.111797179, - "receivingTouchdowns50Plus": 0.073059456, + "receivingTouchdowns40Plus": 1.668614565, + "receivingTouchdowns50Plus": 0.051606636, "receivingYards": 823.175077, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 82, + "receivingYardsPer20Yards": 41, + "receivingYardsPer25Yards": 32, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 164, "receivingYardsPerReception": 11.52961253318615, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, "rushing2PtConversions": 0.00510224, "rushingAttempts": 4.234500598, + "rushingGame100To199Yards": 0.001698612, + "rushingGame200PlusYards": 0.0000579671, "rushingTouchdowns": 0.095814925, "rushingTouchdowns40Plus": 0.007784729, "rushingTouchdowns50Plus": 0.00544931, "rushingYards": 26.2178482, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.191485298734629, - "turnovers": 0.44579048, + "totalTurnovers": 0.44579048, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12931,12 +15230,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 66, "receivingTargets": 107, "receivingTouchdowns": 4, + "receivingTouchdowns40Plus": 2, "receivingYards": 872, "receivingYardsAfterCatch": 14, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 78, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 27, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 167, "receivingYardsPerReception": 13.212121212121213, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 6, "rushingAttempts": 3, "rushingYards": 33, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 11, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -12973,33 +15287,68 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 55.3, "receivingTargets": 74.8, "receivingTouchdowns": 1.9, - "receivingTouchdowns40Plus": 0.05044309, - "receivingTouchdowns50Plus": 0.032964559, + "receivingTouchdowns40Plus": 0.315939804, + "receivingTouchdowns50Plus": 0.009771334, "receivingYards": 445.7, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 89, "receivingYardsPerReception": 8.059674502712477, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.181706673, "rushingAttempts": 236.2, + "rushingAttemptsPer10Attempts": 23, + "rushingAttemptsPer5Attempts": 47, + "rushingGame100To199Yards": 2.738685819, + "rushingGame200PlusYards": 0.09346084, "rushingTouchdowns": 8, "rushingTouchdowns40Plus": 0.492475792, "rushingTouchdowns50Plus": 0.344733054, "rushingYards": 998.7, + "rushingYardsPer100Yards": 9, + "rushingYardsPer10Yards": 99, + "rushingYardsPer20Yards": 49, + "rushingYardsPer25Yards": 39, + "rushingYardsPer50Yards": 19, + "rushingYardsPer5Yards": 199, "rushingYardsPerAttempt": 4.228196443691787, - "turnovers": 0.863661493, + "totalTurnovers": 0.863661493, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 26, "receivingTargets": 35, "receivingTouchdowns": 7, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 378, "receivingYardsAfterCatch": 14, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 14.538461538461538, + "receptionsPer5Receptions": 3, "rushingAttempts": 181, + "rushingAttemptsPer10Attempts": 12, + "rushingAttemptsPer5Attempts": 32, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 7, "rushingYards": 824, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 79, + "rushingYardsPer20Yards": 37, + "rushingYardsPer25Yards": 27, + "rushingYardsPer50Yards": 10, + "rushingYardsPer5Yards": 162, "rushingYardsPerAttempt": 4.552486187845304, + "teamLoss": 2, + "teamWin": 9, "usesPoints": false, }, }, @@ -13040,11 +15389,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 47.18692962, "receivingTargets": 79.80783696, "receivingTouchdowns": 4.157979646, - "receivingTouchdowns40Plus": 0.188018635, - "receivingTouchdowns50Plus": 0.122870178, + "receivingTouchdowns40Plus": 0.868754928, + "receivingTouchdowns50Plus": 0.026868709, "receivingYards": 648.5234225, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 64, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 129, "receivingYardsPerReception": 13.74370885587618, - "turnovers": 0.276664427, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.276664427, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13056,10 +15413,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 59, "receivingTargets": 95, "receivingTouchdowns": 7, + "receivingTouchdowns40Plus": 3, "receivingYards": 842, "receivingYardsAfterCatch": 9, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 79, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 27, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 162, "receivingYardsPerReception": 14.271186440677965, - "turnovers": 1, + "receptionsPer5Receptions": 7, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -13094,10 +15461,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.372893444, "defensiveForcedFumbles": 12.02313462, "defensiveFumbles": 7.8150375, + "defensiveHalfSacks": 78, "defensiveInterceptions": 12.51247808, "defensivePointsAllowed": 322.0074711, "defensiveSacks": 39.3572654, "defensiveSafeties": 0.361, + "defensiveStuffs": 66.38675125, "defensiveYardsAllowed": 5454.551622, "fumbleReturnTouchdown": 1.29, "interceptionReturnTouchdown": 1.177246143, @@ -13105,6 +15474,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 725.9799706, "puntReturnTouchdown": 0.519637952, "puntReturnYards": 307.8063506, + "totalReturnTouchdowns": 3.279003577, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13122,10 +15492,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 333, "defensiveForcedFumbles": 7, "defensiveFumbles": 7, + "defensiveHalfSacks": 76, "defensiveInterceptions": 13, "defensivePointsAllowed": 317, "defensiveSacks": 38, "defensiveSoloTackles": 723, + "defensiveStuffs": 41, + "defensiveTacklesPer3Tackles": 346, + "defensiveTacklesPer5Tackles": 206, "defensiveTotalTackles": 1056, "defensiveYardsAllowed": 5339, "fumbleReturnTouchdown": 1, @@ -13133,6 +15507,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 653, "puntReturnTouchdown": 1, "puntReturnYards": 358, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -13170,20 +15545,39 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 105.7477057, "passingCompletionPercentage": 0.615126421, "passingCompletions": 65.04820769, + "passingCompletionsPer10Completions": 6, + "passingCompletionsPer5Completions": 13, "passingIncompletions": 40.69949801, + "passingIncompletionsPer10Incompletions": 4, + "passingIncompletionsPer5Incompletions": 8, "passingInterceptions": 2.727699297, "passingTouchdowns": 4.157799254, "passingTouchdowns40Plus": 0.630830795, "passingTouchdowns50Plus": 0.412247924, "passingYards": 730.2295353, + "passingYards300To399": 0.583675304, + "passingYards400Plus": 0.07883923, + "passingYardsPer100Yards": 7, + "passingYardsPer10Yards": 73, + "passingYardsPer20Yards": 36, + "passingYardsPer25Yards": 29, + "passingYardsPer50Yards": 14, + "passingYardsPer5Yards": 146, "rushing2PtConversions": 0.008174281, "rushingAttempts": 9.102805567, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.025938411, + "rushingGame200PlusYards": 0.000885178, "rushingTouchdowns": 0.341819664, "rushingTouchdowns40Plus": 0.017151824, "rushingTouchdowns50Plus": 0.012006277, "rushingYards": 42.81672772, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.7036847491526785, - "turnovers": 3.501788493, + "totalTurnovers": 3.501788493, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13193,18 +15587,37 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 486, "passingCompletionPercentage": 0.6378600823045267, "passingCompletions": 310, + "passingCompletionsPer10Completions": 23, + "passingCompletionsPer5Completions": 55, "passingIncompletions": 176, + "passingIncompletionsPer10Incompletions": 12, + "passingIncompletionsPer5Incompletions": 28, "passingInterceptions": 14, "passingTouchdowns": 27, "passingTouchdowns40Plus": 3, "passingTouchdowns50Plus": 1, "passingYards": 3725, + "passingYards300To399": 3, + "passingYardsPer100Yards": 29, + "passingYardsPer10Yards": 365, + "passingYardsPer20Yards": 178, + "passingYardsPer25Yards": 142, + "passingYardsPer50Yards": 66, + "passingYardsPer5Yards": 740, "receiving2PtConversions": 1, "receivingTargets": 1, "rushingAttempts": 39, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 131, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 3.358974358974359, - "turnovers": 17, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, + "totalTurnovers": 17, "usesPoints": false, }, }, @@ -13242,20 +15655,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 514.9226516, "passingCompletionPercentage": 0.633004581, "passingCompletions": 325.9483971, + "passingCompletionsPer10Completions": 32, + "passingCompletionsPer5Completions": 65, "passingIncompletions": 188.97425449999997, + "passingIncompletionsPer10Incompletions": 18, + "passingIncompletionsPer5Incompletions": 37, "passingInterceptions": 13.22626273, "passingTouchdowns": 21.10146929, "passingTouchdowns40Plus": 2.893520605, "passingTouchdowns50Plus": 1.890915715, "passingYards": 3682.718917, + "passingYards300To399": 2.646532814, + "passingYards400Plus": 0.357477191, + "passingYardsPer100Yards": 36, + "passingYardsPer10Yards": 368, + "passingYardsPer20Yards": 184, + "passingYardsPer25Yards": 147, + "passingYardsPer50Yards": 73, + "passingYardsPer5Yards": 736, "rushing2PtConversions": 0.069756166, "rushingAttempts": 55.68367438, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.254831653, + "rushingGame200PlusYards": 0.008696427, "rushingTouchdowns": 3.123842196, "rushingTouchdowns40Plus": 0.105405931, "rushingTouchdowns50Plus": 0.073784152, "rushingYards": 306.0765969, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 61, "rushingYardsPerAttempt": 5.496702584877087, - "turnovers": 16.48949595, + "totalTurnovers": 16.48949595, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13267,19 +15702,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 526, "passingCompletionPercentage": 0.6768060836501901, "passingCompletions": 356, + "passingCompletionsPer10Completions": 28, + "passingCompletionsPer5Completions": 64, "passingIncompletions": 170, + "passingIncompletionsPer10Incompletions": 12, + "passingIncompletionsPer5Incompletions": 30, "passingInterceptions": 8, "passingTouchdowns": 22, "passingTouchdowns40Plus": 5, "passingTouchdowns50Plus": 3, "passingYards": 3885, + "passingYards300To399": 1, + "passingYards400Plus": 1, + "passingYardsPer100Yards": 30, + "passingYardsPer10Yards": 381, + "passingYardsPer20Yards": 188, + "passingYardsPer25Yards": 147, + "passingYardsPer50Yards": 71, + "passingYardsPer5Yards": 771, "receivingTargets": 1, "rushing2PtConversions": 1, "rushingAttempts": 75, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 9, "rushingTouchdowns": 6, "rushingYards": 305, + "rushingYardsPer10Yards": 25, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 55, "rushingYardsPerAttempt": 4.066666666666666, - "turnovers": 14, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 14, "usesPoints": false, }, }, @@ -13319,11 +15775,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 73.2809429, "receivingTargets": 98.31901485, "receivingTouchdowns": 5.594590774, - "receivingTouchdowns40Plus": 0.142413652, - "receivingTouchdowns50Plus": 0.093067322, + "receivingTouchdowns40Plus": 1.284253195, + "receivingTouchdowns50Plus": 0.039719171, "receivingYards": 747.3684242, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 74, + "receivingYardsPer20Yards": 37, + "receivingYardsPer25Yards": 29, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 149, "receivingYardsPerReception": 10.198673688190222, - "turnovers": 0.599779563, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, + "totalTurnovers": 0.599779563, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13336,8 +15800,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 558, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 108, "receivingYardsPerReception": 10.333333333333334, - "turnovers": 1, + "receptionsPer5Receptions": 5, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -13377,21 +15849,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 64.7, "receivingTargets": 81.3, "receivingTouchdowns": 2.4, - "receivingTouchdowns40Plus": 0.05197957, - "receivingTouchdowns50Plus": 0.033968649, + "receivingTouchdowns40Plus": 0.658090594, + "receivingTouchdowns50Plus": 0.020353317, "receivingYards": 513.6, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 102, "receivingYardsPerReception": 7.938176197836167, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, "rushing2PtConversions": 0.309414981, "rushingAttempts": 248.5, + "rushingAttemptsPer10Attempts": 24, + "rushingAttemptsPer5Attempts": 49, + "rushingGame100To199Yards": 3.840710758, + "rushingGame200PlusYards": 0.131068723, "rushingTouchdowns": 8, "rushingTouchdowns40Plus": 0.536458907, "rushingTouchdowns50Plus": 0.375521235, "rushingYards": 1066.4, + "rushingYardsPer100Yards": 10, + "rushingYardsPer10Yards": 106, + "rushingYardsPer20Yards": 53, + "rushingYardsPer25Yards": 42, + "rushingYardsPer50Yards": 21, + "rushingYardsPer5Yards": 213, "rushingYardsPerAttempt": 4.291348088531188, - "turnovers": 1.139640852, + "totalTurnovers": 1.139640852, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -13432,11 +15925,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 38.94118956, "receivingTargets": 66.1658801, "receivingTouchdowns": 4.817839584, - "receivingTouchdowns40Plus": 0.146998812, - "receivingTouchdowns50Plus": 0.096063724, + "receivingTouchdowns40Plus": 0.44321799, + "receivingTouchdowns50Plus": 0.013707773, "receivingYards": 507.309122, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 50, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 101, "receivingYardsPerReception": 13.02757126148768, - "turnovers": 0.228318349, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.228318349, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13446,15 +15947,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43, "receivingTargets": 66, "receivingTouchdowns": 10, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 1, "receivingYards": 664, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 60, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 130, "receivingYardsPerReception": 15.44186046511628, + "receptionsPer5Receptions": 3, "rushingAttempts": 7, "rushingTouchdowns": 1, "rushingYards": 28, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -13495,11 +16004,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 60.99687118, "receivingTargets": 112.2715614, "receivingTouchdowns": 6.181998563, - "receivingTouchdowns40Plus": 0.161993717, - "receivingTouchdowns50Plus": 0.105862894, + "receivingTouchdowns40Plus": 1.994237018, + "receivingTouchdowns50Plus": 0.061677434, "receivingYards": 880.7825274, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 88, + "receivingYardsPer20Yards": 44, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 17, + "receivingYardsPer5Yards": 176, "receivingYardsPerReception": 14.439798474266595, - "turnovers": 0.26014631, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, + "totalTurnovers": 0.26014631, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13510,7 +16027,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 549, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 50, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 104, "receivingYardsPerReception": 12.477272727272727, + "receptionsPer5Receptions": 3, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -13551,11 +16076,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 70.03312276, "receivingTargets": 120.8145911, "receivingTouchdowns": 5.062911646, - "receivingTouchdowns40Plus": 0.136357007, - "receivingTouchdowns50Plus": 0.089109304, + "receivingTouchdowns40Plus": 2.167592898, + "receivingTouchdowns50Plus": 0.067038956, "receivingYards": 909.6727112, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 90, + "receivingYardsPer20Yards": 45, + "receivingYardsPer25Yards": 36, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 181, "receivingYardsPerReception": 12.989178196685629, - "turnovers": 0.40334758, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, + "totalTurnovers": 0.40334758, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13565,18 +16098,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingTouchdowns": 1, "passingYards": 28, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 5, "receivingReceptions": 71, "receivingTargets": 98, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 1, + "receivingTouchdowns40Plus": 3, "receivingYards": 868, "receivingYardsAfterCatch": 31, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 80, + "receivingYardsPer20Yards": 36, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 170, "receivingYardsPerReception": 12.225352112676056, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 9, "rushingAttempts": 4, "rushingTouchdowns": 1, "rushingYards": 53, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 13.25, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -13616,11 +16166,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.0283302, "receivingTargets": 70.58339197, "receivingTouchdowns": 4.456782294, - "receivingTouchdowns40Plus": 0.127704314, - "receivingTouchdowns50Plus": 0.083454769, + "receivingTouchdowns40Plus": 0.481610221, + "receivingTouchdowns50Plus": 0.014895161, "receivingYards": 523.1290069, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 52, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 104, "receivingYardsPerReception": 11.881645397944254, - "turnovers": 0.400088614, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.400088614, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13632,11 +16190,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 72, "receivingTouchdowns": 4, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 610, "receivingYardsAfterCatch": 88, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 52, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 115, "receivingYardsPerReception": 12.2, - "turnovers": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -13702,6 +16269,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 4, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFromUnder40": 2, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -13742,18 +16311,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.375044545, "receivingTargets": 15.95472496, "receivingTouchdowns": 1.142723852, - "receivingTouchdowns40Plus": 0.081536071, - "receivingTouchdowns50Plus": 0.053283823, + "receivingTouchdowns40Plus": 0.044661176, + "receivingTouchdowns50Plus": 0.001381273, "receivingYards": 106.6058174, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 11.371233159298018, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.003271034, "rushingAttempts": 6.164898005, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.003725159, + "rushingGame200PlusYards": 0.000127125, "rushingTouchdowns": 0.183828513, "rushingTouchdowns40Plus": 0.011346202, "rushingTouchdowns50Plus": 0.007942341, "rushingYards": 38.18527218, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 6.193982795665083, - "turnovers": 0.084658537, + "totalTurnovers": 0.084658537, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13764,10 +16347,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 5, "receivingYards": 402, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 77, "receivingYardsPerReception": 13.862068965517242, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": 8, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -13808,11 +16401,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 66.4592217, "receivingTargets": 106.3648331, "receivingTouchdowns": 5.868897576, - "receivingTouchdowns40Plus": 0.162986368, - "receivingTouchdowns50Plus": 0.106511592, + "receivingTouchdowns40Plus": 1.736747238, + "receivingTouchdowns50Plus": 0.053713832, "receivingYards": 835.592538, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 83, + "receivingYardsPer20Yards": 41, + "receivingYardsPer25Yards": 33, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 167, "receivingYardsPerReception": 12.573011188302857, - "turnovers": 0.416565819, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 13, + "totalTurnovers": 0.416565819, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13820,14 +16421,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 40, "receivingTargets": 56, "receivingTouchdowns": 6, - "receivingTouchdowns40Plus": 3, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 566, "receivingYardsAfterCatch": 101, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 110, "receivingYardsPerReception": 14.15, + "receptionsPer5Receptions": 6, "rushingAttempts": 4, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.25, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -13867,18 +16478,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 28.07735285, "receivingTargets": 36.43045169, "receivingTouchdowns": 0.659968252, - "receivingTouchdowns40Plus": 0.05190571, - "receivingTouchdowns50Plus": 0.033920381, + "receivingTouchdowns40Plus": 0.082389443, + "receivingTouchdowns50Plus": 0.002548127, "receivingYards": 218.544424, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 7.783654861181117, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.065601159, "rushingAttempts": 73.99876175, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.250508944, + "rushingGame200PlusYards": 0.008548909, "rushingTouchdowns": 2.214572742, "rushingTouchdowns40Plus": 0.141527201, "rushingTouchdowns50Plus": 0.099069041, "rushingYards": 302.8216113, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 60, "rushingYardsPerAttempt": 4.092252412588512, - "turnovers": 0.56758456, + "totalTurnovers": 0.56758456, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13891,12 +16520,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 487, "receivingYardsAfterCatch": 65, + "receivingYardsPer10Yards": 41, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 8.854545454545455, + "receptionsPer5Receptions": 6, "rushingAttempts": 104, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 15, "rushingTouchdowns": 1, "rushingYards": 414, + "rushingYardsPer10Yards": 35, + "rushingYardsPer20Yards": 14, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 77, "rushingYardsPerAttempt": 3.980769230769231, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -13960,6 +16604,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 2, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -14000,18 +16646,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 64.55265073, "receivingTargets": 95.95427509, "receivingTouchdowns": 5.087322074, - "receivingTouchdowns40Plus": 0.152143206, - "receivingTouchdowns50Plus": 0.099425585, + "receivingTouchdowns40Plus": 1.257847794, + "receivingTouchdowns50Plus": 0.038902509, "receivingYards": 741.4222139, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 74, + "receivingYardsPer20Yards": 37, + "receivingYardsPer25Yards": 29, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 148, "receivingYardsPerReception": 11.485542507016428, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, "rushing2PtConversions": 0.003303049, "rushingAttempts": 4.058699218, + "rushingGame100To199Yards": 0.001332173, + "rushingGame200PlusYards": 0.000045462, "rushingTouchdowns": 0.141257681, "rushingTouchdowns40Plus": 0.00746079, "rushingTouchdowns50Plus": 0.005222553, "rushingYards": 23.38414137, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.7614866522488875, - "turnovers": 0.305936248, + "totalTurnovers": 0.305936248, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14025,18 +16684,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingIncompletions": 1, "passingTouchdowns": 1, "passingYards": 5, + "passingYardsPer5Yards": 1, "receiving2PtConversions": 1, "receivingReceptions": 66, "receivingTargets": 95, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 838, "receivingYardsAfterCatch": 63, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 77, + "receivingYardsPer20Yards": 33, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 162, "receivingYardsPerReception": 12.696969696969697, + "receptionsPer5Receptions": 5, "rushingAttempts": 7, "rushingYards": 44, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 6.285714285714286, - "turnovers": 1, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -14076,18 +16749,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.1, "receivingTargets": 53.3, "receivingTouchdowns": 1.9, - "receivingTouchdowns40Plus": 0.086334851, - "receivingTouchdowns50Plus": 0.056419825, + "receivingTouchdowns40Plus": 0.19074941, + "receivingTouchdowns50Plus": 0.0059, "receivingYards": 360.9, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 72, "receivingYardsPerReception": 8.572446555819477, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.200052524, "rushingAttempts": 223.2, + "rushingAttemptsPer10Attempts": 22, + "rushingAttemptsPer5Attempts": 44, + "rushingGame100To199Yards": 2.420419897, + "rushingGame200PlusYards": 0.082599645, "rushingTouchdowns": 8.6, "rushingTouchdowns40Plus": 0.46237882, "rushingTouchdowns50Plus": 0.323665174, "rushingYards": 938.9, + "rushingYardsPer100Yards": 9, + "rushingYardsPer10Yards": 93, + "rushingYardsPer20Yards": 46, + "rushingYardsPer25Yards": 37, + "rushingYardsPer50Yards": 18, + "rushingYardsPer5Yards": 187, "rushingYardsPerAttempt": 4.206541218637993, - "turnovers": 1.306109249, + "totalTurnovers": 1.306109249, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14095,10 +16786,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 23, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 4.6, "rushingAttempts": 14, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 68, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.857142857142857, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -14141,18 +16841,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43.61862786, "receivingTargets": 73.75711046, "receivingTouchdowns": 3.383210273, - "receivingTouchdowns40Plus": 0.358191563, - "receivingTouchdowns50Plus": 0.234078186, + "receivingTouchdowns40Plus": 1.110502309, + "receivingTouchdowns50Plus": 0.034345432, "receivingYards": 709.05908, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 141, "receivingYardsPerReception": 16.255877701513743, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.004683952, "rushingAttempts": 3.856336917, + "rushingGame100To199Yards": 0.00138969, + "rushingGame200PlusYards": 0.0000474248, "rushingTouchdowns": 0.067534918, "rushingTouchdowns40Plus": 0.007087957, "rushingTouchdowns50Plus": 0.00496157, "rushingYards": 23.86844284, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.189408071369507, - "turnovers": 0.164355425, + "totalTurnovers": 0.164355425, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14163,14 +16876,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 74, "receivingTouchdowns": 4, "receivingTouchdowns40Plus": 3, - "receivingTouchdowns50Plus": 3, "receivingYards": 774, "receivingYardsAfterCatch": 44, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 149, "receivingYardsPerReception": 18.878048780487806, + "receptionsPer5Receptions": 3, "rushingAttempts": 6, "rushingTouchdowns": 1, "rushingYards": 29, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.833333333333333, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -14215,11 +16937,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.08473856, "receivingTargets": 28.76537883, "receivingTouchdowns": 1.135539764, - "receivingTouchdowns40Plus": 0.124853082, - "receivingTouchdowns50Plus": 0.081591489, + "receivingTouchdowns40Plus": 0.07957775, + "receivingTouchdowns50Plus": 0.002461168, "receivingYards": 212.1483087, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 12.417416160917828, - "turnovers": 0.100170523, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.100170523, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14232,7 +16962,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 243, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 8.1, + "receptionsPer5Receptions": 4, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -14297,6 +17034,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom50Plus": 2, "missedFieldGoalsFromUnder40": 1, "receivingTargets": 1, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -14336,18 +17076,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 59.32815911, "receivingTargets": 77.18515405, "receivingTouchdowns": 1.641131302, - "receivingTouchdowns40Plus": 0.101376362, - "receivingTouchdowns50Plus": 0.066249453, + "receivingTouchdowns40Plus": 0.531114609, + "receivingTouchdowns50Plus": 0.016426225, "receivingYards": 542.3408838, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 108, "receivingYardsPerReception": 9.14137387601137, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.048536981, "rushingAttempts": 75.67973491, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 15, + "rushingGame100To199Yards": 0.276927692, + "rushingGame200PlusYards": 0.00945048, "rushingTouchdowns": 2.019761519, "rushingTouchdowns40Plus": 0.144875936, "rushingTouchdowns50Plus": 0.101413155, "rushingYards": 318.6269472, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 31, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 63, "rushingYardsPerAttempt": 4.2102016818494175, - "turnovers": 0.85559096, + "totalTurnovers": 0.85559096, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14359,11 +17117,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 429, "receivingYardsAfterCatch": 52, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 9.127659574468085, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 2, "rushingAttempts": 40, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 201, + "rushingYardsPer10Yards": 15, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 38, "rushingYardsPerAttempt": 5.025, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -14403,18 +17175,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.63672924, "receivingTargets": 40.16323623, "receivingTouchdowns": 0.79152161, - "receivingTouchdowns40Plus": 0.051781, - "receivingTouchdowns50Plus": 0.033838884, + "receivingTouchdowns40Plus": 0.093311851, + "receivingTouchdowns50Plus": 0.00289, "receivingYards": 240.3396369, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 7.844820346755788, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.140119973, "rushingAttempts": 181.480472, + "rushingAttemptsPer10Attempts": 18, + "rushingAttemptsPer5Attempts": 36, + "rushingGame100To199Yards": 1.584717524, + "rushingGame200PlusYards": 0.0541, "rushingTouchdowns": 4.698351973, "rushingTouchdowns40Plus": 0.367926505, "rushingTouchdowns50Plus": 0.257548553, "rushingYards": 758.2782451, + "rushingYardsPer100Yards": 7, + "rushingYardsPer10Yards": 75, + "rushingYardsPer20Yards": 37, + "rushingYardsPer25Yards": 30, + "rushingYardsPer50Yards": 15, + "rushingYardsPer5Yards": 151, "rushingYardsPerAttempt": 4.178291122694458, - "turnovers": 0.777630035, + "totalTurnovers": 0.777630035, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14424,13 +17214,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 28, "receivingYards": 152, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 7.238095238095238, "rushingAttempts": 143, + "rushingAttemptsPer10Attempts": 10, + "rushingAttemptsPer5Attempts": 24, + "rushingGame100To199Yards": 1, + "rushingGame200PlusYards": 1, "rushingTouchdowns": 6, "rushingTouchdowns40Plus": 2, "rushingTouchdowns50Plus": 2, "rushingYards": 685, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 62, + "rushingYardsPer20Yards": 28, + "rushingYardsPer25Yards": 22, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 132, "rushingYardsPerAttempt": 4.79020979020979, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -14467,6 +17273,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -14509,11 +17317,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.91230938, "receivingTargets": 28.9267396, "receivingTouchdowns": 1.170428557, - "receivingTouchdowns40Plus": 0.132349288, - "receivingTouchdowns50Plus": 0.08649026, + "receivingTouchdowns40Plus": 0.081346376, + "receivingTouchdowns50Plus": 0.002515867, "receivingYards": 216.0985528, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 12.77758985745328, - "turnovers": 0.099159543, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.099159543, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14523,13 +17339,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 44, "receivingTouchdowns": 5, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 467, "receivingYardsAfterCatch": 15, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 90, "receivingYardsPerReception": 17.296296296296298, + "receptionsPer5Receptions": 2, "rushingAttempts": 1, "rushingYards": -2, "rushingYardsPerAttempt": -2, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -14571,18 +17395,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 54.83634123, "receivingTargets": 71.0081774, "receivingTouchdowns": 1.909617635, - "receivingTouchdowns40Plus": 0.081718659, - "receivingTouchdowns50Plus": 0.053403143, + "receivingTouchdowns40Plus": 0.370682004, + "receivingTouchdowns50Plus": 0.011464392, "receivingYards": 474.2951636, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 8.649285363709158, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, "rushing2PtConversions": 0.043626337, "rushingAttempts": 72.82977112, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.278824128, + "rushingGame200PlusYards": 0.009515198, "rushingTouchdowns": 1.962610138, "rushingTouchdowns40Plus": 0.139204937, "rushingTouchdowns50Plus": 0.097443456, "rushingYards": 319.5154065, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 31, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 63, "rushingYardsPerAttempt": 4.387153791456265, - "turnovers": 0.927136537, + "totalTurnovers": 0.927136537, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14594,10 +17436,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 268, "receivingYardsAfterCatch": 53, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 49, "receivingYardsPerReception": 6.536585365853658, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 5, "rushingAttempts": 43, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 178, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 32, "rushingYardsPerAttempt": 4.1395348837209305, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -14638,11 +17495,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 61.73146849, "receivingTargets": 106.7649333, "receivingTouchdowns": 7.442105826, - "receivingTouchdowns40Plus": 0.310556721, - "receivingTouchdowns50Plus": 0.202948817, + "receivingTouchdowns40Plus": 2.673769702, + "receivingTouchdowns50Plus": 0.082693908, "receivingYards": 987.8480375, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 98, + "receivingYardsPer20Yards": 49, + "receivingYardsPer25Yards": 39, + "receivingYardsPer50Yards": 19, + "receivingYardsPer5Yards": 197, "receivingYardsPerReception": 16.002341458311875, - "turnovers": 0.542912035, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, + "totalTurnovers": 0.542912035, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14651,9 +17516,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35, "receivingTargets": 62, "receivingTouchdowns": 5, + "receivingTouchdowns40Plus": 1, "receivingYards": 508, "receivingYardsAfterCatch": 36, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 97, "receivingYardsPerReception": 14.514285714285714, + "receptionsPer5Receptions": 2, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -14697,18 +17572,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.75873805, "receivingTargets": 32.56106084, "receivingTouchdowns": 0.869467204, - "receivingTouchdowns40Plus": 0.064432266, - "receivingTouchdowns50Plus": 0.042106486, + "receivingTouchdowns40Plus": 0.079814275, + "receivingTouchdowns50Plus": 0.002468483, "receivingYards": 206.108889, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 8.324692824964073, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.163666206, "rushingAttempts": 153.6767868, + "rushingAttemptsPer10Attempts": 15, + "rushingAttemptsPer5Attempts": 30, + "rushingGame100To199Yards": 1.254363637, + "rushingGame200PlusYards": 0.042806618, "rushingTouchdowns": 4.343826068, "rushingTouchdowns40Plus": 0.308524182, "rushingTouchdowns50Plus": 0.215966927, "rushingYards": 655.076143, + "rushingYardsPer100Yards": 6, + "rushingYardsPer10Yards": 65, + "rushingYardsPer20Yards": 32, + "rushingYardsPer25Yards": 26, + "rushingYardsPer50Yards": 13, + "rushingYardsPer5Yards": 131, "rushingYardsPerAttempt": 4.262687661816729, - "turnovers": 0.796767923, + "totalTurnovers": 0.796767923, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14716,11 +17609,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9, "receivingTargets": 12, "receivingYards": 75, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 8.333333333333334, "rushingAttempts": 85, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 2, "rushingYards": 419, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 17, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 79, "rushingYardsPerAttempt": 4.929411764705883, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -14787,6 +17695,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingTouchdowns": 1, "passingYards": 8, + "passingYardsPer5Yards": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -14831,11 +17742,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.01052933, "receivingTargets": 72.86090339, "receivingTouchdowns": 2.543444004, - "receivingTouchdowns40Plus": 0.146142961, - "receivingTouchdowns50Plus": 0.095504425, + "receivingTouchdowns40Plus": 0.572668195, + "receivingTouchdowns50Plus": 0.017711387, "receivingYards": 557.5807638, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 55, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 111, "receivingYardsPerReception": 13.272405101590278, - "turnovers": 0.246314373, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.246314373, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14852,14 +17771,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 101, "receivingTouchdowns": 5, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 717, "receivingYardsAfterCatch": 115, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 66, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 139, "receivingYardsPerReception": 10.863636363636363, + "receptionsPer5Receptions": 5, "rushingAttempts": 9, "rushingYards": 98, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 10.88888888888889, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalReturnTouchdowns": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -14900,11 +17832,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 77.24784418, "receivingTargets": 128.8580699, "receivingTouchdowns": 5.907063625, - "receivingTouchdowns40Plus": 0.068968667, - "receivingTouchdowns50Plus": 0.045071024, + "receivingTouchdowns40Plus": 1.69733175, + "receivingTouchdowns50Plus": 0.052494796, "receivingYards": 828.1236223, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 82, + "receivingYardsPer20Yards": 41, + "receivingYardsPer25Yards": 33, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 165, "receivingYardsPerReception": 10.720346063902284, - "turnovers": 0.568172966, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, + "totalTurnovers": 0.568172966, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14915,7 +17855,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 607, "receivingYardsAfterCatch": 29, + "receivingYardsPer10Yards": 55, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 11.24074074074074, + "receptionsPer5Receptions": 5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -14955,11 +17903,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.63409014, "receivingTargets": 56.73623881, "receivingTouchdowns": 3.448852707, - "receivingTouchdowns40Plus": 0.215246579, - "receivingTouchdowns50Plus": 0.140663639, + "receivingTouchdowns40Plus": 0.375603336, + "receivingTouchdowns50Plus": 0.011616598, "receivingYards": 476.9842554, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 95, "receivingYardsPerReception": 13.02022934313826, - "turnovers": 0.2432408, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.2432408, "usesPoints": false, }, "rawStats": PlayerStats { @@ -14968,11 +17924,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34, "receivingTargets": 48, "receivingTouchdowns": 5, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 565, "receivingYardsAfterCatch": 66, + "receivingYardsPer10Yards": 52, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 16.61764705882353, + "receptionsPer5Receptions": 3, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -15013,18 +17975,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 64.38102802, "receivingTargets": 91.52235859, "receivingTouchdowns": 4.575216868, - "receivingTouchdowns40Plus": 0.145365914, - "receivingTouchdowns50Plus": 0.094996625, + "receivingTouchdowns40Plus": 1.070569559, + "receivingTouchdowns50Plus": 0.033110399, "receivingYards": 699.2456682, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 69, + "receivingYardsPer20Yards": 34, + "receivingYardsPer25Yards": 27, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 139, "receivingYardsPerReception": 10.861051612639345, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, "rushing2PtConversions": 0.010749247, "rushingAttempts": 11.38128833, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.012195652, + "rushingGame200PlusYards": 0.000416191, "rushingTouchdowns": 0.273442154, "rushingTouchdowns40Plus": 0.021010211, "rushingTouchdowns50Plus": 0.014707148, "rushingYards": 67.83560183, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 5.960274431427219, - "turnovers": 0.38364366, + "totalTurnovers": 0.38364366, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15037,10 +18016,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 61, "receivingTouchdowns": 2, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 383, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 10.078947368421053, - "turnovers": 1, + "receptionsPer5Receptions": 3, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -15081,18 +18069,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 67.81962295, "receivingTargets": 105.2092534, "receivingTouchdowns": 5.594039191, - "receivingTouchdowns40Plus": 0.148096043, - "receivingTouchdowns50Plus": 0.096780764, + "receivingTouchdowns40Plus": 1.585543014, + "receivingTouchdowns50Plus": 0.049037413, "receivingYards": 807.7554905, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 80, + "receivingYardsPer20Yards": 40, + "receivingYardsPer25Yards": 32, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 161, "receivingYardsPerReception": 11.910350653165937, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 13, "rushing2PtConversions": 0.002881662, "rushingAttempts": 3.635031625, + "rushingGame100To199Yards": 0.00122861, + "rushingGame200PlusYards": 0.0000419277, "rushingTouchdowns": 0.091547293, "rushingTouchdowns40Plus": 0.006680329, "rushingTouchdowns50Plus": 0.00467623, "rushingYards": 22.53692208, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.199924623764449, - "turnovers": 0.241174671, + "totalTurnovers": 0.241174671, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15104,12 +18105,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 63, "receivingTargets": 88, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 1, "receivingYards": 739, "receivingYardsAfterCatch": 28, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 67, + "receivingYardsPer20Yards": 30, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 142, "receivingYardsPerReception": 11.73015873015873, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 8, "rushingAttempts": 1, "rushingYards": -2, "rushingYardsPerAttempt": -2, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -15149,18 +18161,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.51365643, "receivingTargets": 20.89652536, "receivingTouchdowns": 0.629844335, - "receivingTouchdowns40Plus": 0.03537385, - "receivingTouchdowns50Plus": 0.023116811, + "receivingTouchdowns40Plus": 0.046023047, + "receivingTouchdowns50Plus": 0.001423393, "receivingYards": 111.1456784, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 7.1643766833116596, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.154860497, "rushingAttempts": 194.6898114, + "rushingAttemptsPer10Attempts": 19, + "rushingAttemptsPer5Attempts": 38, + "rushingGame100To199Yards": 1.676557188, + "rushingGame200PlusYards": 0.057214465, "rushingTouchdowns": 6.442234292, "rushingTouchdowns40Plus": 0.397729394, "rushingTouchdowns50Plus": 0.278410575, "rushingYards": 777.3261103, + "rushingYardsPer100Yards": 7, + "rushingYardsPer10Yards": 77, + "rushingYardsPer20Yards": 38, + "rushingYardsPer25Yards": 31, + "rushingYardsPer50Yards": 15, + "rushingYardsPer5Yards": 155, "rushingYardsPerAttempt": 3.992638878790346, - "turnovers": 0.941510222, + "totalTurnovers": 0.941510222, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15172,12 +18202,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 17, "receivingYards": 33, "receivingYardsAfterCatch": 25, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 3.3, "rushingAttempts": 172, + "rushingAttemptsPer10Attempts": 12, + "rushingAttemptsPer5Attempts": 29, "rushingTouchdowns": 5, "rushingYards": 571, + "rushingYardsPer10Yards": 52, + "rushingYardsPer20Yards": 23, + "rushingYardsPer25Yards": 16, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 108, "rushingYardsPerAttempt": 3.3197674418604652, - "turnovers": 1, + "teamLoss": 11, + "teamTie": 1, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -15215,20 +18257,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 573.6272215, "passingCompletionPercentage": 0.648996374, "passingCompletions": 372.281987, + "passingCompletionsPer10Completions": 37, + "passingCompletionsPer5Completions": 74, "passingIncompletions": 201.3452345, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 40, "passingInterceptions": 10.62620586, "passingTouchdowns": 27.33194372, "passingTouchdowns40Plus": 3.980550387, "passingTouchdowns50Plus": 2.601289678, "passingYards": 4373.842006, + "passingYards300To399": 5.093646184, + "passingYards400Plus": 0.688018043, + "passingYardsPer100Yards": 43, + "passingYardsPer10Yards": 437, + "passingYardsPer20Yards": 218, + "passingYardsPer25Yards": 174, + "passingYardsPer50Yards": 87, + "passingYardsPer5Yards": 874, "rushing2PtConversions": 0.044017473, "rushingAttempts": 31.14511273, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.028993213, + "rushingGame200PlusYards": 0.000989427, "rushingTouchdowns": 0.993601539, "rushingTouchdowns40Plus": 0.058145704, "rushingTouchdowns50Plus": 0.040701993, "rushingYards": 104.0928287, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 3.342188214324052, - "turnovers": 14.80149255, + "totalTurnovers": 14.80149255, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15237,15 +18301,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 555, "passingCompletionPercentage": 0.6612612612612613, "passingCompletions": 367, + "passingCompletionsPer10Completions": 29, + "passingCompletionsPer5Completions": 67, "passingIncompletions": 188, + "passingIncompletionsPer10Incompletions": 11, + "passingIncompletionsPer5Incompletions": 29, "passingInterceptions": 11, "passingTouchdowns": 21, "passingTouchdowns40Plus": 1, "passingYards": 3777, + "passingYards300To399": 3, + "passingYardsPer100Yards": 31, + "passingYardsPer10Yards": 370, + "passingYardsPer20Yards": 182, + "passingYardsPer25Yards": 142, + "passingYardsPer50Yards": 68, + "passingYardsPer5Yards": 750, "rushingAttempts": 25, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 71, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 2.84, - "turnovers": 15, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 15, "usesPoints": false, }, }, @@ -15288,18 +18368,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.01416694, "receivingTargets": 43.14724143, "receivingTouchdowns": 1.65064748, - "receivingTouchdowns40Plus": 0.099916816, - "receivingTouchdowns50Plus": 0.065295639, + "receivingTouchdowns40Plus": 0.145223014, + "receivingTouchdowns50Plus": 0.004491433, "receivingYards": 306.669437, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 11.788554971116827, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.009124484, "rushingAttempts": 12.36266046, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.016852599, + "rushingGame200PlusYards": 0.000575115, "rushingTouchdowns": 0.330316194, "rushingTouchdowns40Plus": 0.022845198, "rushingTouchdowns50Plus": 0.015991638, "rushingYards": 77.07010637, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 6.234103623517296, - "turnovers": 0.212065792, + "totalTurnovers": 0.212065792, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15311,15 +18408,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39, "receivingTargets": 65, "receivingTouchdowns": 5, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 494, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 95, "receivingYardsPerReception": 12.666666666666666, + "receptionsPer5Receptions": 3, "rushingAttempts": 8, "rushingTouchdowns": 2, "rushingYards": 84, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 10.5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -15360,11 +18467,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.932104204, "receivingTargets": 5.2154985, "receivingTouchdowns": 0.15161486, - "receivingTouchdowns40Plus": 0.107053459, - "receivingTouchdowns50Plus": 0.069959435, + "receivingTouchdowns40Plus": 0.019568637, + "receivingTouchdowns50Plus": 0.000605216, "receivingYards": 37.07196202, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.643466753134536, - "turnovers": 0.01719139, + "totalTurnovers": 0.01719139, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15373,11 +18484,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27, "receivingTargets": 44, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 1, + "receivingTouchdowns40Plus": 3, "receivingYards": 541, "receivingYardsAfterCatch": 43, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 105, "receivingYardsPerReception": 20.037037037037038, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -15413,10 +18532,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.520012621, "defensiveForcedFumbles": 12.26247603, "defensiveFumbles": 7.970609419, + "defensiveHalfSacks": 68, "defensiveInterceptions": 11.65737945, "defensivePointsAllowed": 356.4924841, "defensiveSacks": 34.36614315, "defensiveSafeties": 0.379, + "defensiveStuffs": 66.32781604, "defensiveYardsAllowed": 5878.976098, "fumbleReturnTouchdown": 1.311076711, "interceptionReturnTouchdown": 1.000881859, @@ -15424,6 +18545,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 814.1895, "puntReturnTouchdown": 0.671926712, "puntReturnYards": 360.6920077, + "totalReturnTouchdowns": 3.241855437, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15443,10 +18565,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 23, "defensiveFumbles": 12, + "defensiveHalfSacks": 104, "defensiveInterceptions": 15, "defensivePointsAllowed": 407, "defensiveSacks": 52, "defensiveSoloTackles": 777, + "defensiveStuffs": 40, + "defensiveTacklesPer3Tackles": 357, + "defensiveTacklesPer5Tackles": 210, "defensiveTotalTackles": 1083, "defensiveYardsAllowed": 6488, "fumbleReturnTouchdown": 3, @@ -15454,6 +18580,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 975, "puntReturnTouchdown": 1, "puntReturnYards": 261, + "totalReturnTouchdowns": 5, "usesPoints": false, }, }, @@ -15490,6 +18617,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -15531,11 +18660,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15, "receivingTargets": 19, "receivingYards": 135, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 9, + "receptionsPer5Receptions": 1, "rushingAttempts": 50, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 7, "rushingTouchdowns": 2, "rushingYards": 206, + "rushingYardsPer10Yards": 18, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 38, "rushingYardsPerAttempt": 4.12, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -15576,11 +18719,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 51.38298655, "receivingTargets": 87.91420796, "receivingTouchdowns": 3.60130051, - "receivingTouchdowns40Plus": 0.132229866, - "receivingTouchdowns50Plus": 0.086412217, + "receivingTouchdowns40Plus": 0.899502087, + "receivingTouchdowns50Plus": 0.027819652, "receivingYards": 656.4460725, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 65, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 26, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 131, "receivingYardsPerReception": 12.775553088204058, - "turnovers": 0.301266572, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.301266572, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15592,16 +18743,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 1, "passingCompletions": 1, "passingYards": 8, + "passingYardsPer5Yards": 1, "receivingReceptions": 33, "receivingTargets": 54, "receivingTouchdowns": 7, "receivingTouchdowns40Plus": 1, "receivingYards": 423, "receivingYardsAfterCatch": 6, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 80, "receivingYardsPerReception": 12.818181818181818, + "receptionsPer5Receptions": 2, "rushingAttempts": 6, "rushingYards": 26, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.333333333333333, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -15641,18 +18803,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.10401508, "receivingTargets": 39.21767346, "receivingTouchdowns": 0.673232023, - "receivingTouchdowns40Plus": 0.052388377, - "receivingTouchdowns50Plus": 0.034235804, + "receivingTouchdowns40Plus": 0.090587277, + "receivingTouchdowns50Plus": 0.002801668, "receivingYards": 235.7809257, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 7.832208596541801, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.169134864, "rushingAttempts": 239.2015795, + "rushingAttemptsPer10Attempts": 23, + "rushingAttemptsPer5Attempts": 47, + "rushingGame100To199Yards": 2.869051514, + "rushingGame200PlusYards": 0.097909721, "rushingTouchdowns": 5.684853361, "rushingTouchdowns40Plus": 0.499466904, "rushingTouchdowns50Plus": 0.349626833, "rushingYards": 1022.244237, + "rushingYardsPer100Yards": 10, + "rushingYardsPer10Yards": 102, + "rushingYardsPer20Yards": 51, + "rushingYardsPer25Yards": 40, + "rushingYardsPer50Yards": 20, + "rushingYardsPer5Yards": 204, "rushingYardsPerAttempt": 4.273568089043492, - "turnovers": 1.822880728, + "totalTurnovers": 1.822880728, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15665,12 +18845,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 105, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 7, "rushingAttempts": 114, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 18, "rushingTouchdowns": 7, "rushingYards": 411, + "rushingYardsPer10Yards": 35, + "rushingYardsPer20Yards": 14, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 77, "rushingYardsPerAttempt": 3.6052631578947367, - "turnovers": 3, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -15714,18 +18908,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.84111645, "receivingTargets": 23.4643058, "receivingTouchdowns": 0.529893088, - "receivingTouchdowns40Plus": 0.056384422, - "receivingTouchdowns50Plus": 0.03684722, + "receivingTouchdowns40Plus": 0.055699397, + "receivingTouchdowns50Plus": 0.00172, "receivingYards": 143.6790266, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 8.053253113540435, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.021011975, "rushingAttempts": 29.080253, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.045996611, + "rushingGame200PlusYards": 0.001569688, "rushingTouchdowns": 0.667527868, "rushingTouchdowns40Plus": 0.054228042, "rushingTouchdowns50Plus": 0.037959629, "rushingYards": 130.70719, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 26, "rushingYardsPerAttempt": 4.494706081133476, - "turnovers": 0.292817736, + "totalTurnovers": 0.292817736, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15738,12 +18950,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 81, "receivingYards": 607, "receivingYardsAfterCatch": 70, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 8.926470588235293, + "receptionsPer5Receptions": 7, "rushingAttempts": 55, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 259, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 45, "rushingYardsPerAttempt": 4.709090909090909, - "turnovers": 2, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -15783,18 +19010,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.40511854, "receivingTargets": 28.23744305, "receivingTouchdowns": 0.540764376, - "receivingTouchdowns40Plus": 0.055004555, - "receivingTouchdowns50Plus": 0.035945477, + "receivingTouchdowns40Plus": 0.064620455, + "receivingTouchdowns50Plus": 0.001998571, "receivingYards": 171.7631728, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 7.66624700036066, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.104298405, "rushingAttempts": 105.8061264, + "rushingAttemptsPer10Attempts": 10, + "rushingAttemptsPer5Attempts": 21, + "rushingGame100To199Yards": 0.497474407, + "rushingGame200PlusYards": 0.016976893, "rushingTouchdowns": 3.613914798, "rushingTouchdowns40Plus": 0.206055654, "rushingTouchdowns50Plus": 0.144238958, "rushingYards": 424.2583247, + "rushingYardsPer100Yards": 4, + "rushingYardsPer10Yards": 42, + "rushingYardsPer20Yards": 21, + "rushingYardsPer25Yards": 16, + "rushingYardsPer50Yards": 8, + "rushingYardsPer5Yards": 84, "rushingYardsPerAttempt": 4.0097708812823525, - "turnovers": 0.497502989, + "totalTurnovers": 0.497502989, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15803,11 +19048,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 26, "receivingYards": 141, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 6.409090909090909, + "receptionsPer5Receptions": 2, "rushingAttempts": 140, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 21, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 6, "rushingYards": 578, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 51, + "rushingYardsPer20Yards": 22, + "rushingYardsPer25Yards": 16, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 109, "rushingYardsPerAttempt": 4.128571428571429, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -15844,6 +19106,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -15884,11 +19148,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.441075562, "receivingTargets": 16.15100446, "receivingTouchdowns": 0.939279461, - "receivingTouchdowns40Plus": 0.126034101, - "receivingTouchdowns50Plus": 0.082363285, + "receivingTouchdowns40Plus": 0.048462825, + "receivingTouchdowns50Plus": 0.00149885, "receivingYards": 119.3045194, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 12.636750825318732, - "turnovers": 0.055354518, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.055354518, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15898,12 +19169,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 38, "receivingTargets": 72, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, + "receivingTouchdowns40Plus": 2, "receivingYards": 581, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 15.289473684210526, + "receptionsPer5Receptions": 3, "rushingAttempts": 2, "rushingYards": 29, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 14.5, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -15944,18 +19229,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 58.83917494, "receivingTargets": 115.7069584, "receivingTouchdowns": 5.601017745, - "receivingTouchdowns40Plus": 0.191552625, - "receivingTouchdowns50Plus": 0.12517964, + "receivingTouchdowns40Plus": 2.393999335, + "receivingTouchdowns50Plus": 0.074041217, "receivingYards": 945.1439143, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 94, + "receivingYardsPer20Yards": 47, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 189, "receivingYardsPerReception": 16.0631741567381, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.002558372, "rushingAttempts": 3.944832474, + "rushingGame100To199Yards": 0.001386459, + "rushingGame200PlusYards": 0.0000473145, "rushingTouchdowns": 0.115974262, "rushingTouchdowns40Plus": 0.007250998, "rushingTouchdowns50Plus": 0.005075699, "rushingYards": 23.82306519, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.039056245611306, - "turnovers": 0.363371492, + "totalTurnovers": 0.363371492, "usesPoints": false, }, "rawStats": PlayerStats { @@ -15965,13 +19263,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 23, "receivingTargets": 43, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 395, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 75, "receivingYardsPerReception": 17.17391304347826, "rushingAttempts": 4, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.25, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -16011,18 +19317,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21.52935581, "receivingTargets": 28.39330159, "receivingTouchdowns": 0.70876816, - "receivingTouchdowns40Plus": 0.049005646, - "receivingTouchdowns50Plus": 0.03202519, + "receivingTouchdowns40Plus": 0.063143538, + "receivingTouchdowns50Plus": 0.001952893, "receivingYards": 167.5316774, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 7.781546223607144, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.28569259, "rushingAttempts": 224.3843732, + "rushingAttemptsPer10Attempts": 22, + "rushingAttemptsPer5Attempts": 44, + "rushingGame100To199Yards": 2.526357379, + "rushingGame200PlusYards": 0.086214885, "rushingTouchdowns": 5.283808844, "rushingTouchdowns40Plus": 0.464993409, "rushingTouchdowns50Plus": 0.325495387, "rushingYards": 959.294396, + "rushingYardsPer100Yards": 9, + "rushingYardsPer10Yards": 95, + "rushingYardsPer20Yards": 47, + "rushingYardsPer25Yards": 38, + "rushingYardsPer50Yards": 19, + "rushingYardsPer5Yards": 191, "rushingYardsPerAttempt": 4.275228182423178, - "turnovers": 1.3033865, + "totalTurnovers": 1.3033865, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16034,13 +19358,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 20, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 4, "rushing2PtConversions": 1, "rushingAttempts": 45, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 8, "rushingTouchdowns": 3, "rushingYards": 184, + "rushingYardsPer10Yards": 17, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 35, "rushingYardsPerAttempt": 4.088888888888889, - "turnovers": 1, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -16081,18 +19416,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 41.67469247, "receivingTargets": 78.43534692, "receivingTouchdowns": 2.789227408, - "receivingTouchdowns40Plus": 0.13507578, - "receivingTouchdowns50Plus": 0.088272022, + "receivingTouchdowns40Plus": 0.667126789, + "receivingTouchdowns50Plus": 0.020632787, "receivingYards": 589.0551193, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 14.134600266673546, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.001446411, "rushingAttempts": 2.140691483, + "rushingGame100To199Yards": 0.000389147, + "rushingGame200PlusYards": 0.0000132801, "rushingTouchdowns": 0.048621035, "rushingTouchdowns40Plus": 0.003930695, "rushingTouchdowns50Plus": 0.002751486, "rushingYards": 13.31458929, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.2197609490839465, - "turnovers": 0.21606573, + "totalTurnovers": 0.21606573, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16101,12 +19448,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42, "receivingTargets": 97, "receivingTouchdowns": 5, + "receivingTouchdowns40Plus": 2, "receivingYards": 715, "receivingYardsAfterCatch": 61, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 63, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 136, "receivingYardsPerReception": 17.023809523809526, + "receptionsPer5Receptions": 2, "rushingAttempts": 3, "rushingYards": 4, "rushingYardsPerAttempt": 1.3333333333333333, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -16147,11 +19504,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.70614689, "receivingTargets": 35.73318863, "receivingTouchdowns": 2.024161188, - "receivingTouchdowns40Plus": 0.161858717, - "receivingTouchdowns50Plus": 0.105774671, + "receivingTouchdowns40Plus": 0.120743406, + "receivingTouchdowns50Plus": 0.00373, "receivingYards": 280.4163601, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 14.229892919467629, - "turnovers": 0.115540254, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.115540254, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16160,11 +19525,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 28, "receivingTargets": 44, "receivingTouchdowns": 5, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, + "receivingTouchdowns40Plus": 2, "receivingYards": 427, "receivingYardsAfterCatch": 45, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 39, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 82, "receivingYardsPerReception": 15.25, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -16202,20 +19576,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 590.4030006, "passingCompletionPercentage": 0.634177718, "passingCompletions": 374.4204278, + "passingCompletionsPer10Completions": 37, + "passingCompletionsPer5Completions": 74, "passingIncompletions": 215.9825728, + "passingIncompletionsPer10Incompletions": 21, + "passingIncompletionsPer5Incompletions": 43, "passingInterceptions": 12.66243863, "passingTouchdowns": 23.78998733, "passingTouchdowns40Plus": 3.981706626, "passingTouchdowns50Plus": 2.60204528, "passingYards": 4373.880854, + "passingYards300To399": 5.103553489, + "passingYards400Plus": 0.68935626, + "passingYardsPer100Yards": 43, + "passingYardsPer10Yards": 437, + "passingYardsPer20Yards": 218, + "passingYardsPer25Yards": 174, + "passingYardsPer50Yards": 87, + "passingYardsPer5Yards": 874, "rushing2PtConversions": 0.040642734, "rushingAttempts": 42.8726445, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.030988552, + "rushingGame200PlusYards": 0.00105752, "rushingTouchdowns": 1.838527664, "rushingTouchdowns40Plus": 0.080574128, "rushingTouchdowns50Plus": 0.056401889, "rushingYards": 107.3868771, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 2.5047878047270915, - "turnovers": 15.95148663, + "totalTurnovers": 15.95148663, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16224,14 +19620,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 89, "passingCompletionPercentage": 0.5955056179775281, "passingCompletions": 53, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 10, "passingIncompletions": 36, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 6, "passingInterceptions": 3, "passingTouchdowns": 5, "passingYards": 718, + "passingYardsPer100Yards": 6, + "passingYardsPer10Yards": 71, + "passingYardsPer20Yards": 35, + "passingYardsPer25Yards": 28, + "passingYardsPer50Yards": 14, + "passingYardsPer5Yards": 143, "rushingAttempts": 8, "rushingYards": 33, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4.125, - "turnovers": 3, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -16271,11 +19682,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.79899152, "receivingTargets": 37.85165951, "receivingTouchdowns": 1.714391076, - "receivingTouchdowns40Plus": 0.09270963, - "receivingTouchdowns50Plus": 0.060585743, + "receivingTouchdowns40Plus": 0.104495822, + "receivingTouchdowns50Plus": 0.00323183, "receivingYards": 260.3567986, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 10.498684932007267, - "turnovers": 0.164658833, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.164658833, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16289,7 +19708,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 502, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 95, "receivingYardsPerReception": 12.871794871794872, + "receptionsPer5Receptions": 2, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -16332,29 +19759,51 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 55.60362001, "receivingTargets": 100.8020415, "receivingTouchdowns": 5.749060976, - "receivingTouchdowns40Plus": 0.16391073, - "receivingTouchdowns50Plus": 0.107115662, + "receivingTouchdowns40Plus": 1.507451149, + "receivingTouchdowns50Plus": 0.0466222, "receivingYards": 792.5585687, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 79, + "receivingYardsPer20Yards": 39, + "receivingYardsPer25Yards": 31, + "receivingYardsPer50Yards": 15, + "receivingYardsPer5Yards": 158, "receivingYardsPerReception": 14.253722483490513, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.0038, "rushingAttempts": 4.540194459, + "rushingGame100To199Yards": 0.00195, + "rushingGame200PlusYards": 0.0000665, "rushingTouchdowns": 0.098065547, "rushingTouchdowns40Plus": 0.00835, "rushingTouchdowns50Plus": 0.00584, "rushingYards": 27.96815452, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.160122605444552, - "turnovers": 0.278303313, + "totalTurnovers": 0.278303313, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 32, "receivingTargets": 45, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, + "receivingTouchdowns40Plus": 3, "receivingYards": 503, "receivingYardsAfterCatch": 27, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 97, "receivingYardsPerReception": 15.71875, + "receptionsPer5Receptions": 4, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -16390,10 +19839,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.622630711, "defensiveForcedFumbles": 12.33624392, "defensiveFumbles": 8.018558551, + "defensiveHalfSacks": 77, "defensiveInterceptions": 13.3, "defensivePointsAllowed": 371.0484217, "defensiveSacks": 38.93137325, "defensiveSafeties": 0.375, + "defensiveStuffs": 56.08702263, "defensiveYardsAllowed": 5767.398872, "fumbleReturnTouchdown": 1.4, "interceptionReturnTouchdown": 1.11, @@ -16401,6 +19852,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 723.357, "puntReturnTouchdown": 0.3647777, "puntReturnYards": 254.32135, + "totalReturnTouchdowns": 3.17, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16420,15 +19872,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 313, "defensiveForcedFumbles": 19, "defensiveFumbles": 11, + "defensiveHalfSacks": 92, "defensiveInterceptions": 15, "defensivePointsAllowed": 341, "defensiveSacks": 46, "defensiveSoloTackles": 736, + "defensiveStuffs": 35, + "defensiveTacklesPer3Tackles": 343, + "defensiveTacklesPer5Tackles": 201, "defensiveTotalTackles": 1049, "defensiveYardsAllowed": 5654, "interceptionReturnTouchdown": 1, "kickoffReturnYards": 570, "puntReturnYards": 110, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -16472,18 +19929,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.71357764, "receivingTargets": 41.45840298, "receivingTouchdowns": 0.983499056, - "receivingTouchdowns40Plus": 0.047697694, - "receivingTouchdowns50Plus": 0.031170443, + "receivingTouchdowns40Plus": 0.094463689, + "receivingTouchdowns50Plus": 0.002921557, "receivingYards": 243.3305277, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 8.189203287739806, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.034407376, "rushingAttempts": 57.90863933, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.146603426, + "rushingGame200PlusYards": 0.005003012, "rushingTouchdowns": 1.073617869, "rushingTouchdowns40Plus": 0.109806779, "rushingTouchdowns50Plus": 0.076864745, "rushingYards": 230.2624502, + "rushingYardsPer100Yards": 2, + "rushingYardsPer10Yards": 23, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 9, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 46, "rushingYardsPerAttempt": 3.9763056577416562, - "turnovers": 0.407801905, + "totalTurnovers": 0.407801905, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16495,11 +19970,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 425, "receivingYardsAfterCatch": 38, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 83, "receivingYardsPerReception": 6.746031746031746, + "receptionsPer5Receptions": 5, "rushingAttempts": 85, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 11, "rushingTouchdowns": 2, "rushingYards": 314, + "rushingYardsPer10Yards": 23, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 55, "rushingYardsPerAttempt": 3.6941176470588237, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -16539,11 +20029,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 69.1377748, "receivingTargets": 93.93630426, "receivingTouchdowns": 5.832248565, - "receivingTouchdowns40Plus": 0.081852164, - "receivingTouchdowns50Plus": 0.053490389, + "receivingTouchdowns40Plus": 0.796527707, + "receivingTouchdowns50Plus": 0.0246, "receivingYards": 628.3917711, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 62, + "receivingYardsPer20Yards": 31, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 125, "receivingYardsPerReception": 9.088978824062472, - "turnovers": 0.615630397, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 13, + "totalTurnovers": 0.615630397, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16555,8 +20053,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 33, "receivingTouchdowns": 2, "receivingYards": 245, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 9.423076923076923, - "turnovers": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -16597,18 +20103,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34.14887773, "receivingTargets": 54.94637998, "receivingTouchdowns": 1.912953224, - "receivingTouchdowns40Plus": 0.185397684, - "receivingTouchdowns50Plus": 0.121157387, + "receivingTouchdowns40Plus": 0.314553604, + "receivingTouchdowns50Plus": 0.009728462, "receivingYards": 445.1143473, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 89, "receivingYardsPerReception": 13.034523442302302, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.00303359, "rushingAttempts": 3.624463599, + "rushingGame100To199Yards": 0.001155521, + "rushingGame200PlusYards": 0.0000394335, "rushingTouchdowns": 0.112740194, "rushingTouchdowns40Plus": 0.006660902, "rushingTouchdowns50Plus": 0.004662631, "rushingYards": 21.86073869, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.031441092698915, - "turnovers": 0.229853988, + "totalTurnovers": 0.229853988, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16619,13 +20138,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 67, "receivingTargets": 93, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 2, "receivingYards": 688, "receivingYardsAfterCatch": 19, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 63, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 132, "receivingYardsPerReception": 10.26865671641791, + "receptionsPer5Receptions": 6, "rushingAttempts": 9, "rushingYards": 61, + "rushingYardsPer10Yards": 3, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6.777777777777778, - "turnovers": 1, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -16666,11 +20197,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.43175192, "receivingTargets": 60.65205676, "receivingTouchdowns": 3.328569794, - "receivingTouchdowns40Plus": 0.289367558, - "receivingTouchdowns50Plus": 0.189101699, + "receivingTouchdowns40Plus": 0.554446767, + "receivingTouchdowns50Plus": 0.017147838, "receivingYards": 551.038133, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 55, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 110, "receivingYardsPerReception": 15.552099547438916, - "turnovers": 0.197634587, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.197634587, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16681,13 +20220,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 65, "receivingTouchdowns": 5, "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 1, "receivingYards": 653, "receivingYardsAfterCatch": 21, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 123, "receivingYardsPerReception": 15.926829268292684, + "receptionsPer5Receptions": 1, "rushingAttempts": 2, "rushingYards": 15, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 7.5, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -16753,6 +20302,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -16794,18 +20345,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.70346797, "receivingTargets": 29.70073616, "receivingTouchdowns": 0.626747415, - "receivingTouchdowns40Plus": 0.058928421, - "receivingTouchdowns50Plus": 0.038509723, + "receivingTouchdowns40Plus": 0.070620318, + "receivingTouchdowns50Plus": 0.002184134, "receivingYards": 184.9364897, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 8.145737468142407, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.174483524, "rushingAttempts": 153.9246172, + "rushingAttemptsPer10Attempts": 15, + "rushingAttemptsPer5Attempts": 30, + "rushingGame100To199Yards": 1.211128883, + "rushingGame200PlusYards": 0.041331182, "rushingTouchdowns": 2.529742957, "rushingTouchdowns40Plus": 0.30891165, "rushingTouchdowns50Plus": 0.216238155, "rushingYards": 646.5399869, + "rushingYardsPer100Yards": 6, + "rushingYardsPer10Yards": 64, + "rushingYardsPer20Yards": 32, + "rushingYardsPer25Yards": 25, + "rushingYardsPer50Yards": 12, + "rushingYardsPer5Yards": 129, "rushingYardsPerAttempt": 4.200367677769999, - "turnovers": 0.786996815, + "totalTurnovers": 0.786996815, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16814,11 +20383,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7, "receivingTargets": 9, "receivingYards": 33, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 4.714285714285714, "rushingAttempts": 23, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 44, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 1.9130434782608696, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -16861,11 +20440,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 47.67153145, "receivingTargets": 81.48757161, "receivingTouchdowns": 3.006350072, - "receivingTouchdowns40Plus": 0.116437131, - "receivingTouchdowns50Plus": 0.076091665, + "receivingTouchdowns40Plus": 0.674583372, + "receivingTouchdowns50Plus": 0.020863403, "receivingYards": 590.9402286, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 59, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 118, "receivingYardsPerReception": 12.396082328922116, - "turnovers": 0.279505724, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.279505724, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16875,14 +20462,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43, "receivingTargets": 68, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 2, "receivingYards": 590, "receivingYardsAfterCatch": 61, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 113, "receivingYardsPerReception": 13.720930232558139, + "receptionsPer5Receptions": 2, "rushingAttempts": 3, "rushingYards": 35, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 11.666666666666666, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -16922,18 +20518,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.526757594, "receivingTargets": 12.53319915, "receivingTouchdowns": 0.359198528, - "receivingTouchdowns40Plus": 0.033087486, - "receivingTouchdowns50Plus": 0.021622672, + "receivingTouchdowns40Plus": 0.030548695, + "receivingTouchdowns50Plus": 0.000945, "receivingYards": 75.44088643, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 7.918841818491641, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.08856865, "rushingAttempts": 96.52815467, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 19, + "rushingGame100To199Yards": 0.672598577, + "rushingGame200PlusYards": 0.022953209, "rushingTouchdowns": 2.286691001, "rushingTouchdowns40Plus": 0.192873755, "rushingTouchdowns50Plus": 0.135011629, "rushingYards": 391.1974733, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 39, + "rushingYardsPer20Yards": 19, + "rushingYardsPer25Yards": 15, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 78, "rushingYardsPerAttempt": 4.052677424916943, - "turnovers": 0.611789273, + "totalTurnovers": 0.611789273, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16942,10 +20554,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingTouchdowns": 1, "receivingYards": 28, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 14, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -0.14285714285714285, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -16981,10 +20600,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.482543986, "defensiveForcedFumbles": 15.0360584, "defensiveFumbles": 9.773437957, + "defensiveHalfSacks": 74, "defensiveInterceptions": 11.79184922, "defensivePointsAllowed": 363.4980155, "defensiveSacks": 37.44450154, "defensiveSafeties": 0.319862633, + "defensiveStuffs": 67.84170119, "defensiveYardsAllowed": 5688.948202, "fumbleReturnTouchdown": 1.217965757, "interceptionReturnTouchdown": 1.380132112, @@ -16992,6 +20613,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.3746884, "puntReturnYards": 255.325208, + "totalReturnTouchdowns": 3.296758446, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17009,15 +20631,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 303, "defensiveForcedFumbles": 14, "defensiveFumbles": 11, + "defensiveHalfSacks": 78, "defensiveInterceptions": 9, "defensivePointsAllowed": 318, "defensiveSacks": 39, "defensiveSoloTackles": 717, + "defensiveStuffs": 53, + "defensiveTacklesPer3Tackles": 336, + "defensiveTacklesPer5Tackles": 196, "defensiveTotalTackles": 1020, "defensiveYardsAllowed": 5268, "interceptionReturnTouchdown": 1, "kickoffReturnYards": 283, "puntReturnYards": 119, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -17062,11 +20689,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.82870115, "receivingTargets": 46.93872766, "receivingTouchdowns": 2.201794984, - "receivingTouchdowns40Plus": 0.101376362, - "receivingTouchdowns50Plus": 0.066249453, + "receivingTouchdowns40Plus": 0.158541885, + "receivingTouchdowns50Plus": 0.004903357, "receivingYards": 329.8997502, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 65, "receivingYardsPerReception": 12.296523352193665, - "turnovers": 0.157300915, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.157300915, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17080,14 +20715,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43, "receivingTargets": 78, "receivingTouchdowns": 5, - "receivingTouchdowns40Plus": 1, "receivingYards": 586, "receivingYardsAfterCatch": 56, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 111, "receivingYardsPerReception": 13.627906976744185, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.5, - "turnovers": 1, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -17127,18 +20771,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.67582816, "receivingTargets": 41.06253514, "receivingTouchdowns": 0.924805895, - "receivingTouchdowns40Plus": 0.049255408, - "receivingTouchdowns50Plus": 0.032188409, + "receivingTouchdowns40Plus": 0.094190649, + "receivingTouchdowns50Plus": 0.002913113, "receivingYards": 242.9160735, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 7.9188106098714055, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.200284828, "rushingAttempts": 181.7515813, + "rushingAttemptsPer10Attempts": 18, + "rushingAttemptsPer5Attempts": 36, + "rushingGame100To199Yards": 1.705231354, + "rushingGame200PlusYards": 0.058193004, "rushingTouchdowns": 6.362833833, "rushingTouchdowns40Plus": 0.368378209, "rushingTouchdowns50Plus": 0.257864747, "rushingYards": 788.9180487, + "rushingYardsPer100Yards": 7, + "rushingYardsPer10Yards": 78, + "rushingYardsPer20Yards": 39, + "rushingYardsPer25Yards": 31, + "rushingYardsPer50Yards": 15, + "rushingYardsPer5Yards": 157, "rushingYardsPerAttempt": 4.340639256380434, - "turnovers": 0.800880854, + "totalTurnovers": 0.800880854, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17148,11 +20810,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 20, "receivingYards": 84, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 5.6, "rushingAttempts": 90, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 15, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 3, "rushingYards": 376, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 17, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 74, "rushingYardsPerAttempt": 4.177777777777778, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -17192,18 +20869,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.77947473, "receivingTargets": 47.1252166, "receivingTouchdowns": 1.630671556, - "receivingTouchdowns40Plus": 0.076983029, - "receivingTouchdowns50Plus": 0.050308409, + "receivingTouchdowns40Plus": 0.140598185, + "receivingTouchdowns50Plus": 0.004348397, "receivingYards": 310.5829948, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 31, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 8.680479440900948, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.134659354, "rushingAttempts": 148.762801, + "rushingAttemptsPer10Attempts": 14, + "rushingAttemptsPer5Attempts": 29, + "rushingGame100To199Yards": 1.101773751, + "rushingGame200PlusYards": 0.037599311, "rushingTouchdowns": 5.525752061, "rushingTouchdowns40Plus": 0.296831133, "rushingTouchdowns50Plus": 0.207781793, "rushingYards": 626.5546487, + "rushingYardsPer100Yards": 6, + "rushingYardsPer10Yards": 62, + "rushingYardsPer20Yards": 31, + "rushingYardsPer25Yards": 25, + "rushingYardsPer50Yards": 12, + "rushingYardsPer5Yards": 125, "rushingYardsPerAttempt": 4.211769639239315, - "turnovers": 0.947837151, + "totalTurnovers": 0.947837151, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17217,11 +20912,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 131, "receivingYardsAfterCatch": 31, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 9.357142857142858, "rushingAttempts": 57, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 8, "rushingYards": 186, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 34, "rushingYardsPerAttempt": 3.263157894736842, - "turnovers": 1, + "teamLoss": 5, + "teamWin": 11, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -17262,11 +20970,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 40.21901801, "receivingTargets": 70.40809415, "receivingTouchdowns": 3.268250027, - "receivingTouchdowns40Plus": 0.124446321, - "receivingTouchdowns50Plus": 0.081325671, + "receivingTouchdowns40Plus": 0.469932741, + "receivingTouchdowns50Plus": 0.014534002, "receivingYards": 518.5503743, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 103, "receivingYardsPerReception": 12.893163482287619, - "turnovers": 0.235810459, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.235810459, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17274,10 +20990,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33, "receivingTargets": 68, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, "receivingYards": 507, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 96, "receivingYardsPerReception": 15.363636363636363, + "receptionsPer5Receptions": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -17318,11 +21041,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33.24066739, "receivingTargets": 62.585982, "receivingTouchdowns": 2.048720388, - "receivingTouchdowns40Plus": 0.106042172, - "receivingTouchdowns50Plus": 0.069298559, + "receivingTouchdowns40Plus": 0.312975462, + "receivingTouchdowns50Plus": 0.009679653, "receivingYards": 443.8852912, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 88, "receivingYardsPerReception": 13.353681681299118, - "turnovers": 0.194895287, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.194895287, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17337,8 +21068,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 7, "receivingYards": 652, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 125, "receivingYardsPerReception": 11.642857142857142, + "receptionsPer5Receptions": 4, "rushingAttempts": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -17378,11 +21117,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.19363989, "receivingTargets": 42.54593323, "receivingTouchdowns": 2.973067116, - "receivingTouchdowns40Plus": 0.117364871, - "receivingTouchdowns50Plus": 0.076697943, + "receivingTouchdowns40Plus": 0.139035524, + "receivingTouchdowns50Plus": 0.004300068, "receivingYards": 309.2207333, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 11.805183800287788, - "turnovers": 0.173918935, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.173918935, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17390,13 +21137,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33, "receivingTargets": 50, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 1, "receivingYards": 320, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 58, "receivingYardsPerReception": 9.696969696969697, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 8, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -17441,21 +21196,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.50980621, "receivingTargets": 40.3208166, "receivingTouchdowns": 1.642168026, - "receivingTouchdowns40Plus": 0.125085273, - "receivingTouchdowns50Plus": 0.081743226, + "receivingTouchdowns40Plus": 0.129341929, + "receivingTouchdowns50Plus": 0.004, "receivingYards": 297.262818, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 29, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 59, "receivingYardsPerReception": 12.128321842002846, - "turnovers": 0.143704868, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.143704868, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 28, "receivingTargets": 41, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 287, "receivingYardsAfterCatch": 11, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 54, "receivingYardsPerReception": 10.25, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 4, "rushingAttempts": 3, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -17497,18 +21271,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.998690029, "receivingTargets": 5.330793061, "receivingTouchdowns": 0.155640058, - "receivingTouchdowns40Plus": 0.05393612, - "receivingTouchdowns50Plus": 0.035247254, + "receivingTouchdowns40Plus": 0.017366167, + "receivingTouchdowns50Plus": 0.000537098, "receivingYards": 32.28566106, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.074059460936526, "rushing2PtConversions": 0.014624798, "rushingAttempts": 18.26414648, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.013235198, + "rushingGame200PlusYards": 0.000451667, "rushingTouchdowns": 0.625441913, "rushingTouchdowns40Plus": 0.0338495, "rushingTouchdowns50Plus": 0.02369465, "rushingYards": 70.67829045, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 3.8697833773615247, - "turnovers": 0.100267345, + "totalTurnovers": 0.100267345, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17519,11 +21306,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 32, "receivingYards": 152, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 5.62962962962963, "rushingAttempts": 90, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 12, "rushingTouchdowns": 4, "rushingYards": 315, + "rushingYardsPer10Yards": 29, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 62, "rushingYardsPerAttempt": 3.5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -17585,6 +21385,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedExtraPoints": 2, "missedFieldGoals": 1, "missedFieldGoalsFrom40To49": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -17625,11 +21427,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 60.28162652, "receivingTargets": 106.4675288, "receivingTouchdowns": 4.816611792, - "receivingTouchdowns40Plus": 0.224206667, - "receivingTouchdowns50Plus": 0.146519057, + "receivingTouchdowns40Plus": 2.14128584, + "receivingTouchdowns50Plus": 0.066225335, "receivingYards": 904.7953239, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 90, + "receivingYardsPer20Yards": 45, + "receivingYardsPer25Yards": 36, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 180, "receivingYardsPerReception": 15.009470980346068, - "turnovers": 0.675154217, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, + "totalTurnovers": 0.675154217, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17646,11 +21456,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 37, "receivingTargets": 64, "receivingTouchdowns": 6, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, + "receivingTouchdowns40Plus": 2, "receivingYards": 553, "receivingYardsAfterCatch": -2, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 107, "receivingYardsPerReception": 14.945945945945946, + "receptionsPer5Receptions": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -17691,19 +21509,37 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 54.60959623, "receivingTargets": 88.92796927, "receivingTouchdowns": 4.189422155, - "receivingTouchdowns40Plus": 0.156691304, - "receivingTouchdowns50Plus": 0.102397767, + "receivingTouchdowns40Plus": 1.214854714, + "receivingTouchdowns50Plus": 0.037572826, "receivingYards": 702.5456417, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 140, "receivingYardsPerReception": 12.864875227076917, - "turnovers": 0.331552142, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.331552142, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 24, "receivingTargets": 47, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 309, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 58, "receivingYardsPerReception": 12.875, + "receptionsPer5Receptions": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -17743,18 +21579,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.07372648, "receivingTargets": 33.61514868, "receivingTouchdowns": 0.670068326, - "receivingTouchdowns40Plus": 0.039469495, - "receivingTouchdowns50Plus": 0.025793315, + "receivingTouchdowns40Plus": 0.069602514, + "receivingTouchdowns50Plus": 0.002152655, "receivingYards": 186.3744698, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 7.147979785051423, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.051129393, "rushingAttempts": 70.36488563, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.234720208, + "rushingGame200PlusYards": 0.0080101, "rushingTouchdowns": 1.718400519, "rushingTouchdowns40Plus": 0.134303413, "rushingTouchdowns50Plus": 0.094012389, "rushingYards": 293.3208432, + "rushingYardsPer100Yards": 2, + "rushingYardsPer10Yards": 29, + "rushingYardsPer20Yards": 14, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 58, "rushingYardsPerAttempt": 4.168568463855258, - "turnovers": 0.429224101, + "totalTurnovers": 0.429224101, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17763,12 +21617,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 7, "receivingYards": 51, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 8.5, "rushingAttempts": 60, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 2, "rushingYards": 333, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 29, + "rushingYardsPer20Yards": 13, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 63, "rushingYardsPerAttempt": 5.55, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -17808,18 +21676,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 40.77050765, "receivingTargets": 53.16399147, "receivingTouchdowns": 1.031782237, - "receivingTouchdowns40Plus": 0.073797565, - "receivingTouchdowns50Plus": 0.048226709, + "receivingTouchdowns40Plus": 0.175249529, + "receivingTouchdowns50Plus": 0.00542, "receivingYards": 347.1235211, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 69, "receivingYardsPerReception": 8.514083858850357, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.034383632, "rushingAttempts": 81.837037, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 16, + "rushingGame100To199Yards": 0.312063149, + "rushingGame200PlusYards": 0.0106, "rushingTouchdowns": 1.573002919, "rushingTouchdowns40Plus": 0.157196759, "rushingTouchdowns50Plus": 0.110037731, "rushingYards": 338.2475841, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 33, + "rushingYardsPer20Yards": 16, + "rushingYardsPer25Yards": 13, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 67, "rushingYardsPerAttempt": 4.133184637415453, - "turnovers": 0.379823177, + "totalTurnovers": 0.379823177, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17830,11 +21716,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 48, "receivingYards": 218, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 6.228571428571429, + "receptionsPer5Receptions": 2, "rushingAttempts": 56, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 8, "rushingTouchdowns": 3, "rushingYards": 211, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 39, "rushingYardsPerAttempt": 3.767857142857143, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -17874,18 +21774,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52.61291816, "receivingTargets": 67.43048421, "receivingTouchdowns": 2.426134535, - "receivingTouchdowns40Plus": 0.064589618, - "receivingTouchdowns50Plus": 0.042209315, + "receivingTouchdowns40Plus": 0.282506011, + "receivingTouchdowns50Plus": 0.008737299, "receivingYards": 426.2899249, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 85, "receivingYardsPerReception": 8.102381312582187, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, "rushing2PtConversions": 0.050525641, "rushingAttempts": 46.01620019, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 0.084229082, + "rushingGame200PlusYards": 0.002874415, "rushingTouchdowns": 1.145119515, "rushingTouchdowns40Plus": 0.086642803, "rushingTouchdowns50Plus": 0.060649962, "rushingYards": 176.0512768, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 17, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 35, "rushingYardsPerAttempt": 3.8258542876875468, - "turnovers": 0.376278497, + "totalTurnovers": 0.376278497, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17893,10 +21811,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 74, "receivingYards": 384, "receivingYardsAfterCatch": 79, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 6.295081967213115, + "receptionsPer5Receptions": 6, "rushingAttempts": 40, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 171, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 31, "rushingYardsPerAttempt": 4.275, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -17960,6 +21891,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 3, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -18000,11 +21933,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39.67177111, "receivingTargets": 71.68279605, "receivingTouchdowns": 3.803354767, - "receivingTouchdowns40Plus": 0.146640779, - "receivingTouchdowns50Plus": 0.095829749, + "receivingTouchdowns40Plus": 0.553192728, + "receivingTouchdowns50Plus": 0.017109053, "receivingYards": 549.2880262, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 13.8458155719078, - "turnovers": 0.232601864, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.232601864, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18015,7 +21956,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 217, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 13.5625, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -18056,18 +22005,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 50.77103204, "receivingTargets": 85.06238635, "receivingTouchdowns": 3.999945941, - "receivingTouchdowns40Plus": 0.166123028, - "receivingTouchdowns50Plus": 0.108561399, + "receivingTouchdowns40Plus": 0.956620393, + "receivingTouchdowns50Plus": 0.029586198, "receivingYards": 671.3330374, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 67, + "receivingYardsPer20Yards": 33, + "receivingYardsPer25Yards": 26, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 134, "receivingYardsPerReception": 13.222757356421072, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, "rushing2PtConversions": 0.003300621, "rushingAttempts": 7.439730637, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.005516057, + "rushingGame200PlusYards": 0.000188242, "rushingTouchdowns": 0.150998788, "rushingTouchdowns40Plus": 0.013702566, "rushingTouchdowns50Plus": 0.009591796, "rushingYards": 46.16677926, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 6.205436932138219, - "turnovers": 0.33350956, + "totalTurnovers": 0.33350956, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18078,10 +22042,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 7, "receivingYards": 210, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 10, "rushingAttempts": 4, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.25, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -18124,18 +22096,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 70.70236623, "receivingTargets": 103.7811823, "receivingTouchdowns": 4.062254977, - "receivingTouchdowns40Plus": 0.185713699, - "receivingTouchdowns50Plus": 0.121363902, + "receivingTouchdowns40Plus": 1.766566464, + "receivingTouchdowns50Plus": 0.054636076, "receivingYards": 841.2439488, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 84, + "receivingYardsPer20Yards": 42, + "receivingYardsPer25Yards": 33, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 168, "receivingYardsPerReception": 11.898384646185272, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, "rushing2PtConversions": 0.003786127, "rushingAttempts": 7.282977112, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.004354776, + "rushingGame200PlusYards": 0.000148612, "rushingTouchdowns": 0.170325815, "rushingTouchdowns40Plus": 0.01341271, "rushingTouchdowns50Plus": 0.009388897, "rushingYards": 41.13575148, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 5.6482055136795, - "turnovers": 0.653645739, + "totalTurnovers": 0.653645739, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18143,14 +22130,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29, "receivingTargets": 50, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 388, "receivingYardsAfterCatch": 109, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 13.379310344827585, + "receptionsPer5Receptions": 1, "rushingAttempts": 4, "rushingYards": 30, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 7.5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -18191,11 +22188,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31.4319802, "receivingTargets": 51.14484745, "receivingTouchdowns": 3.08312773, - "receivingTouchdowns40Plus": 0.168630731, - "receivingTouchdowns50Plus": 0.110200183, + "receivingTouchdowns40Plus": 0.248698934, + "receivingTouchdowns50Plus": 0.00769172, "receivingYards": 404.9617147, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 40, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 80, "receivingYardsPerReception": 12.883748084697508, - "turnovers": 0.184290668, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.184290668, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18204,10 +22209,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20, "receivingTargets": 30, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 303, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 58, "receivingYardsPerReception": 15.15, + "receptionsPer5Receptions": 3, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -18248,11 +22260,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 54.90327227, "receivingTargets": 98.31901485, "receivingTouchdowns": 6.179682731, - "receivingTouchdowns40Plus": 0.1730916, - "receivingTouchdowns50Plus": 0.113115361, + "receivingTouchdowns40Plus": 1.459054157, + "receivingTouchdowns50Plus": 0.045125386, "receivingYards": 783.3246937, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 78, + "receivingYardsPer20Yards": 39, + "receivingYardsPer25Yards": 31, + "receivingYardsPer50Yards": 15, + "receivingYardsPer5Yards": 156, "receivingYardsPerReception": 14.267358962646398, - "turnovers": 0.321906563, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.321906563, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18263,7 +22283,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 532, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 49, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 102, "receivingYardsPerReception": 12.090909090909092, + "receptionsPer5Receptions": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -18301,20 +22329,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 528.796294, "passingCompletionPercentage": 0.616050319, "passingCompletions": 325.7651254, + "passingCompletionsPer10Completions": 32, + "passingCompletionsPer5Completions": 65, "passingIncompletions": 203.0311686, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 40, "passingInterceptions": 13.3871357, "passingTouchdowns": 23.80096757, "passingTouchdowns40Plus": 3.043662424, "passingTouchdowns50Plus": 1.989033394, "passingYards": 3785.003901, + "passingYards300To399": 2.926097205, + "passingYards400Plus": 0.39523901, + "passingYardsPer100Yards": 37, + "passingYardsPer10Yards": 378, + "passingYardsPer20Yards": 189, + "passingYardsPer25Yards": 151, + "passingYardsPer50Yards": 75, + "passingYardsPer5Yards": 757, "rushing2PtConversions": 0.04926337, "rushingAttempts": 67.38315113, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 13, + "rushingGame100To199Yards": 0.364350197, + "rushingGame200PlusYards": 0.012433874, "rushingTouchdowns": 2.586266157, "rushingTouchdowns40Plus": 0.128389847, "rushingTouchdowns50Plus": 0.089872893, "rushingYards": 365.6548955, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 18, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 73, "rushingYardsPerAttempt": 5.426503352367042, - "turnovers": 16.74979524, + "totalTurnovers": 16.74979524, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18325,21 +22375,44 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 331, "passingCompletionPercentage": 0.6888217522658611, "passingCompletions": 228, + "passingCompletionsPer10Completions": 19, + "passingCompletionsPer5Completions": 41, "passingIncompletions": 103, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 15, "passingInterceptions": 8, "passingTouchdowns": 11, "passingTouchdowns40Plus": 2, "passingTouchdowns50Plus": 1, "passingYards": 2528, + "passingYards300To399": 2, + "passingYardsPer100Yards": 20, + "passingYardsPer10Yards": 247, + "passingYardsPer20Yards": 122, + "passingYardsPer25Yards": 96, + "passingYardsPer50Yards": 44, + "passingYardsPer5Yards": 500, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 21, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 21, "rushingAttempts": 64, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 7, "rushingTouchdowns": 2, "rushingYards": 357, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 67, "rushingYardsPerAttempt": 5.578125, - "turnovers": 10, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -18379,11 +22452,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.33435961, "receivingTargets": 34.79976981, "receivingTouchdowns": 2.597147938, - "receivingTouchdowns40Plus": 0.0998528, - "receivingTouchdowns50Plus": 0.065253805, + "receivingTouchdowns40Plus": 0.095256537, + "receivingTouchdowns50Plus": 0.002946078, "receivingYards": 243.6161786, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 10.907685864022856, - "turnovers": 0.148294321, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.148294321, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18395,7 +22476,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 334, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 29, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 10.121212121212121, + "receptionsPer5Receptions": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -18432,6 +22521,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -18471,18 +22562,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.688594884, "receivingTargets": 4.728092413, "receivingTouchdowns": 0.17523673, - "receivingTouchdowns40Plus": 0.057124282, - "receivingTouchdowns50Plus": 0.037330719, + "receivingTouchdowns40Plus": 0.015810777, + "receivingTouchdowns50Plus": 0.000488993, "receivingYards": 29.01423176, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.865930705986416, "rushing2PtConversions": 0.004519405, "rushingAttempts": 4.105214378, + "rushingGame100To199Yards": 0.000505175, + "rushingGame200PlusYards": 0.0000172397, "rushingTouchdowns": 0.120165949, "rushingTouchdowns40Plus": 0.007546474, "rushingTouchdowns50Plus": 0.005282532, "rushingYards": 14.95178372, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.6421444395516045, - "turnovers": 0.026698614, + "totalTurnovers": 0.026698614, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18493,11 +22592,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 214, "receivingYardsAfterCatch": 42, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 6.294117647058823, + "receptionsPer5Receptions": 2, "rushingAttempts": 112, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 17, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 4, "rushingYards": 514, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 47, + "rushingYardsPer20Yards": 21, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 97, "rushingYardsPerAttempt": 4.589285714285714, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -18535,6 +22651,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -18575,11 +22693,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.89864883, "receivingTargets": 23.64046206, "receivingTouchdowns": 1.318166689, - "receivingTouchdowns40Plus": 0.129896774, - "receivingTouchdowns50Plus": 0.084887542, + "receivingTouchdowns40Plus": 0.065906374, + "receivingTouchdowns50Plus": 0.002038341, "receivingYards": 175.8521094, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 12.652460793197836, - "turnovers": 0.081489975, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.081489975, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18588,12 +22714,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26, "receivingTargets": 53, "receivingTouchdowns": 5, + "receivingTouchdowns40Plus": 1, "receivingYards": 445, "receivingYardsAfterCatch": 27, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 84, "receivingYardsPerReception": 17.115384615384617, "rushingAttempts": 1, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -18633,11 +22769,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.57557422, "receivingTargets": 5.316399147, "receivingTouchdowns": 0.332060324, - "receivingTouchdowns40Plus": 0.087181598, - "receivingTouchdowns50Plus": 0.056973174, + "receivingTouchdowns40Plus": 0.019118027, + "receivingTouchdowns50Plus": 0.000591279, "receivingYards": 36.07491745, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.089265452305447, - "turnovers": 0.02374088, + "totalTurnovers": 0.02374088, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18646,7 +22786,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 439, "receivingYardsAfterCatch": 51, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 80, "receivingYardsPerReception": 10.209302325581396, + "receptionsPer5Receptions": 3, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -18684,20 +22832,41 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 602.949394, "passingCompletionPercentage": 0.614219099, "passingCompletions": 370.3430333, + "passingCompletionsPer10Completions": 37, + "passingCompletionsPer5Completions": 74, "passingIncompletions": 232.60636069999998, + "passingIncompletionsPer10Incompletions": 23, + "passingIncompletionsPer5Incompletions": 46, "passingInterceptions": 12.54644686, "passingTouchdowns": 24.71451482, "passingTouchdowns40Plus": 3.563570573, "passingTouchdowns50Plus": 2.32879337, "passingYards": 4122.112351, + "passingYards300To399": 4.031901878, + "passingYards400Plus": 0.544604226, + "passingYardsPer100Yards": 41, + "passingYardsPer10Yards": 412, + "passingYardsPer20Yards": 206, + "passingYardsPer25Yards": 164, + "passingYardsPer50Yards": 82, + "passingYardsPer5Yards": 824, "rushing2PtConversions": 0.02574955, "rushingAttempts": 30.81110533, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.01978897, + "rushingGame200PlusYards": 0.000675322, "rushingTouchdowns": 0.817202861, "rushingTouchdowns40Plus": 0.057511256, "rushingTouchdowns50Plus": 0.040257879, "rushingYards": 86.13884991, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 2.7957078782931157, - "turnovers": 16.78934086, + "totalTurnovers": 16.78934086, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18707,10 +22876,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 553, "passingCompletionPercentage": 0.6889692585895117, "passingCompletions": 381, + "passingCompletionsPer10Completions": 29, + "passingCompletionsPer5Completions": 68, "passingIncompletions": 172, + "passingIncompletionsPer10Incompletions": 8, + "passingIncompletionsPer5Incompletions": 26, "passingInterceptions": 10, "passingTouchdowns": 19, "passingYards": 4049, + "passingYards300To399": 3, + "passingYards400Plus": 1, + "passingYardsPer100Yards": 31, + "passingYardsPer10Yards": 398, + "passingYardsPer20Yards": 197, + "passingYardsPer25Yards": 152, + "passingYardsPer50Yards": 71, + "passingYardsPer5Yards": 803, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": -9, @@ -18718,8 +22899,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rushingAttempts": 24, "rushingTouchdowns": 1, "rushingYards": 47, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 1.9583333333333333, - "turnovers": 17, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 17, "usesPoints": false, }, }, @@ -18759,28 +22946,53 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.939479126, "receivingTargets": 7.977362481, "receivingTouchdowns": 0.175938205, - "receivingTouchdowns40Plus": 0.054927059, - "receivingTouchdowns50Plus": 0.035894833, + "receivingTouchdowns40Plus": 0.024520384, + "receivingTouchdowns50Plus": 0.000758362, "receivingYards": 48.53549106, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 8.171674658731682, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.036286667, "rushingAttempts": 65.75891206, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 13, + "rushingGame100To199Yards": 0.187815409, + "rushingGame200PlusYards": 0.006409419, "rushingTouchdowns": 2.039270969, "rushingTouchdowns40Plus": 0.125188035, "rushingTouchdowns50Plus": 0.087631624, "rushingYards": 262.6399634, + "rushingYardsPer100Yards": 2, + "rushingYardsPer10Yards": 26, + "rushingYardsPer20Yards": 13, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 52, "rushingYardsPerAttempt": 3.9939827952196203, - "turnovers": 0.316377082, + "totalTurnovers": 0.316377082, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 27, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 13.5, "rushingAttempts": 27, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, "rushingYards": 74, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 2.740740740740741, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -18816,10 +23028,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.522564804, "defensiveForcedFumbles": 15.35261775, "defensiveFumbles": 9.979201535, + "defensiveHalfSacks": 84, "defensiveInterceptions": 12.94544895, "defensivePointsAllowed": 373.7722771, "defensiveSacks": 42.4274786, "defensiveSafeties": 0.315547235, + "defensiveStuffs": 56.06080611, "defensiveYardsAllowed": 5730.106366, "fumbleReturnTouchdown": 1.418155356, "interceptionReturnTouchdown": 1.371794702, @@ -18827,6 +23041,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.3318486, "puntReturnYards": 269.7977364, + "totalReturnTouchdowns": 3.457668248, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18842,16 +23057,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 302, "defensiveForcedFumbles": 13, "defensiveFumbles": 9, + "defensiveHalfSacks": 70, "defensiveInterceptions": 13, "defensiveOver45PointsAllowed": 1, "defensivePointsAllowed": 376, "defensiveSacks": 35, "defensiveSoloTackles": 664, + "defensiveStuffs": 70, + "defensiveTacklesPer3Tackles": 318, + "defensiveTacklesPer5Tackles": 187, "defensiveTotalTackles": 966, "defensiveYardsAllowed": 5651, "interceptionReturnTouchdown": 1, "kickoffReturnYards": 582, "puntReturnYards": 165, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -18892,11 +23112,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.25525085, "receivingTargets": 76.04083416, "receivingTouchdowns": 2.519752093, - "receivingTouchdowns40Plus": 0.148016469, - "receivingTouchdowns50Plus": 0.096728762, + "receivingTouchdowns40Plus": 0.658048567, + "receivingTouchdowns50Plus": 0.020352018, "receivingYards": 583.6368894, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 116, "receivingYardsPerReception": 13.187969296077325, - "turnovers": 0.207580424, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.207580424, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18907,9 +23135,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 449, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 40, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 85, "receivingYardsPerReception": 11.81578947368421, + "receptionsPer5Receptions": 2, "rushingAttempts": 1, - "turnovers": 1, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -18945,16 +23181,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "projectedRawStats": PlayerStats { "lostFumbles": 0.585856691, "receiving2PtConversions": 0.184601048, - "receivingTouchdowns40Plus": 0.14775923, - "receivingTouchdowns50Plus": 0.096560657, - "turnovers": 0.585856691, + "receivingTouchdowns40Plus": 1.440119288, + "receivingTouchdowns50Plus": 0.044539772, + "totalTurnovers": 0.585856691, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 4, "receivingTargets": 7, "receivingYards": 52, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -18994,11 +23237,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.03747199, "receivingTargets": 69.81161613, "receivingTouchdowns": 3.850917989, - "receivingTouchdowns40Plus": 0.105837263, - "receivingTouchdowns50Plus": 0.069164651, + "receivingTouchdowns40Plus": 0.415970979, + "receivingTouchdowns50Plus": 0.012865082, "receivingYards": 495.0919757, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 49, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 99, "receivingYardsPerReception": 10.75410864887501, - "turnovers": 0.305676802, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.305676802, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19010,8 +23261,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 32, "receivingYards": 202, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 9.181818181818182, - "turnovers": 1, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -19049,6 +23306,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, + "teamWin": 7, "usesPoints": false, }, }, @@ -19092,28 +23351,47 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066663295, "passingTouchdowns50Plus": 0.043564463, "passingYards": 18.15118511, + "passingYards300To399": 0.029137127, + "passingYards400Plus": 0.003935662, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000844114, "rushingAttempts": 0.09042862, + "rushingGame100To199Yards": -0.00000234912, + "rushingGame200PlusYards": -8.01666e-8, "rushingTouchdowns": 0.004232928, "rushingTouchdowns40Plus": 0.000165846, "rushingTouchdowns50Plus": 0.000116092, "rushingYards": 0.367839225, "rushingYardsPerAttempt": 4.067730161092804, - "turnovers": 0.099625413, + "totalTurnovers": 0.099625413, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 23, "passingCompletionPercentage": 0.6086956521739131, "passingCompletions": 14, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 9, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 118, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 11, + "passingYardsPer20Yards": 5, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 23, "rushingAttempts": 11, "rushingYards": 5, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 0.45454545454545453, - "turnovers": 1, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -19154,11 +23432,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 63.2844171, "receivingTargets": 114.740967, "receivingTouchdowns": 4.206714382, - "receivingTouchdowns40Plus": 0.162381261, - "receivingTouchdowns50Plus": 0.106116154, + "receivingTouchdowns40Plus": 2.112129878, + "receivingTouchdowns50Plus": 0.0653, "receivingYards": 899.9682042, + "receivingYardsPer100Yards": 8, + "receivingYardsPer10Yards": 89, + "receivingYardsPer20Yards": 44, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 17, + "receivingYardsPer5Yards": 179, "receivingYardsPerReception": 14.221008037063834, - "turnovers": 0.36822015, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 12, + "totalTurnovers": 0.36822015, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19168,7 +23454,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 67, "receivingTouchdowns": 1, "receivingYards": 380, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 71, "receivingYardsPerReception": 15.2, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -19209,11 +23502,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.708473856, "receivingTargets": 2.876537883, "receivingTouchdowns": 0.113553976, - "receivingTouchdowns40Plus": 0.124853082, - "receivingTouchdowns50Plus": 0.081591489, + "receivingTouchdowns40Plus": 0.011931865, + "receivingTouchdowns50Plus": 0.000369027, "receivingYards": 21.21483087, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.41741616091783, - "turnovers": 0.010017052, + "totalTurnovers": 0.010017052, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19227,11 +23523,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 315, "receivingYardsAfterCatch": 25, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 60, "receivingYardsPerReception": 13.695652173913043, + "receptionsPer5Receptions": 2, "rushingAttempts": 3, "rushingYards": 17, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.666666666666667, - "turnovers": 1, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -19267,10 +23573,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.302768691, "defensiveForcedFumbles": 12.79938484, "defensiveFumbles": 8.319600149, + "defensiveHalfSacks": 65, "defensiveInterceptions": 12.58594848, "defensivePointsAllowed": 346.767118, "defensiveSacks": 32.67033901, "defensiveSafeties": 0.335666892, + "defensiveStuffs": 62.48844114, "defensiveYardsAllowed": 5711.035189, "fumbleReturnTouchdown": 1.31019164, "interceptionReturnTouchdown": 1.082915021, @@ -19278,6 +23586,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.235370244, "puntReturnYards": 205.9400833, + "totalReturnTouchdowns": 2.950075523, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19295,12 +23604,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 2, "defensiveForcedFumbles": 18, "defensiveFumbles": 14, + "defensiveHalfSacks": 74, "defensiveInterceptions": 17, "defensiveOver550YardsAllowed": 1, "defensivePointsAllowed": 378, "defensiveSacks": 37, "defensiveSafeties": 1, "defensiveSoloTackles": 795, + "defensiveStuffs": 64, + "defensiveTacklesPer3Tackles": 364, + "defensiveTacklesPer5Tackles": 217, "defensiveTotalTackles": 1112, "defensiveYardsAllowed": 6288, "kickoffReturnYards": 884, @@ -19344,18 +23657,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.510983238, "receivingTargets": 8.428810526, "receivingTouchdowns": 0.272136418, - "receivingTouchdowns40Plus": 0.053561676, - "receivingTouchdowns50Plus": 0.035002555, + "receivingTouchdowns40Plus": 0.025486148, + "receivingTouchdowns50Plus": 0.000788231, "receivingYards": 50.89389247, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 7.816621639104886, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.164898401, "rushingAttempts": 109.7309389, + "rushingAttemptsPer10Attempts": 10, + "rushingAttemptsPer5Attempts": 21, + "rushingGame100To199Yards": 0.606166587, + "rushingGame200PlusYards": 0.02068614, "rushingTouchdowns": 3.737278178, "rushingTouchdowns40Plus": 0.214050154, "rushingTouchdowns50Plus": 0.149835108, "rushingYards": 470.1086001, + "rushingYardsPer100Yards": 4, + "rushingYardsPer10Yards": 47, + "rushingYardsPer20Yards": 23, + "rushingYardsPer25Yards": 18, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 94, "rushingYardsPerAttempt": 4.284193727061967, - "turnovers": 0.440728763, + "totalTurnovers": 0.440728763, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19365,12 +23694,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 15, "receivingYards": 67, "receivingYardsAfterCatch": 15, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 6.7, "rushingAttempts": 154, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 25, "rushingTouchdowns": 5, "rushingYards": 418, + "rushingYardsPer10Yards": 35, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 77, "rushingYardsPerAttempt": 2.7142857142857144, - "turnovers": 1, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -19406,10 +23747,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.389581278, "defensiveForcedFumbles": 11.02170164, "defensiveFumbles": 7.164106068, + "defensiveHalfSacks": 58, "defensiveInterceptions": 11.98140224, "defensivePointsAllowed": 373.2024455, "defensiveSacks": 29.46835589, "defensiveSafeties": 0.368590272, + "defensiveStuffs": 55.63440858, "defensiveYardsAllowed": 5931.407418, "fumbleReturnTouchdown": 1.227927656, "interceptionReturnTouchdown": 1.046189329, @@ -19417,6 +23760,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.3318486, "puntReturnYards": 282.1561, + "totalReturnTouchdowns": 2.937600308, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19435,10 +23779,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 2, "defensiveForcedFumbles": 15, "defensiveFumbles": 11, + "defensiveHalfSacks": 76, "defensiveInterceptions": 15, "defensivePointsAllowed": 318, "defensiveSacks": 38, "defensiveSoloTackles": 769, + "defensiveStuffs": 64, + "defensiveTacklesPer3Tackles": 361, + "defensiveTacklesPer5Tackles": 214, "defensiveTotalTackles": 1102, "defensiveYardsAllowed": 5431, "kickoffReturnYards": 337, @@ -19482,11 +23830,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.98152219, "receivingTargets": 63.79678976, "receivingTouchdowns": 4.224126821, - "receivingTouchdowns40Plus": 0.14727308, - "receivingTouchdowns50Plus": 0.096242958, + "receivingTouchdowns40Plus": 0.402139003, + "receivingTouchdowns50Plus": 0.012437289, "receivingYards": 489.1311276, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 97, "receivingYardsPerReception": 11.380032690275458, - "turnovers": 0.199770265, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.199770265, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19495,7 +23851,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 179, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 11.933333333333334, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -19533,20 +23897,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 340.7088532, "passingCompletionPercentage": 0.60872652, "passingCompletions": 207.3985147, + "passingCompletionsPer10Completions": 20, + "passingCompletionsPer5Completions": 41, "passingIncompletions": 133.31033850000003, + "passingIncompletionsPer10Incompletions": 13, + "passingIncompletionsPer5Incompletions": 26, "passingInterceptions": 8.924657952, "passingTouchdowns": 12.15166004, "passingTouchdowns40Plus": 2.111906521, "passingTouchdowns50Plus": 1.380130911, "passingYards": 2376.097852, + "passingYards300To399": 2.466986667, + "passingYards400Plus": 0.333225214, + "passingYardsPer100Yards": 23, + "passingYardsPer10Yards": 237, + "passingYardsPer20Yards": 118, + "passingYardsPer25Yards": 95, + "passingYardsPer50Yards": 47, + "passingYardsPer5Yards": 475, "rushing2PtConversions": 0.01278612, "rushingAttempts": 14.84875328, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.00962857, + "rushingGame200PlusYards": 0.000328586, "rushingTouchdowns": 0.436294913, "rushingTouchdowns40Plus": 0.0276455, "rushingTouchdowns50Plus": 0.01935185, "rushingYards": 45.21060335, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.0447406928698055, - "turnovers": 11.31547909, + "totalTurnovers": 11.31547909, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19558,16 +23942,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 393, "passingCompletionPercentage": 0.5521628498727735, "passingCompletions": 217, + "passingCompletionsPer10Completions": 17, + "passingCompletionsPer5Completions": 38, "passingIncompletions": 176, + "passingIncompletionsPer10Incompletions": 11, + "passingIncompletionsPer5Incompletions": 31, "passingInterceptions": 14, "passingTouchdowns": 11, "passingTouchdowns40Plus": 2, "passingTouchdowns50Plus": 2, "passingYards": 2278, + "passingYardsPer100Yards": 16, + "passingYardsPer10Yards": 222, + "passingYardsPer20Yards": 108, + "passingYardsPer25Yards": 84, + "passingYardsPer50Yards": 37, + "passingYardsPer5Yards": 451, "rushingAttempts": 23, "rushingYards": 138, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 6, - "turnovers": 19, + "teamLoss": 13, + "teamWin": 3, + "totalTurnovers": 19, "usesPoints": false, }, }, @@ -19611,18 +24011,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.96292277, "receivingTargets": 29.84891738, "receivingTouchdowns": 1.000074374, - "receivingTouchdowns40Plus": 0.101472318, - "receivingTouchdowns50Plus": 0.06631216, + "receivingTouchdowns40Plus": 0.080450116, + "receivingTouchdowns50Plus": 0.002488148, "receivingYards": 209.9022501, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 9.140920439545598, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.14317629, "rushingAttempts": 88.96100613, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 17, + "rushingGame100To199Yards": 0.372342398, + "rushingGame200PlusYards": 0.012706618, "rushingTouchdowns": 2.647970506, "rushingTouchdowns40Plus": 0.171554756, "rushingTouchdowns50Plus": 0.120088329, "rushingYards": 369.0806962, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 18, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 73, "rushingYardsPerAttempt": 4.148791838759749, - "turnovers": 0.25338891, + "totalTurnovers": 0.25338891, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19636,12 +24054,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingYards": 192, "receivingYardsAfterCatch": 74, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 8.727272727272727, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 1, "rushingAttempts": 68, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 11, "rushingTouchdowns": 2, "rushingYards": 259, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 50, "rushingYardsPerAttempt": 3.8088235294117645, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -19679,6 +24112,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -19714,10 +24149,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.516186626, "defensiveForcedFumbles": 12.67204721, "defensiveFumbles": 8.236830688, + "defensiveHalfSacks": 72, "defensiveInterceptions": 12.62085149, "defensivePointsAllowed": 368.3888454, "defensiveSacks": 36.38173057, "defensiveSafeties": 0.326727646, + "defensiveStuffs": 60.920343, "defensiveYardsAllowed": 5668.727405, "fumbleReturnTouchdown": 1.330048228, "interceptionReturnTouchdown": 1.199760695, @@ -19725,6 +24162,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 759.9430665, "puntReturnTouchdown": 0.409926444, "puntReturnYards": 265.8551864, + "totalReturnTouchdowns": 3.236129999, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19743,10 +24181,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 2, "defensiveForcedFumbles": 11, "defensiveFumbles": 7, + "defensiveHalfSacks": 62, "defensiveInterceptions": 21, "defensivePointsAllowed": 415, "defensiveSacks": 31, "defensiveSoloTackles": 738, + "defensiveStuffs": 48, + "defensiveTacklesPer3Tackles": 355, + "defensiveTacklesPer5Tackles": 209, "defensiveTotalTackles": 1080, "defensiveYardsAllowed": 6257, "fumbleReturnTouchdown": 3, @@ -19754,6 +24196,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 938, "puntReturnTouchdown": 1, "puntReturnYards": 293, + "totalReturnTouchdowns": 5, "usesPoints": false, }, }, @@ -19817,6 +24260,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -19859,18 +24304,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 58.55396783, "receivingTargets": 79.95837143, "receivingTouchdowns": 2.779936064, - "receivingTouchdowns40Plus": 0.150703594, - "receivingTouchdowns50Plus": 0.098484798, + "receivingTouchdowns40Plus": 0.769231584, + "receivingTouchdowns50Plus": 0.023790668, "receivingYards": 616.0783428, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 61, + "receivingYardsPer20Yards": 30, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 123, "receivingYardsPerReception": 10.52154731151035, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.001288768, "rushingAttempts": 1.832566978, + "rushingGame100To199Yards": 0.000258005, + "rushingGame200PlusYards": 0.00000880473, "rushingTouchdowns": 0.038837544, "rushingTouchdowns40Plus": 0.003364334, "rushingTouchdowns50Plus": 0.002355034, "rushingYards": 11.09686953, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.055369142420506, - "turnovers": 0.318984419, + "totalTurnovers": 0.318984419, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19882,16 +24339,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingTouchdowns": 1, "passingYards": 28, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 5, "puntReturnYards": 59, "receivingReceptions": 59, "receivingTargets": 79, "receivingTouchdowns": 1, "receivingYards": 575, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 110, "receivingYardsPerReception": 9.745762711864407, + "receptionsPer5Receptions": 5, "rushingAttempts": 1, "rushingYards": -2, "rushingYardsPerAttempt": -2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -19932,11 +24401,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 53.05536622, "receivingTargets": 93.67830435, "receivingTouchdowns": 3.57826849, - "receivingTouchdowns40Plus": 0.210580296, - "receivingTouchdowns50Plus": 0.137614224, + "receivingTouchdowns40Plus": 1.461733636, + "receivingTouchdowns50Plus": 0.045208257, "receivingYards": 783.8167633, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 78, + "receivingYardsPer20Yards": 39, + "receivingYardsPer25Yards": 31, + "receivingYardsPer50Yards": 15, + "receivingYardsPer5Yards": 156, "receivingYardsPerReception": 14.773562396116846, - "turnovers": 0.311071998, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.311071998, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19945,10 +24422,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 38, "receivingTargets": 70, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 491, "receivingYardsAfterCatch": 49, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 96, "receivingYardsPerReception": 12.921052631578947, - "turnovers": 2, + "receptionsPer5Receptions": 2, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -19988,11 +24475,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 23.4265051, "receivingTargets": 35.69125286, "receivingTouchdowns": 1.618821181, - "receivingTouchdowns40Plus": 0.096674521, - "receivingTouchdowns50Plus": 0.063176799, + "receivingTouchdowns40Plus": 0.099475812, + "receivingTouchdowns50Plus": 0.003076572, "receivingYards": 247.6585137, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 49, "receivingYardsPerReception": 10.571722612606008, - "turnovers": 0.155545882, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.155545882, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20001,11 +24496,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34, "receivingTargets": 51, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 552, "receivingYardsAfterCatch": 64, + "receivingYardsPer10Yards": 49, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 104, "receivingYardsPerReception": 16.235294117647058, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -20045,11 +24545,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.61107958, "receivingTargets": 40.23319666, "receivingTouchdowns": 2.256648828, - "receivingTouchdowns40Plus": 0.098058417, - "receivingTouchdowns50Plus": 0.064081176, + "receivingTouchdowns40Plus": 0.116849039, + "receivingTouchdowns50Plus": 0.003613888, "receivingYards": 280.3599207, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 10.535458355124726, - "turnovers": 0.176690625, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.176690625, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20058,9 +24566,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27, "receivingTargets": 36, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 1, "receivingYards": 307, "receivingYardsAfterCatch": 36, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 59, "receivingYardsPerReception": 11.37037037037037, + "receptionsPer5Receptions": 2, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -20098,20 +24616,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 588.8131204, "passingCompletionPercentage": 0.624096155, "passingCompletions": 367.4760043, + "passingCompletionsPer10Completions": 36, + "passingCompletionsPer5Completions": 73, "passingIncompletions": 221.3371161, + "passingIncompletionsPer10Incompletions": 22, + "passingIncompletionsPer5Incompletions": 44, "passingInterceptions": 12.03183572, "passingTouchdowns": 22.39737297, "passingTouchdowns40Plus": 3.510785969, "passingTouchdowns50Plus": 2.294298631, "passingYards": 4089.737892, + "passingYards300To399": 3.90318771, + "passingYards400Plus": 0.527218317, + "passingYardsPer100Yards": 40, + "passingYardsPer10Yards": 408, + "passingYardsPer20Yards": 204, + "passingYardsPer25Yards": 163, + "passingYardsPer50Yards": 81, + "passingYardsPer5Yards": 817, "rushing2PtConversions": 0.046796335, "rushingAttempts": 40.17706788, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.055968064, + "rushingGame200PlusYards": 0.001909975, "rushingTouchdowns": 1.171822724, "rushingTouchdowns40Plus": 0.075392377, "rushingTouchdowns50Plus": 0.052774664, "rushingYards": 144.1245857, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 3.5872350399105333, - "turnovers": 15.36849665, + "totalTurnovers": 15.36849665, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20120,17 +24660,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 586, "passingCompletionPercentage": 0.6228668941979523, "passingCompletions": 365, + "passingCompletionsPer10Completions": 30, + "passingCompletionsPer5Completions": 67, "passingIncompletions": 221, + "passingIncompletionsPer10Incompletions": 14, + "passingIncompletionsPer5Incompletions": 37, "passingInterceptions": 15, "passingTouchdowns": 18, "passingTouchdowns40Plus": 3, "passingTouchdowns50Plus": 1, "passingYards": 3890, + "passingYards300To399": 3, + "passingYardsPer100Yards": 30, + "passingYardsPer10Yards": 383, + "passingYardsPer20Yards": 188, + "passingYardsPer25Yards": 148, + "passingYardsPer50Yards": 70, + "passingYardsPer5Yards": 773, "rushingAttempts": 26, "rushingTouchdowns": 2, "rushingYards": 93, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 3.576923076923077, - "turnovers": 17, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 17, "usesPoints": false, }, }, @@ -20171,21 +24727,37 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.294050375, "receivingTargets": 10.7673363, "receivingTouchdowns": 0.626186307, - "receivingTouchdowns40Plus": 0.126034101, - "receivingTouchdowns50Plus": 0.082363285, + "receivingTouchdowns40Plus": 0.036058813, + "receivingTouchdowns50Plus": 0.001115221, "receivingYards": 79.53634623, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 12.63675081882388, - "turnovers": 0.036903012, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.036903012, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 21, "receivingTargets": 36, "receivingYards": 328, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 60, "receivingYardsPerReception": 15.619047619047619, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -20227,18 +24799,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.32882107, "receivingTargets": 17.61483251, "receivingTouchdowns": 0.378277455, - "receivingTouchdowns40Plus": 0.048058092, - "receivingTouchdowns50Plus": 0.031405963, + "receivingTouchdowns40Plus": 0.043708286, + "receivingTouchdowns50Plus": 0.001351803, "receivingYards": 103.4705171, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 7.762915906560369, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.046969078, "rushingAttempts": 57.0015747, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.135303469, + "rushingGame200PlusYards": 0.004617388, "rushingTouchdowns": 1.615937001, "rushingTouchdowns40Plus": 0.107989466, "rushingTouchdowns50Plus": 0.075592626, "rushingYards": 222.8275405, + "rushingYardsPer100Yards": 2, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 44, "rushingYardsPerAttempt": 3.909147101158944, - "turnovers": 0.317410367, + "totalTurnovers": 0.317410367, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20250,11 +24840,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 23, "receivingYards": 103, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 5.15, + "receptionsPer5Receptions": 1, "rushingAttempts": 60, + "rushingAttemptsPer5Attempts": 7, "rushingTouchdowns": 2, "rushingYards": 208, + "rushingYardsPer10Yards": 15, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 35, "rushingYardsPerAttempt": 3.466666666666667, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -20290,10 +24892,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.483045047, "defensiveForcedFumbles": 14.73327696, "defensiveFumbles": 9.576630023, + "defensiveHalfSacks": 67, "defensiveInterceptions": 11.25803469, "defensivePointsAllowed": 350.2815204, "defensiveSacks": 33.94846483, "defensiveSafeties": 0.315733808, + "defensiveStuffs": 53.06530083, "defensiveYardsAllowed": 5724.663544, "fumbleReturnTouchdown": 1.173349119, "interceptionReturnTouchdown": 1.342849538, @@ -20301,6 +24905,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.38364, "puntReturnYards": 284.533, + "totalReturnTouchdowns": 3.228649235, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20318,16 +24923,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 8, "defensiveFumbles": 4, + "defensiveHalfSacks": 74, "defensiveInterceptions": 15, "defensivePointsAllowed": 405, "defensiveSacks": 37, "defensiveSoloTackles": 740, + "defensiveStuffs": 31, + "defensiveTacklesPer3Tackles": 349, + "defensiveTacklesPer5Tackles": 208, "defensiveTotalTackles": 1064, "defensiveYardsAllowed": 6152, "fumbleReturnTouchdown": 1, "interceptionReturnTouchdown": 1, "kickoffReturnYards": 689, "puntReturnYards": 147, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -20367,18 +24977,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.78850608, "receivingTargets": 13.89380873, "receivingTouchdowns": 0.484756702, - "receivingTouchdowns40Plus": 0.060743405, - "receivingTouchdowns50Plus": 0.039695815, + "receivingTouchdowns40Plus": 0.037793907, + "receivingTouchdowns50Plus": 0.001168884, "receivingYards": 86.78168715, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 8.04390214052695, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.073480986, "rushingAttempts": 76.58550294, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 15, + "rushingGame100To199Yards": 0.340734032, + "rushingGame200PlusYards": 0.011627945, "rushingTouchdowns": 1.896242472, "rushingTouchdowns40Plus": 0.148961771, "rushingTouchdowns50Plus": 0.10427324, "rushingYards": 300.7559764, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 60, "rushingYardsPerAttempt": 3.927061452291091, - "turnovers": 0.278103748, + "totalTurnovers": 0.278103748, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20389,11 +25016,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 27, "receivingYards": 154, "receivingYardsAfterCatch": 65, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 7.7, + "receptionsPer5Receptions": 1, "rushingAttempts": 150, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 23, "rushingTouchdowns": 2, "rushingYards": 499, + "rushingYardsPer10Yards": 42, + "rushingYardsPer20Yards": 17, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 93, "rushingYardsPerAttempt": 3.3266666666666667, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -20434,11 +25076,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 45.40111644, "receivingTargets": 78.06525363, "receivingTouchdowns": 4.06347589, - "receivingTouchdowns40Plus": 0.119134091, - "receivingTouchdowns50Plus": 0.077854129, + "receivingTouchdowns40Plus": 0.606509294, + "receivingTouchdowns50Plus": 0.018758019, "receivingYards": 569.3453355, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 113, "receivingYardsPerReception": 12.540337774565968, - "turnovers": 0.186335745, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.186335745, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20450,12 +25100,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 48, "receivingTargets": 89, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 668, "receivingYardsAfterCatch": 36, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 60, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 127, "receivingYardsPerReception": 13.916666666666666, - "turnovers": 1, + "receptionsPer5Receptions": 4, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -20498,11 +25156,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52.10140455, "receivingTargets": 75.43724373, "receivingTouchdowns": 2.642851878, - "receivingTouchdowns40Plus": 0.115161512, - "receivingTouchdowns50Plus": 0.075258048, + "receivingTouchdowns40Plus": 0.539632931, + "receivingTouchdowns50Plus": 0.016689678, "receivingYards": 545.6193908, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 10.472258771380858, - "turnovers": 0.352772218, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.352772218, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20513,9 +25179,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 65, "receivingTargets": 87, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 1, "receivingYards": 672, "receivingYardsAfterCatch": 6, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 60, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 128, "receivingYardsPerReception": 10.338461538461539, + "receptionsPer5Receptions": 6, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -20553,20 +25229,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 599.1546422, "passingCompletionPercentage": 0.618877956, "passingCompletions": 370.8036005, + "passingCompletionsPer10Completions": 37, + "passingCompletionsPer5Completions": 74, "passingIncompletions": 228.3510417, + "passingIncompletionsPer10Incompletions": 22, + "passingIncompletionsPer5Incompletions": 45, "passingInterceptions": 14.91567968, "passingTouchdowns": 25.80578805, "passingTouchdowns40Plus": 3.583333241, "passingTouchdowns50Plus": 2.341708273, "passingYards": 4134.062939, + "passingYards300To399": 4.081778345, + "passingYards400Plus": 0.551341229, + "passingYardsPer100Yards": 41, + "passingYardsPer10Yards": 413, + "passingYardsPer20Yards": 206, + "passingYardsPer25Yards": 165, + "passingYardsPer50Yards": 82, + "passingYardsPer5Yards": 826, "rushing2PtConversions": 0.01721766, "rushingAttempts": 18.39409386, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.001840316, + "rushingGame200PlusYards": 0.0000628029, "rushingTouchdowns": 0.322731679, "rushingTouchdowns40Plus": 0.034091898, "rushingTouchdowns50Plus": 0.023864329, "rushingYards": 27.13838427, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 1.475385766570183, - "turnovers": 19.33016673, + "totalTurnovers": 19.33016673, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20578,15 +25274,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 576, "passingCompletionPercentage": 0.6597222222222222, "passingCompletions": 380, + "passingCompletionsPer10Completions": 31, + "passingCompletionsPer5Completions": 69, "passingIncompletions": 196, + "passingIncompletionsPer10Incompletions": 13, + "passingIncompletionsPer5Incompletions": 32, "passingInterceptions": 11, "passingTouchdowns": 21, "passingYards": 4299, + "passingYards300To399": 5, + "passingYardsPer100Yards": 34, + "passingYardsPer10Yards": 421, + "passingYardsPer20Yards": 206, + "passingYardsPer25Yards": 164, + "passingYardsPer50Yards": 77, + "passingYardsPer5Yards": 853, "rushingAttempts": 15, "rushingTouchdowns": 1, "rushingYards": 20, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.3333333333333333, - "turnovers": 15, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 15, "usesPoints": false, }, }, @@ -20629,23 +25339,37 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 47.66584674, "receivingTargets": 74.37344214, "receivingTouchdowns": 3.009743523, - "receivingTouchdowns40Plus": 0.132683112, - "receivingTouchdowns50Plus": 0.086708414, + "receivingTouchdowns40Plus": 0.58218197, + "receivingTouchdowns50Plus": 0.018005628, "receivingYards": 555.951891, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 55, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 111, "receivingYardsPerReception": 11.663527011961355, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, "rushing2PtConversions": 0.002694834, "rushingAttempts": 3.665133955, + "rushingGame100To199Yards": 0.001254235, + "rushingGame200PlusYards": 0.0000428022, "rushingTouchdowns": 0.081209932, "rushingTouchdowns40Plus": 0.006735828, "rushingTouchdowns50Plus": 0.004715079, "rushingYards": 22.69260452, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.1914802565517695, - "turnovers": 0.207987, + "totalTurnovers": 0.207987, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveSoloTackles": 2, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 3, "passingAttempts": 1, "passingCompletionPercentage": 1, @@ -20654,17 +25378,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 52, + "passingYardsPer10Yards": 5, + "passingYardsPer20Yards": 2, + "passingYardsPer25Yards": 2, + "passingYardsPer50Yards": 1, + "passingYardsPer5Yards": 10, "receivingReceptions": 26, "receivingTargets": 35, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 3, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 391, "receivingYardsAfterCatch": 43, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 75, "receivingYardsPerReception": 15.038461538461538, + "receptionsPer5Receptions": 2, "rushingAttempts": 8, "rushingYards": 16, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -20704,18 +25442,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.93587354, "receivingTargets": 27.92464645, "receivingTouchdowns": 0.672012669, - "receivingTouchdowns40Plus": 0.047650942, - "receivingTouchdowns50Plus": 0.03113989, + "receivingTouchdowns40Plus": 0.061864339, + "receivingTouchdowns50Plus": 0.00191333, "receivingYards": 163.5397006, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 8.20328741912756, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.060167454, "rushingAttempts": 106.2888847, + "rushingAttemptsPer10Attempts": 10, + "rushingAttemptsPer5Attempts": 21, + "rushingGame100To199Yards": 0.475334624, + "rushingGame200PlusYards": 0.016221347, "rushingTouchdowns": 1.813171009, "rushingTouchdowns40Plus": 0.206966178, "rushingTouchdowns50Plus": 0.144876324, "rushingYards": 415.9229147, + "rushingYardsPer100Yards": 4, + "rushingYardsPer10Yards": 41, + "rushingYardsPer20Yards": 20, + "rushingYardsPer25Yards": 16, + "rushingYardsPer50Yards": 8, + "rushingYardsPer5Yards": 83, "rushingYardsPerAttempt": 3.913136504103331, - "turnovers": 0.576047249, + "totalTurnovers": 0.576047249, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20724,10 +25480,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 16, "receivingTouchdowns": 1, "receivingYards": 124, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 10.333333333333334, "rushingAttempts": 156, + "rushingAttemptsPer10Attempts": 10, + "rushingAttemptsPer5Attempts": 26, + "rushingGame100To199Yards": 1, "rushingYards": 722, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 68, + "rushingYardsPer20Yards": 31, + "rushingYardsPer25Yards": 23, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 139, "rushingYardsPerAttempt": 4.628205128205129, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -20769,18 +25539,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.094971615, "receivingTargets": 2.839330159, "receivingTouchdowns": 0.066735023, - "receivingTouchdowns40Plus": 0.050961459, - "receivingTouchdowns50Plus": 0.033303314, + "receivingTouchdowns40Plus": 0.009688408, + "receivingTouchdowns50Plus": 0.000299641, "receivingYards": 16.92731089, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.079971474935713, "rushing2PtConversions": 0.01116216, "rushingAttempts": 8.447701982, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.002937962, + "rushingGame200PlusYards": 0.000100261, "rushingTouchdowns": 0.206452262, "rushingTouchdowns40Plus": 0.015568107, "rushingTouchdowns50Plus": 0.010897675, "rushingYards": 34.03780145, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.029237954005277, - "turnovers": 0.034449472, + "totalTurnovers": 0.034449472, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20795,13 +25574,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 230, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 8.214285714285714, "rushing2PtConversions": 1, "rushingAttempts": 87, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 13, "rushingTouchdowns": 3, "rushingYards": 364, + "rushingYardsPer10Yards": 31, + "rushingYardsPer20Yards": 13, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 67, "rushingYardsPerAttempt": 4.183908045977011, - "turnovers": 1, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -20842,11 +25634,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 48.98007157, "receivingTargets": 72.83282214, "receivingTouchdowns": 2.056671566, - "receivingTouchdowns40Plus": 0.182143366, - "receivingTouchdowns50Plus": 0.11903069, + "receivingTouchdowns40Plus": 0.662934613, + "receivingTouchdowns50Plus": 0.020503132, "receivingYards": 587.7547607, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 11.99987549752778, - "turnovers": 0.414755752, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.414755752, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20858,10 +25658,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 651, "receivingYardsAfterCatch": 49, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 124, "receivingYardsPerReception": 10.5, + "receptionsPer5Receptions": 9, "rushingAttempts": 1, "rushingYards": 13, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 13, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -20901,11 +25711,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.96454716, "receivingTargets": 25.40861157, "receivingTouchdowns": 1.448570827, - "receivingTouchdowns40Plus": 0.077152107, - "receivingTouchdowns50Plus": 0.050418902, + "receivingTouchdowns40Plus": 0.063120247, + "receivingTouchdowns50Plus": 0.00195, "receivingYards": 167.4764429, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 9.8721434365714, - "turnovers": 0.112640167, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.112640167, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20915,10 +25733,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20, "receivingTargets": 30, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 258, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 12.9, + "receptionsPer5Receptions": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -20958,11 +25782,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.34209427, "receivingTargets": 65.99673919, "receivingTouchdowns": 4.701218229, - "receivingTouchdowns40Plus": 0.10999261, - "receivingTouchdowns50Plus": 0.071880171, + "receivingTouchdowns40Plus": 0.366188386, + "receivingTouchdowns50Plus": 0.011325414, "receivingYards": 472.2279177, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 10.190042662912221, - "turnovers": 0.327408102, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.327408102, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20973,7 +25805,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 400, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 11.428571428571429, + "receptionsPer5Receptions": 2, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -21011,20 +25851,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 558.1654017, "passingCompletionPercentage": 0.617156428, "passingCompletions": 344.4753656, + "passingCompletionsPer10Completions": 34, + "passingCompletionsPer5Completions": 68, "passingIncompletions": 213.6900361, + "passingIncompletionsPer10Incompletions": 21, + "passingIncompletionsPer5Incompletions": 42, "passingInterceptions": 11.1426921, "passingTouchdowns": 23.95028746, "passingTouchdowns40Plus": 3.388552723, "passingTouchdowns50Plus": 2.214419205, "passingYards": 4011.280054, + "passingYards300To399": 3.636446752, + "passingYards400Plus": 0.491188608, + "passingYardsPer100Yards": 40, + "passingYardsPer10Yards": 401, + "passingYardsPer20Yards": 200, + "passingYardsPer25Yards": 160, + "passingYardsPer50Yards": 80, + "passingYardsPer5Yards": 802, "rushing2PtConversions": 0.030460188, "rushingAttempts": 44.00031111, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.064181652, + "rushingGame200PlusYards": 0.002190274, "rushingTouchdowns": 1.390578938, "rushingTouchdowns40Plus": 0.082745508, "rushingTouchdowns50Plus": 0.057921856, "rushingYards": 154.2292518, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 15, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 30, "rushingYardsPerAttempt": 3.505185484130546, - "turnovers": 14.42408318, + "totalTurnovers": 14.42408318, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21034,14 +25896,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 365, "passingCompletionPercentage": 0.6191780821917808, "passingCompletions": 226, + "passingCompletionsPer10Completions": 18, + "passingCompletionsPer5Completions": 41, "passingIncompletions": 139, + "passingIncompletionsPer10Incompletions": 8, + "passingIncompletionsPer5Incompletions": 23, "passingInterceptions": 11, "passingTouchdowns": 21, "passingYards": 2566, + "passingYards300To399": 2, + "passingYardsPer100Yards": 21, + "passingYardsPer10Yards": 252, + "passingYardsPer20Yards": 124, + "passingYardsPer25Yards": 98, + "passingYardsPer50Yards": 46, + "passingYardsPer5Yards": 509, "rushingAttempts": 16, "rushingYards": 99, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 6.1875, - "turnovers": 11, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 11, "usesPoints": false, }, }, @@ -21084,11 +25963,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7, "receivingTargets": 10, "receivingYards": 56, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 8, "rushingAttempts": 55, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, "rushingTouchdowns": 3, "rushingYards": 265, + "rushingYardsPer10Yards": 23, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 50, "rushingYardsPerAttempt": 4.818181818181818, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -21128,11 +26020,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.24849362, "receivingTargets": 70.45933005, "receivingTouchdowns": 3.109994986, - "receivingTouchdowns40Plus": 0.160203228, - "receivingTouchdowns50Plus": 0.104692809, + "receivingTouchdowns40Plus": 0.554515399, + "receivingTouchdowns50Plus": 0.017149961, "receivingYards": 551.0893052, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 55, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 110, "receivingYardsPerReception": 13.043998921162009, - "turnovers": 0.280518974, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.280518974, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21143,7 +26043,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 343, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 29, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 64, "receivingYardsPerReception": 10.088235294117647, + "receptionsPer5Receptions": 2, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -21184,11 +26092,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 72.67545862, "receivingTargets": 109.9216105, "receivingTouchdowns": 4.114201458, - "receivingTouchdowns40Plus": 0.216053216, - "receivingTouchdowns50Plus": 0.141190776, + "receivingTouchdowns40Plus": 2.267907037, + "receivingTouchdowns50Plus": 0.0701, "receivingYards": 925.3340315, + "receivingYardsPer100Yards": 9, + "receivingYardsPer10Yards": 92, + "receivingYardsPer20Yards": 46, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 185, "receivingYardsPerReception": 12.732414064812682, - "turnovers": 0.330405593, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, + "totalTurnovers": 0.330405593, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21199,7 +26115,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 286, "receivingYardsAfterCatch": 41, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 11.916666666666666, + "receptionsPer5Receptions": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -21241,18 +26165,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 40.23668311, "receivingTargets": 49.78258356, "receivingTouchdowns": 1.836965104, - "receivingTouchdowns40Plus": 0.076653777, - "receivingTouchdowns50Plus": 0.050093243, + "receivingTouchdowns40Plus": 0.155986075, + "receivingTouchdowns50Plus": 0.004824312, "receivingYards": 327.4194411, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 65, "receivingYardsPerReception": 8.137336773135422, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.104457281, "rushingAttempts": 84.82099191, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 16, + "rushingGame100To199Yards": 0.378609818, + "rushingGame200PlusYards": 0.012920501, "rushingTouchdowns": 2.65600361, "rushingTouchdowns40Plus": 0.163403309, "rushingTouchdowns50Plus": 0.114382316, "rushingYards": 367.4313074, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 18, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 73, "rushingYardsPerAttempt": 4.331844029716912, - "turnovers": 0.427790788, + "totalTurnovers": 0.427790788, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21265,11 +26207,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 40, "receivingYards": 235, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 9.4, + "receptionsPer5Receptions": 2, "rushingAttempts": 41, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 188, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 34, "rushingYardsPerAttempt": 4.585365853658536, + "teamLoss": 5, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -21313,18 +26270,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.04567495, "receivingTargets": 28.18973835, "receivingTouchdowns": 1.504590716, - "receivingTouchdowns40Plus": 0.104822521, - "receivingTouchdowns50Plus": 0.068501518, + "receivingTouchdowns40Plus": 0.088260279, + "receivingTouchdowns50Plus": 0.002729699, "receivingYards": 199.0393437, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 10.450632189330733, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.011538051, "rushingAttempts": 17.66363806, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.050628077, + "rushingGame200PlusYards": 0.001727742, "rushingTouchdowns": 0.474572992, "rushingTouchdowns40Plus": 0.032725199, "rushingTouchdowns50Plus": 0.022907639, "rushingYards": 136.9560309, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 27, "rushingYardsPerAttempt": 7.7535573608781245, - "turnovers": 0.137717165, + "totalTurnovers": 0.137717165, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21338,15 +26313,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21, "receivingTargets": 28, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 247, "receivingYardsAfterCatch": 46, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 11.761904761904763, "rushingAttempts": 42, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 228, + "rushingYardsPer10Yards": 19, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 42, "rushingYardsPerAttempt": 5.428571428571429, + "teamLoss": 5, + "teamWin": 11, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -21387,11 +26375,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27.88235474, "receivingTargets": 52.04350242, "receivingTouchdowns": 2.108817476, - "receivingTouchdowns40Plus": 0.141821066, - "receivingTouchdowns50Plus": 0.092680067, + "receivingTouchdowns40Plus": 0.234822897, + "receivingTouchdowns50Plus": 0.007262564, "receivingYards": 395.4395601, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 39, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 14.18243056540353, - "turnovers": 0.163478653, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.163478653, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21405,8 +26401,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 32, "receivingYards": 174, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 12.428571428571429, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -21446,11 +26449,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.46216384, "receivingTargets": 54.01539058, "receivingTouchdowns": 2.38918584, - "receivingTouchdowns40Plus": 0.085821489, - "receivingTouchdowns50Plus": 0.056084343, + "receivingTouchdowns40Plus": 0.252994088, + "receivingTouchdowns50Plus": 0.00782, "receivingYards": 376.5059304, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 75, "receivingYardsPerReception": 10.617116657030255, - "turnovers": 0.235459515, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.235459515, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21459,8 +26470,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 163, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 12.538461538461538, "rushingAttempts": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -21510,6 +26527,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedExtraPoints": 1, "missedFieldGoals": 1, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 2, + "teamWin": 10, "usesPoints": false, }, }, @@ -21552,11 +26571,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.27855243, "receivingTargets": 32.74395603, "receivingTouchdowns": 1.4603501, - "receivingTouchdowns40Plus": 0.114224156, - "receivingTouchdowns50Plus": 0.074645486, + "receivingTouchdowns40Plus": 0.091537604, + "receivingTouchdowns50Plus": 0.00283, "receivingYards": 236.3997194, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 12.262316906747131, - "turnovers": 0.117416533, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.117416533, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21570,8 +26597,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 5, "receivingYards": 334, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 60, "receivingYardsPerReception": 10.4375, - "turnovers": 2, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -21607,10 +26642,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.571535018, "defensiveForcedFumbles": 9.962152742, "defensiveFumbles": 6.475399282, + "defensiveHalfSacks": 92, "defensiveInterceptions": 12.02011605, "defensivePointsAllowed": 358.2370007, "defensiveSacks": 46.3219737, "defensiveSafeties": 0.374383038, + "defensiveStuffs": 52.84089406, "defensiveYardsAllowed": 5712.1446, "fumbleReturnTouchdown": 1.18914369, "interceptionReturnTouchdown": 0.910527567, @@ -21618,6 +26655,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 750.1326724, "puntReturnTouchdown": 0.2627934, "puntReturnYards": 359.3331121, + "totalReturnTouchdowns": 2.590445004, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21638,15 +26676,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 10, "defensiveFumbles": 8, + "defensiveHalfSacks": 88, "defensiveInterceptions": 7, "defensivePointsAllowed": 392, "defensiveSacks": 44, "defensiveSoloTackles": 760, + "defensiveStuffs": 38, + "defensiveTacklesPer3Tackles": 337, + "defensiveTacklesPer5Tackles": 200, "defensiveTotalTackles": 1028, "defensiveYardsAllowed": 5670, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 644, "puntReturnYards": 198, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -21716,6 +26759,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingTouchdowns": 1, "passingYards": 2, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -21753,20 +26799,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 546.8570021, "passingCompletionPercentage": 0.628783764, "passingCompletions": 343.8548041, + "passingCompletionsPer10Completions": 34, + "passingCompletionsPer5Completions": 68, "passingIncompletions": 203.00219800000002, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 40, "passingInterceptions": 11.48930733, "passingTouchdowns": 18.27386867, "passingTouchdowns40Plus": 2.844837978, "passingTouchdowns50Plus": 1.859101619, "passingYards": 3540.293524, + "passingYards300To399": 2.725274551, + "passingYards400Plus": 0.368113135, + "passingYardsPer100Yards": 35, + "passingYardsPer10Yards": 354, + "passingYardsPer20Yards": 177, + "passingYardsPer25Yards": 141, + "passingYardsPer50Yards": 70, + "passingYardsPer5Yards": 708, "rushing2PtConversions": 0.036249304, "rushingAttempts": 24.82160089, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.005888826, + "rushingGame200PlusYards": 0.000200963, "rushingTouchdowns": 1.212797286, "rushingTouchdowns40Plus": 0.046217373, "rushingTouchdowns50Plus": 0.032352161, "rushingYards": 45.9822135, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 1.852507970931282, - "turnovers": 14.75971694, + "totalTurnovers": 14.75971694, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21775,14 +26841,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 379, "passingCompletionPercentage": 0.6121372031662269, "passingCompletions": 232, + "passingCompletionsPer10Completions": 19, + "passingCompletionsPer5Completions": 43, "passingIncompletions": 147, + "passingIncompletionsPer10Incompletions": 10, + "passingIncompletionsPer5Incompletions": 25, "passingInterceptions": 6, "passingTouchdowns": 12, "passingYards": 2465, + "passingYards300To399": 2, + "passingYardsPer100Yards": 19, + "passingYardsPer10Yards": 241, + "passingYardsPer20Yards": 117, + "passingYardsPer25Yards": 95, + "passingYardsPer50Yards": 44, + "passingYardsPer5Yards": 489, "rushingAttempts": 19, "rushingYards": 45, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.3684210526315788, - "turnovers": 7, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 7, "usesPoints": false, }, }, @@ -21822,18 +26903,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.85372028, "receivingTargets": 20.17118925, "receivingTouchdowns": 0.599198074, - "receivingTouchdowns40Plus": 0.050894214, - "receivingTouchdowns50Plus": 0.033259369, + "receivingTouchdowns40Plus": 0.049210573, + "receivingTouchdowns50Plus": 0.001521976, "receivingYards": 120.2804649, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 8.097665947160277, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.08732439, "rushingAttempts": 113.0008553, + "rushingAttemptsPer10Attempts": 11, + "rushingAttemptsPer5Attempts": 22, + "rushingGame100To199Yards": 0.604003851, + "rushingGame200PlusYards": 0.020612334, "rushingTouchdowns": 2.732877102, "rushingTouchdowns40Plus": 0.221270332, "rushingTouchdowns50Plus": 0.154889232, "rushingYards": 460.783881, + "rushingYardsPer100Yards": 4, + "rushingYardsPer10Yards": 46, + "rushingYardsPer20Yards": 23, + "rushingYardsPer25Yards": 18, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 92, "rushingYardsPerAttempt": 4.077702595937785, - "turnovers": 0.568188773, + "totalTurnovers": 0.568188773, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21844,12 +26943,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 17, "receivingYards": 85, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 5.3125, "rushingAttempts": 60, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 8, "rushingTouchdowns": 1, "rushingYards": 336, + "rushingYardsPer10Yards": 29, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 63, "rushingYardsPerAttempt": 5.6, - "turnovers": 2, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -21898,6 +27010,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 5, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -21937,13 +27052,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveSoloTackles": 2, + "defensiveStuffs": 0.5, "defensiveTotalTackles": 3, "receivingReceptions": 8, "receivingTargets": 11, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 103, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 12.875, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -21984,18 +27107,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39.01161302, "receivingTargets": 66.6797544, "receivingTouchdowns": 2.849564107, - "receivingTouchdowns40Plus": 0.164427311, - "receivingTouchdowns50Plus": 0.107453248, + "receivingTouchdowns40Plus": 0.485677421, + "receivingTouchdowns50Plus": 0.015020951, "receivingYards": 524.7246497, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 52, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 104, "receivingYardsPerReception": 13.45047305352359, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.004530947, "rushingAttempts": 8.249806678, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.006827946, + "rushingGame200PlusYards": 0.000233, "rushingTouchdowns": 0.238349461, "rushingTouchdowns40Plus": 0.015201719, "rushingTouchdowns50Plus": 0.010641203, "rushingYards": 51.16726632, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6.202238224133087, - "turnovers": 0.268463688, + "totalTurnovers": 0.268463688, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22006,10 +27145,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 37, "receivingTargets": 56, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 466, "receivingYardsAfterCatch": 72, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 41, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 87, "receivingYardsPerReception": 12.594594594594595, - "turnovers": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22053,18 +27202,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.42122031, "receivingTargets": 40.47843012, "receivingTouchdowns": 0.854669223, - "receivingTouchdowns40Plus": 0.050106866, - "receivingTouchdowns50Plus": 0.032744837, + "receivingTouchdowns40Plus": 0.093449417, + "receivingTouchdowns50Plus": 0.002890188, "receivingYards": 240.3934207, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 8.17074948513582, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.07559679, "rushingAttempts": 54.91006289, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 0.166972154, + "rushingGame200PlusYards": 0.005698119, "rushingTouchdowns": 1.398217608, "rushingTouchdowns40Plus": 0.103903319, "rushingTouchdowns50Plus": 0.072732323, "rushingYards": 247.6523804, + "rushingYardsPer100Yards": 2, + "rushingYardsPer10Yards": 24, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 9, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 49, "rushingYardsPerAttempt": 4.51014563389075, - "turnovers": 0.341766612, + "totalTurnovers": 0.341766612, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22077,11 +27244,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 160, "receivingYardsAfterCatch": 34, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 10.666666666666666, "rushingAttempts": 29, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 120, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 4.137931034482759, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -22119,20 +27298,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 571.2261538, "passingCompletionPercentage": 0.639352813, "passingCompletions": 365.2150484, + "passingCompletionsPer10Completions": 36, + "passingCompletionsPer5Completions": 73, "passingIncompletions": 206.01110540000002, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 41, "passingInterceptions": 14.03560094, "passingTouchdowns": 22.66771109, "passingTouchdowns40Plus": 3.613651504, "passingTouchdowns50Plus": 2.361521258, "passingYards": 4151.809397, + "passingYards300To399": 4.164616473, + "passingYards400Plus": 0.562530488, + "passingYardsPer100Yards": 41, + "passingYardsPer10Yards": 415, + "passingYardsPer20Yards": 207, + "passingYardsPer25Yards": 166, + "passingYardsPer50Yards": 83, + "passingYardsPer5Yards": 830, "rushing2PtConversions": 0.0471, "rushingAttempts": 41.27945153, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.0939, + "rushingGame200PlusYards": 0.00321, "rushingTouchdowns": 1.414385821, "rushingTouchdowns40Plus": 0.0775, "rushingTouchdowns50Plus": 0.0543, "rushingYards": 186.1103669, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 18, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 37, "rushingYardsPerAttempt": 4.508547473426181, - "turnovers": 18.45586381, + "totalTurnovers": 18.45586381, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22143,21 +27344,38 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 274, "passingCompletionPercentage": 0.6423357664233577, "passingCompletions": 176, + "passingCompletionsPer10Completions": 13, + "passingCompletionsPer5Completions": 32, "passingIncompletions": 98, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 15, "passingInterceptions": 9, "passingTouchdowns": 17, "passingTouchdowns40Plus": 4, "passingTouchdowns50Plus": 4, "passingYards": 1979, + "passingYardsPer100Yards": 15, + "passingYardsPer10Yards": 192, + "passingYardsPer20Yards": 95, + "passingYardsPer25Yards": 74, + "passingYardsPer50Yards": 34, + "passingYardsPer5Yards": 392, "receivingReceptions": 1, "receivingTargets": 1, "receivingTouchdowns": 1, "receivingYards": 3, "receivingYardsPerReception": 3, "rushingAttempts": 32, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 145, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 25, "rushingYardsPerAttempt": 4.53125, - "turnovers": 13, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 13, "usesPoints": false, }, }, @@ -22197,18 +27415,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.953776028, "receivingTargets": 2.659120827, "receivingTouchdowns": 0.073307585, - "receivingTouchdowns40Plus": 0.045639438, - "receivingTouchdowns50Plus": 0.029825373, + "receivingTouchdowns40Plus": 0.008874556, + "receivingTouchdowns50Plus": 0.000274471, "receivingYards": 15.40877911, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.886666070815359, "rushing2PtConversions": 0.010829305, "rushingAttempts": 20.54966002, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.017984147, + "rushingGame200PlusYards": 0.00061373, "rushingTouchdowns": 0.608595111, "rushingTouchdowns40Plus": 0.038134608, "rushingTouchdowns50Plus": 0.026694225, "rushingYards": 82.2103992, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.0005722294183235, - "turnovers": 0.141478705, + "totalTurnovers": 0.141478705, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22219,10 +27448,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingTouchdowns": 1, "receivingYards": 52, + "receivingYardsPer10Yards": 3, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 10.4, "rushingAttempts": 43, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 6, "rushingYards": 212, + "rushingYardsPer10Yards": 17, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 40, "rushingYardsPerAttempt": 4.930232558139535, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -22260,20 +27500,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 533.4764313, "passingCompletionPercentage": 0.606567169, "passingCompletions": 323.5892884, + "passingCompletionsPer10Completions": 32, + "passingCompletionsPer5Completions": 64, "passingIncompletions": 209.88714289999996, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 41, "passingInterceptions": 12.32295036, "passingTouchdowns": 20.08172212, "passingTouchdowns40Plus": 3.008822787, "passingTouchdowns50Plus": 1.966265691, "passingYards": 3761.610928, + "passingYards300To399": 2.858390215, + "passingYards400Plus": 0.38609357, + "passingYardsPer100Yards": 37, + "passingYardsPer10Yards": 376, + "passingYardsPer20Yards": 188, + "passingYardsPer25Yards": 150, + "passingYardsPer50Yards": 75, + "passingYardsPer5Yards": 752, "rushing2PtConversions": 0.075366411, "rushingAttempts": 58.31539393, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.301259887, + "rushingGame200PlusYards": 0.010280844, "rushingTouchdowns": 2.538949871, "rushingTouchdowns40Plus": 0.110550755, "rushingTouchdowns50Plus": 0.077385529, "rushingYards": 332.6550013, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 33, + "rushingYardsPer20Yards": 16, + "rushingYardsPer25Yards": 13, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 66, "rushingYardsPerAttempt": 5.704411457792925, - "turnovers": 16.74227343, + "totalTurnovers": 16.74227343, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22284,17 +27546,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 403, "passingCompletionPercentage": 0.6029776674937966, "passingCompletions": 243, + "passingCompletionsPer10Completions": 18, + "passingCompletionsPer5Completions": 44, "passingIncompletions": 160, + "passingIncompletionsPer10Incompletions": 10, + "passingIncompletionsPer5Incompletions": 27, "passingInterceptions": 11, "passingTouchdowns": 13, "passingTouchdowns40Plus": 3, "passingTouchdowns50Plus": 3, "passingYards": 2718, + "passingYards300To399": 3, + "passingYards400Plus": 1, + "passingYardsPer100Yards": 21, + "passingYardsPer10Yards": 265, + "passingYardsPer20Yards": 130, + "passingYardsPer25Yards": 104, + "passingYardsPer50Yards": 48, + "passingYardsPer5Yards": 539, "rushingAttempts": 58, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 365, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 9, + "rushingYardsPer5Yards": 68, "rushingYardsPerAttempt": 6.293103448275862, - "turnovers": 15, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 15, "usesPoints": false, }, }, @@ -22335,11 +27616,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.85355293, "receivingTargets": 18.3236869, "receivingTouchdowns": 0.91796897, - "receivingTouchdowns40Plus": 0.114929312, - "receivingTouchdowns50Plus": 0.075106306, + "receivingTouchdowns40Plus": 0.052413267, + "receivingTouchdowns50Plus": 0.001621029, "receivingYards": 132.5865554, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 12.215958797558471, - "turnovers": 0.063636096, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.063636096, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22350,8 +27639,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 572, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 14.666666666666666, - "turnovers": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22391,18 +27689,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39.37001493, "receivingTargets": 50.42272302, "receivingTouchdowns": 1.074924642, - "receivingTouchdowns40Plus": 0.041979466, - "receivingTouchdowns50Plus": 0.027433581, + "receivingTouchdowns40Plus": 0.120436987, + "receivingTouchdowns50Plus": 0.003724855, "receivingYards": 285.158306, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 57, "receivingYardsPerReception": 7.2430327117480715, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.062620119, "rushingAttempts": 76.78696008, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 15, + "rushingGame100To199Yards": 0.257398742, + "rushingGame200PlusYards": 0.008784032, "rushingTouchdowns": 2.104622573, "rushingTouchdowns40Plus": 0.14708493, "rushingTouchdowns50Plus": 0.102959451, "rushingYards": 307.0850155, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 61, "rushingYardsPerAttempt": 3.999181829571915, - "turnovers": 0.357879818, + "totalTurnovers": 0.357879818, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22416,12 +27732,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 196, "receivingYardsAfterCatch": 66, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 5.6, + "receptionsPer5Receptions": 4, "rushingAttempts": 41, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 3, "rushingYards": 110, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 2.682926829268293, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22461,18 +27790,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.99698326, "receivingTargets": 48.17149158, "receivingTouchdowns": 0.961142509, - "receivingTouchdowns40Plus": 0.043913556, - "receivingTouchdowns50Plus": 0.028697509, + "receivingTouchdowns40Plus": 0.115710261, + "receivingTouchdowns50Plus": 0.003578668, "receivingYards": 275.5146231, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 7.446948340728038, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.106086988, "rushingAttempts": 127.0691215, + "rushingAttemptsPer10Attempts": 12, + "rushingAttemptsPer5Attempts": 25, + "rushingGame100To199Yards": 0.870980622, + "rushingGame200PlusYards": 0.029723227, "rushingTouchdowns": 3.565578299, "rushingTouchdowns40Plus": 0.250961964, "rushingTouchdowns50Plus": 0.175673375, "rushingYards": 551.4139245, + "rushingYardsPer100Yards": 5, + "rushingYardsPer10Yards": 55, + "rushingYardsPer20Yards": 27, + "rushingYardsPer25Yards": 22, + "rushingYardsPer50Yards": 11, + "rushingYardsPer5Yards": 110, "rushingYardsPerAttempt": 4.339480103354615, - "turnovers": 0.607222395, + "totalTurnovers": 0.607222395, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22484,11 +27831,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 18, "receivingTouchdowns": 1, "receivingYards": 110, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 10, + "receptionsPer5Receptions": 1, "rushingAttempts": 80, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 14, "rushingYards": 343, + "rushingYardsPer10Yards": 31, + "rushingYardsPer20Yards": 14, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 66, "rushingYardsPerAttempt": 4.2875, - "turnovers": 1, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22529,24 +27891,39 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52.18444305, "receivingTargets": 87.39467987, "receivingTouchdowns": 3.550949463, - "receivingTouchdowns40Plus": 0.21948633, - "receivingTouchdowns50Plus": 0.143434317, + "receivingTouchdowns40Plus": 1.24323967, + "receivingTouchdowns50Plus": 0.038450711, "receivingYards": 738.6105616, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 73, + "receivingYardsPer20Yards": 36, + "receivingYardsPer25Yards": 29, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 147, "receivingYardsPerReception": 14.153845828963005, - "turnovers": 0.214175946, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.214175946, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 20, "receivingTargets": 35, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, "receivingYards": 262, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 50, "receivingYardsPerReception": 13.1, "rushingAttempts": 2, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4.5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -22584,20 +27961,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 565.3864317, "passingCompletionPercentage": 0.645001742, "passingCompletions": 364.6752336, + "passingCompletionsPer10Completions": 36, + "passingCompletionsPer5Completions": 72, "passingIncompletions": 200.7111981, + "passingIncompletionsPer10Incompletions": 20, + "passingIncompletionsPer5Incompletions": 40, "passingInterceptions": 8.275407051, "passingTouchdowns": 24.7939616, "passingTouchdowns40Plus": 3.679979151, "passingTouchdowns50Plus": 2.404866375, "passingYards": 4194.163184, + "passingYards300To399": 4.31019156, + "passingYards400Plus": 0.582193866, + "passingYardsPer100Yards": 41, + "passingYardsPer10Yards": 419, + "passingYardsPer20Yards": 209, + "passingYardsPer25Yards": 167, + "passingYardsPer50Yards": 83, + "passingYardsPer5Yards": 838, "rushing2PtConversions": 0.037351587, "rushingAttempts": 57.02867682, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.245041225, + "rushingGame200PlusYards": 0.008362317, "rushingTouchdowns": 1.67362491, "rushingTouchdowns40Plus": 0.108033153, "rushingTouchdowns50Plus": 0.075623207, "rushingYards": 300.2385825, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 60, "rushingYardsPerAttempt": 5.264694873557124, - "turnovers": 11.28927956, + "totalTurnovers": 11.28927956, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22608,16 +28007,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 328, "passingCompletionPercentage": 0.625, "passingCompletions": 205, + "passingCompletionsPer10Completions": 18, + "passingCompletionsPer5Completions": 37, "passingIncompletions": 123, + "passingIncompletionsPer10Incompletions": 7, + "passingIncompletionsPer5Incompletions": 21, "passingInterceptions": 5, "passingTouchdowns": 10, "passingTouchdowns40Plus": 1, "passingYards": 2180, + "passingYards300To399": 1, + "passingYardsPer100Yards": 16, + "passingYardsPer10Yards": 213, + "passingYardsPer20Yards": 103, + "passingYardsPer25Yards": 84, + "passingYardsPer50Yards": 39, + "passingYardsPer5Yards": 433, "rushingAttempts": 41, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 168, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 29, "rushingYardsPerAttempt": 4.097560975609756, - "turnovers": 6, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 6, "usesPoints": false, }, }, @@ -22660,11 +28077,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.06540751, "receivingTargets": 44.51360255, "receivingTouchdowns": 2.074632641, - "receivingTouchdowns40Plus": 0.19880741, - "receivingTouchdowns50Plus": 0.129920642, + "receivingTouchdowns40Plus": 0.256826256, + "receivingTouchdowns50Plus": 0.00794308, "receivingYards": 366.490824, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 73, "receivingYardsPerReception": 14.621379040168653, - "turnovers": 0.157109754, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.157109754, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22675,10 +28100,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 290, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 9.0625, + "receptionsPer5Receptions": 3, "rushingAttempts": 4, "rushingYards": 29, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 7.25, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -22719,11 +28154,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43.97889213, "receivingTargets": 66.00839789, "receivingTouchdowns": 3.427029093, - "receivingTouchdowns40Plus": 0.232525463, - "receivingTouchdowns50Plus": 0.15195539, + "receivingTouchdowns40Plus": 0.602413163, + "receivingTouchdowns50Plus": 0.018631335, "receivingYards": 565.83994, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 113, "receivingYardsPerReception": 12.866170851402936, - "turnovers": 0.393333622, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.393333622, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22734,8 +28177,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 114, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 12.666666666666666, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22773,12 +28224,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.015750234, "rushing2PtConversions": 0.002843005, "rushingAttempts": 3.633648226, + "rushingGame100To199Yards": 0.000440006, + "rushingGame200PlusYards": 0.0000150157, "rushingTouchdowns": 0.12581516, "rushingTouchdowns40Plus": 0.006677809, "rushingTouchdowns50Plus": 0.004674467, "rushingYards": 14.05451253, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.867879237575927, - "turnovers": 0.015750234, + "totalTurnovers": 0.015750234, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22788,10 +28243,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingTouchdowns": 1, "receivingYards": 27, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 9, "rushingAttempts": 13, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 44, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 3.3846153846153846, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -22834,11 +28299,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.208511986, "receivingTargets": 5.462167492, "receivingTouchdowns": 0.236139642, - "receivingTouchdowns40Plus": 0.126094342, - "receivingTouchdowns50Plus": 0.082402652, + "receivingTouchdowns40Plus": 0.021029485, + "receivingTouchdowns50Plus": 0.000650396, "receivingYards": 40.34350156, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.573897724563464, - "turnovers": 0.018812013, + "totalTurnovers": 0.018812013, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22849,8 +28318,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingTouchdowns": 1, "receivingYards": 75, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 8.333333333333334, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -22914,6 +28390,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFromUnder40": 3, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -22948,10 +28426,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.349164168, "defensiveForcedFumbles": 17.75624038, "defensiveFumbles": 11.54155625, + "defensiveHalfSacks": 77, "defensiveInterceptions": 9.45039005, "defensivePointsAllowed": 381.0251564, "defensiveSacks": 38.83125705, "defensiveSafeties": 0.351, + "defensiveStuffs": 61.09546919, "defensiveYardsAllowed": 5553.288648, "fumbleReturnTouchdown": 0.961626966, "interceptionReturnTouchdown": 1.592937029, @@ -22959,6 +28439,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.3318486, "puntReturnYards": 268.8257721, + "totalReturnTouchdowns": 3.209855923, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22976,15 +28457,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 13, "defensiveFumbles": 9, + "defensiveHalfSacks": 98, "defensiveInterceptions": 7, "defensivePointsAllowed": 399, "defensiveSacks": 49, "defensiveSoloTackles": 858, + "defensiveStuffs": 65, + "defensiveTacklesPer3Tackles": 364, + "defensiveTacklesPer5Tackles": 214, "defensiveTotalTackles": 1104, "defensiveYardsAllowed": 5741, "interceptionReturnTouchdown": 2, "kickoffReturnYards": 536, "puntReturnYards": 295, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -23047,6 +28533,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 2, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -23086,16 +28574,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 274, "passingCompletionPercentage": 0.6423357664233577, "passingCompletions": 176, + "passingCompletionsPer10Completions": 15, + "passingCompletionsPer5Completions": 33, "passingIncompletions": 98, + "passingIncompletionsPer10Incompletions": 6, + "passingIncompletionsPer5Incompletions": 16, "passingInterceptions": 10, "passingTouchdowns": 13, "passingTouchdowns40Plus": 4, "passingTouchdowns50Plus": 2, "passingYards": 2277, + "passingYards300To399": 1, + "passingYards400Plus": 1, + "passingYardsPer100Yards": 19, + "passingYardsPer10Yards": 226, + "passingYardsPer20Yards": 111, + "passingYardsPer25Yards": 88, + "passingYardsPer50Yards": 42, + "passingYardsPer5Yards": 453, "rushingAttempts": 18, + "rushingAttemptsPer5Attempts": 1, "rushingYards": -16, "rushingYardsPerAttempt": -0.8888888888888888, - "turnovers": 10, + "teamLoss": 10, + "teamWin": 3, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -23137,7 +28640,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 39, "receivingTouchdowns": 3, "receivingYards": 304, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 58, "receivingYardsPerReception": 10.857142857142858, + "receptionsPer5Receptions": 2, + "teamLoss": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -23177,18 +28688,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.36716791, "receivingTargets": 20.861994, "receivingTouchdowns": 0.34550454, - "receivingTouchdowns40Plus": 0.044488601, - "receivingTouchdowns50Plus": 0.029073301, + "receivingTouchdowns40Plus": 0.048593572, + "receivingTouchdowns50Plus": 0.001502894, "receivingYards": 119.7506968, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 7.792632806600212, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.068397557, "rushingAttempts": 91.94190806, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 18, + "rushingGame100To199Yards": 0.366400075, + "rushingGame200PlusYards": 0.012503829, "rushingTouchdowns": 3.361542337, "rushingTouchdowns40Plus": 0.177614456, "rushingTouchdowns50Plus": 0.124330119, "rushingYards": 365.7206423, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 18, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 73, "rushingYardsPerAttempt": 3.977736051130632, - "turnovers": 0.633354189, + "totalTurnovers": 0.633354189, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23198,11 +28727,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13, "receivingTargets": 21, "receivingYards": 205, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 15.76923076923077, "rushingAttempts": 115, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 18, "rushingTouchdowns": 1, "rushingYards": 385, + "rushingYardsPer10Yards": 33, + "rushingYardsPer20Yards": 14, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 72, "rushingYardsPerAttempt": 3.347826086956522, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -23242,22 +28785,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.12161935, "receivingTargets": 17.35604376, "receivingTouchdowns": 0.399009735, - "receivingTouchdowns40Plus": 0.057398619, - "receivingTouchdowns50Plus": 0.037509997, + "receivingTouchdowns40Plus": 0.044657947, + "receivingTouchdowns50Plus": 0.001381174, "receivingYards": 106.6018383, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 8.124137384003598, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.020270529, "rushingAttempts": 23.66899484, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.022602595, + "rushingGame200PlusYards": 0.00077134, "rushingTouchdowns": 0.918889028, "rushingTouchdowns40Plus": 0.04400246, "rushingTouchdowns50Plus": 0.030801722, "rushingYards": 91.90082128, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 3.882751333600781, - "turnovers": 0.171835221, + "totalTurnovers": 0.171835221, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 6, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 6, "fumbles": 1, "lostFumbles": 1, @@ -23265,14 +28826,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 25, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 4.166666666666667, "rushingAttempts": 34, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 261, + "rushingYardsPer10Yards": 23, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 50, "rushingYardsPerAttempt": 7.676470588235294, - "turnovers": 1, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -23310,20 +28882,39 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 114.0674266, "passingCompletionPercentage": 0.602832055, "passingCompletions": 68.76350114, + "passingCompletionsPer10Completions": 6, + "passingCompletionsPer5Completions": 13, "passingIncompletions": 45.30392546, + "passingIncompletionsPer10Incompletions": 4, + "passingIncompletionsPer5Incompletions": 9, "passingInterceptions": 3.691168091, "passingTouchdowns": 4.61032649, "passingTouchdowns40Plus": 0.77374076, "passingTouchdowns50Plus": 0.505639587, "passingYards": 820.8447269, + "passingYards300To399": 0.90557675, + "passingYards400Plus": 0.122319674, + "passingYardsPer100Yards": 8, + "passingYardsPer10Yards": 82, + "passingYardsPer20Yards": 41, + "passingYardsPer25Yards": 32, + "passingYardsPer50Yards": 16, + "passingYardsPer5Yards": 164, "rushing2PtConversions": 0.017989261, "rushingAttempts": 9.649770571, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.026738475, + "rushingGame200PlusYards": 0.000912482, "rushingTouchdowns": 0.239188113, "rushingTouchdowns40Plus": 0.018207782, "rushingTouchdowns50Plus": 0.012745448, "rushingYards": 43.65383363, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.523820883492381, - "turnovers": 4.348415022, + "totalTurnovers": 4.348415022, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23333,17 +28924,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 246, "passingCompletionPercentage": 0.6666666666666666, "passingCompletions": 164, + "passingCompletionsPer10Completions": 13, + "passingCompletionsPer5Completions": 29, "passingIncompletions": 82, + "passingIncompletionsPer10Incompletions": 4, + "passingIncompletionsPer5Incompletions": 13, "passingInterceptions": 12, "passingTouchdowns": 17, "passingTouchdowns40Plus": 5, "passingTouchdowns50Plus": 5, "passingYards": 2366, + "passingYards400Plus": 4, + "passingYardsPer100Yards": 21, + "passingYardsPer10Yards": 233, + "passingYardsPer20Yards": 115, + "passingYardsPer25Yards": 91, + "passingYardsPer50Yards": 44, + "passingYardsPer5Yards": 470, "rushingAttempts": 36, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 2, "rushingYards": 152, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 4.222222222222222, - "turnovers": 13, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 13, "usesPoints": false, }, }, @@ -23379,10 +28989,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.539661338, "defensiveForcedFumbles": 11.83425517, "defensiveFumbles": 7.692265862, + "defensiveHalfSacks": 56, "defensiveInterceptions": 10.21056726, "defensivePointsAllowed": 359.1962562, "defensiveSacks": 28.12794826, "defensiveSafeties": 0.366554163, + "defensiveStuffs": 53.16750515, "defensiveYardsAllowed": 5683.853038, "fumbleReturnTouchdown": 1.013285877, "interceptionReturnTouchdown": 1.028819128, @@ -23390,6 +29002,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 754.7143269, "puntReturnTouchdown": 0.511254275, "puntReturnYards": 275.7973013, + "totalReturnTouchdowns": 2.893681492, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23409,10 +29022,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 3, "defensiveForcedFumbles": 13, "defensiveFumbles": 7, + "defensiveHalfSacks": 78, "defensiveInterceptions": 13, "defensivePointsAllowed": 421, "defensiveSacks": 39, "defensiveSoloTackles": 782, + "defensiveStuffs": 47, + "defensiveTacklesPer3Tackles": 343, + "defensiveTacklesPer5Tackles": 199, "defensiveTotalTackles": 1040, "defensiveYardsAllowed": 6086, "fumbleReturnTouchdown": 3, @@ -23420,6 +29037,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 1238, "puntReturnTouchdown": 1, "puntReturnYards": 324, + "totalReturnTouchdowns": 5, "usesPoints": false, }, }, @@ -23459,18 +29077,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31.30407303, "receivingTargets": 40.27153036, "receivingTouchdowns": 0.912137447, - "receivingTouchdowns40Plus": 0.071177543, - "receivingTouchdowns50Plus": 0.046514524, + "receivingTouchdowns40Plus": 0.104223477, + "receivingTouchdowns50Plus": 0.003223407, "receivingYards": 260.8390344, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 8.332431187150217, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.081040522, "rushingAttempts": 94.94846694, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 18, + "rushingGame100To199Yards": 0.368457091, + "rushingGame200PlusYards": 0.012574027, "rushingTouchdowns": 2.031701066, "rushingTouchdowns40Plus": 0.183695636, "rushingTouchdowns50Plus": 0.128586945, "rushingYards": 367.5348584, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 36, + "rushingYardsPer20Yards": 18, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 73, "rushingYardsPerAttempt": 3.870887758854003, - "turnovers": 0.863849873, + "totalTurnovers": 0.863849873, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23484,12 +29120,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 51, "receivingYards": 275, "receivingYardsAfterCatch": 57, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 7.2368421052631575, + "receptionsPer5Receptions": 3, "rushingAttempts": 34, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 183, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 33, "rushingYardsPerAttempt": 5.382352941176471, - "turnovers": 1, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -23532,18 +29182,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 37.9256576, "receivingTargets": 62.54229584, "receivingTouchdowns": 2.754032684, - "receivingTouchdowns40Plus": 0.290261905, - "receivingTouchdowns50Plus": 0.189686155, + "receivingTouchdowns40Plus": 0.612856035, + "receivingTouchdowns50Plus": 0.01895431, "receivingYards": 568.7240141, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 113, "receivingYardsPerReception": 14.995758810520927, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.00520577, "rushingAttempts": 8.383765214, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.007855252, + "rushingGame200PlusYards": 0.00026807, "rushingTouchdowns": 0.261749578, "rushingTouchdowns40Plus": 0.015449673, "rushingTouchdowns50Plus": 0.010814771, "rushingYards": 54.81810883, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6.538602576615523, - "turnovers": 0.131370863, + "totalTurnovers": 0.131370863, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23557,11 +29223,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 30, "receivingTouchdowns": 2, "receivingYards": 209, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 12.294117647058824, + "receptionsPer5Receptions": 2, "rushingAttempts": 3, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 8.666666666666666, - "turnovers": 1, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -23604,18 +29281,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34.96227683, "receivingTargets": 58.71019016, "receivingTouchdowns": 2.913246036, - "receivingTouchdowns40Plus": 0.168783012, - "receivingTouchdowns50Plus": 0.110299698, + "receivingTouchdowns40Plus": 0.352201784, + "receivingTouchdowns50Plus": 0.010892839, "receivingYards": 465.1720419, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 46, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 93, "receivingYardsPerReception": 13.30496992978589, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.002800465, "rushingAttempts": 3.777070688, + "rushingGame100To199Yards": 0.001329475, + "rushingGame200PlusYards": 0.0000453699, "rushingTouchdowns": 0.087249036, "rushingTouchdowns40Plus": 0.006941996, "rushingTouchdowns50Plus": 0.004859398, "rushingYards": 23.31801393, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.173570964420351, - "turnovers": 0.223180353, + "totalTurnovers": 0.223180353, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23628,10 +29318,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 485, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 92, "receivingYardsPerReception": 9.150943396226415, + "receptionsPer5Receptions": 4, "rushingAttempts": 1, "rushingYards": -4, "rushingYardsPerAttempt": -4, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -23669,20 +29367,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 427.7342456, "passingCompletionPercentage": 0.621997559, "passingCompletions": 266.0496566, + "passingCompletionsPer10Completions": 26, + "passingCompletionsPer5Completions": 53, "passingIncompletions": 161.68458900000002, + "passingIncompletionsPer10Incompletions": 16, + "passingIncompletionsPer5Incompletions": 32, "passingInterceptions": 6.25055689, "passingTouchdowns": 19.40470222, "passingTouchdowns40Plus": 2.381044833, "passingTouchdowns50Plus": 1.556012798, "passingYards": 3007.303243, + "passingYards300To399": 2.189845904, + "passingYards400Plus": 0.295790763, + "passingYardsPer100Yards": 30, + "passingYardsPer10Yards": 300, + "passingYardsPer20Yards": 150, + "passingYardsPer25Yards": 120, + "passingYardsPer50Yards": 60, + "passingYardsPer5Yards": 601, "rushing2PtConversions": 0.069997435, "rushingAttempts": 72.41541215, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.576942281, + "rushingGame200PlusYards": 0.019688827, "rushingTouchdowns": 2.902386701, "rushingTouchdowns40Plus": 0.139636977, "rushingTouchdowns50Plus": 0.097745884, "rushingYards": 414.7478388, + "rushingYardsPer100Yards": 4, + "rushingYardsPer10Yards": 41, + "rushingYardsPer20Yards": 20, + "rushingYardsPer25Yards": 16, + "rushingYardsPer50Yards": 8, + "rushingYardsPer5Yards": 82, "rushingYardsPerAttempt": 5.727342101442421, - "turnovers": 9.050315987, + "totalTurnovers": 9.050315987, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23692,16 +29412,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 85, "passingCompletionPercentage": 0.49411764705882355, "passingCompletions": 42, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 7, "passingIncompletions": 43, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 8, "passingInterceptions": 2, "passingTouchdowns": 2, "passingTouchdowns40Plus": 1, "passingYards": 473, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 45, + "passingYardsPer20Yards": 21, + "passingYardsPer25Yards": 16, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 93, "rushingAttempts": 16, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 125, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 7.8125, - "turnovers": 2, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -23742,11 +29481,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31.9583948, "receivingTargets": 55.77641173, "receivingTouchdowns": 2.48141679, - "receivingTouchdowns40Plus": 0.145115561, - "receivingTouchdowns50Plus": 0.094833019, + "receivingTouchdowns40Plus": 0.281934162, + "receivingTouchdowns50Plus": 0.00872, "receivingYards": 425.955958, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 85, "receivingYardsPerReception": 13.328452842068275, - "turnovers": 0.18737712, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.18737712, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23757,7 +29504,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 302, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 8.628571428571428, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -23793,10 +29547,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.300222699, "defensiveForcedFumbles": 11.82486055, "defensiveFumbles": 7.686159357, + "defensiveHalfSacks": 77, "defensiveInterceptions": 14.38012958, "defensivePointsAllowed": 374.4702108, "defensiveSacks": 38.96133652, "defensiveSafeties": 0.354428034, + "defensiveStuffs": 50.52937542, "defensiveYardsAllowed": 5859.51774, "fumbleReturnTouchdown": 1.492190316, "interceptionReturnTouchdown": 1.046738612, @@ -23804,6 +29560,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 877.22175, "puntReturnTouchdown": 1.004739931, "puntReturnYards": 467.687069, + "totalReturnTouchdowns": 3.795820694, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23823,15 +29580,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 209, "defensiveForcedFumbles": 10, "defensiveFumbles": 7, + "defensiveHalfSacks": 86, "defensiveInterceptions": 7, "defensivePointsAllowed": 342, "defensiveSacks": 43, "defensiveSoloTackles": 731, + "defensiveStuffs": 33, + "defensiveTacklesPer3Tackles": 308, + "defensiveTacklesPer5Tackles": 183, "defensiveTotalTackles": 940, "defensiveYardsAllowed": 5360, "fumbleReturnTouchdown": 2, "kickoffReturnYards": 482, "puntReturnYards": 171, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -23871,18 +29633,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.62699651, "receivingTargets": 23.14139168, "receivingTouchdowns": 0.492004823, - "receivingTouchdowns40Plus": 0.057515228, - "receivingTouchdowns50Plus": 0.037586201, + "receivingTouchdowns40Plus": 0.055263149, + "receivingTouchdowns50Plus": 0.00170917, "receivingYards": 142.2071119, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 8.067574746459174, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.136440286, "rushingAttempts": 193.2967912, + "rushingAttemptsPer10Attempts": 19, + "rushingAttemptsPer5Attempts": 38, + "rushingGame100To199Yards": 1.888486076, + "rushingGame200PlusYards": 0.064446784, "rushingTouchdowns": 6.185012707, "rushingTouchdowns40Plus": 0.394222299, "rushingTouchdowns50Plus": 0.275955609, "rushingYards": 829.1744598, + "rushingYardsPer100Yards": 8, + "rushingYardsPer10Yards": 82, + "rushingYardsPer20Yards": 41, + "rushingYardsPer25Yards": 33, + "rushingYardsPer50Yards": 16, + "rushingYardsPer5Yards": 165, "rushingYardsPerAttempt": 4.289644202846964, - "turnovers": 0.676262168, + "totalTurnovers": 0.676262168, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23892,12 +29672,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingYards": 73, "receivingYardsAfterCatch": 45, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 9.125, "rushingAttempts": 111, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 16, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 2, "rushingYards": 428, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 37, + "rushingYardsPer20Yards": 16, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 80, "rushingYardsPerAttempt": 3.855855855855856, - "turnovers": 1, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -23938,11 +29733,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.23168481, "receivingTargets": 17.35604376, "receivingTouchdowns": 0.894486852, - "receivingTouchdowns40Plus": 0.189809853, - "receivingTouchdowns50Plus": 0.124040739, + "receivingTouchdowns40Plus": 0.055032302, + "receivingTouchdowns50Plus": 0.00170203, "receivingYards": 141.4510318, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 13.82480348317141, - "turnovers": 0.059989985, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.059989985, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23954,7 +29757,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 487, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 11.595238095238095, + "receptionsPer5Receptions": 2, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -24018,6 +29829,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 2, "missedFieldGoalsFromUnder40": 2, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -24058,11 +29871,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 56.70181679, "receivingTargets": 95.55384206, "receivingTouchdowns": 4.514096701, - "receivingTouchdowns40Plus": 0.174765579, - "receivingTouchdowns50Plus": 0.114209306, + "receivingTouchdowns40Plus": 1.359651739, + "receivingTouchdowns50Plus": 0.042051085, "receivingYards": 763.2297503, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 76, + "receivingYardsPer20Yards": 38, + "receivingYardsPer25Yards": 30, + "receivingYardsPer50Yards": 15, + "receivingYardsPer5Yards": 152, "receivingYardsPerReception": 13.460410856440213, - "turnovers": 0.378520871, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.378520871, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24072,7 +29893,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 295, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 53, "receivingYardsPerReception": 14.75, + "receptionsPer5Receptions": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -24115,11 +29944,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 20, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 1, "rushingYards": 157, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 31, "rushingYardsPerAttempt": 7.85, - "turnovers": 1, + "teamLoss": 8, + "teamWin": 8, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -24164,11 +30004,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.708473856, "receivingTargets": 2.876537883, "receivingTouchdowns": 0.113553976, - "receivingTouchdowns40Plus": 0.124853082, - "receivingTouchdowns50Plus": 0.081591489, + "receivingTouchdowns40Plus": 0.011931865, + "receivingTouchdowns50Plus": 0.000369027, "receivingYards": 21.21483087, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.41741616091783, - "turnovers": 0.010017052, + "totalTurnovers": 0.010017052, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24182,11 +30025,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 30, "receivingYards": 179, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 9.944444444444445, + "receptionsPer5Receptions": 1, "rushingAttempts": 10, "rushingTouchdowns": 2, "rushingYards": 66, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 6.6, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -24221,6 +30076,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -24260,20 +30118,37 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.39933339, "receivingTargets": 20.03797476, "receivingTouchdowns": 1.463229654, - "receivingTouchdowns40Plus": 0.108552721, - "receivingTouchdowns50Plus": 0.070939203, + "receivingTouchdowns40Plus": 0.056254554, + "receivingTouchdowns50Plus": 0.001739832, "receivingYards": 142.4973575, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 10.634660199316079, - "turnovers": 0.088968078, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.088968078, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 8, "receivingTargets": 14, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 156, "receivingYardsAfterCatch": 28, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 19.5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -24318,18 +30193,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.48043743, "receivingTargets": 23.40133398, "receivingTouchdowns": 0.86932529, - "receivingTouchdowns40Plus": 0.176684742, - "receivingTouchdowns50Plus": 0.115463479, + "receivingTouchdowns40Plus": 0.071740088, + "receivingTouchdowns50Plus": 0.002218766, "receivingYards": 187.3576317, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 12.938672095073581, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.001426638, "rushingAttempts": 1.832566978, + "rushingGame100To199Yards": 0.000273497, + "rushingGame200PlusYards": 0.00000933342, "rushingTouchdowns": 0.04299232, "rushingTouchdowns40Plus": 0.003364334, "rushingTouchdowns50Plus": 0.002355034, "rushingYards": 11.38056226, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.210175342360665, - "turnovers": 0.093727039, + "totalTurnovers": 0.093727039, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24342,13 +30229,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21, "receivingTargets": 34, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 268, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 12.761904761904763, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 9, + "teamWin": 7, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -24388,11 +30283,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.11683402, "receivingTargets": 33.06440804, "receivingTouchdowns": 2.424778877, - "receivingTouchdowns40Plus": 0.108552721, - "receivingTouchdowns50Plus": 0.070939203, + "receivingTouchdowns40Plus": 0.09209593, + "receivingTouchdowns50Plus": 0.002848328, "receivingYards": 235.6029557, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 10.652652883633658, - "turnovers": 0.146850007, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.146850007, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24402,7 +30305,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 269, "receivingYardsAfterCatch": 50, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 9.275862068965518, + "receptionsPer5Receptions": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -24442,18 +30353,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.49070952, "receivingTargets": 18.08658311, "receivingTouchdowns": 0.420420956, - "receivingTouchdowns40Plus": 0.036958814, - "receivingTouchdowns50Plus": 0.024152585, + "receivingTouchdowns40Plus": 0.041980639, + "receivingTouchdowns50Plus": 0.00129837, "receivingYards": 97.87249836, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 7.254807333513767, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.045877704, "rushingAttempts": 34.64591398, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.055868842, + "rushingGame200PlusYards": 0.001906589, "rushingTouchdowns": 0.861537003, "rushingTouchdowns40Plus": 0.064812995, "rushingTouchdowns50Plus": 0.045369097, "rushingYards": 143.7149014, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 4.148105357617701, - "turnovers": 0.353701274, + "totalTurnovers": 0.353701274, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24465,12 +30393,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 22, "receivingYards": 89, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 6.357142857142857, "rushingAttempts": 51, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 6, "rushingTouchdowns": 1, "rushingYards": 176, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 32, "rushingYardsPerAttempt": 3.450980392156863, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -24510,11 +30450,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 40.9849851, "receivingTargets": 66.1658801, "receivingTouchdowns": 5.474371484, - "receivingTouchdowns40Plus": 0.110761768, - "receivingTouchdowns50Plus": 0.072382815, + "receivingTouchdowns40Plus": 0.371662775, + "receivingTouchdowns50Plus": 0.011494725, "receivingYards": 474.7384692, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 11.58322902989173, - "turnovers": 0.286122357, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.286122357, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24526,8 +30474,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 333, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 11.892857142857142, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -24567,11 +30523,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.23882295, "receivingTargets": 29.40974665, "receivingTouchdowns": 1.850291016, - "receivingTouchdowns40Plus": 0.078268897, - "receivingTouchdowns50Plus": 0.051148724, + "receivingTouchdowns40Plus": 0.072612884, + "receivingTouchdowns50Plus": 0.002245759, "receivingYards": 194.6079037, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 9.615574195237476, - "turnovers": 0.094066353, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.094066353, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24580,9 +30544,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30, "receivingTargets": 39, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 423, "receivingYardsAfterCatch": 84, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 14.1, + "receptionsPer5Receptions": 2, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -24630,15 +30605,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingIncompletions": 4, "passingInterceptions": 1, "passingYards": 64, + "passingYardsPer10Yards": 6, + "passingYardsPer20Yards": 2, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 12, "receivingReceptions": 3, "receivingTargets": 7, "receivingYards": 4, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 1.3333333333333333, "rushingAttempts": 37, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 2, "rushingYards": 196, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 36, "rushingYardsPerAttempt": 5.297297297297297, - "turnovers": 2, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -24678,18 +30665,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.983243439, "receivingTargets": 2.658199573, "receivingTouchdowns": 0.05319077, - "receivingTouchdowns40Plus": 0.053091179, - "receivingTouchdowns50Plus": 0.034695085, + "receivingTouchdowns40Plus": 0.009211455, + "receivingTouchdowns50Plus": 0.00028489, "receivingYards": 16.0348662, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.085172946839634, "rushing2PtConversions": 0.007591429, "rushingAttempts": 18.59932659, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.015466214, + "rushingGame200PlusYards": 0.000527803, "rushingTouchdowns": 0.347297212, "rushingTouchdowns40Plus": 0.034476933, "rushingTouchdowns50Plus": 0.024133853, "rushingYards": 76.35836232, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.105436933456202, - "turnovers": 0.091085002, + "totalTurnovers": 0.091085002, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24700,10 +30698,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 41, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.2, "rushingAttempts": 14, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 34, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 2.4285714285714284, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -24746,7 +30753,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 154, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 10.266666666666667, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -24791,10 +30805,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 340, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 21.25, "rushingAttempts": 4, "rushingYards": 2, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 0.5, + "teamLoss": 8, + "teamWin": 7, "usesPoints": false, }, }, @@ -24834,11 +30856,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.42246304, "receivingTargets": 38.23517244, "receivingTouchdowns": 2.191517281, - "receivingTouchdowns40Plus": 0.227355026, - "receivingTouchdowns50Plus": 0.14857651, + "receivingTouchdowns40Plus": 0.153835481, + "receivingTouchdowns50Plus": 0.004757798, "receivingYards": 326.0444989, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 65, "receivingYardsPerReception": 13.350189060210367, - "turnovers": 0.172405508, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.172405508, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24846,11 +30876,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25, "receivingTargets": 36, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 367, "receivingYardsAfterCatch": 24, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 70, "receivingYardsPerReception": 14.68, + "receptionsPer5Receptions": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -24890,11 +30926,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.73400944, "receivingTargets": 37.22769158, "receivingTouchdowns": 2.248618072, - "receivingTouchdowns40Plus": 0.092685779, - "receivingTouchdowns50Plus": 0.060570156, + "receivingTouchdowns40Plus": 0.101587624, + "receivingTouchdowns50Plus": 0.00314, "receivingYards": 256.1973482, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 11.269342914463046, - "turnovers": 0.150947891, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.150947891, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24904,7 +30948,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 292, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 54, "receivingYardsPerReception": 12.166666666666666, + "receptionsPer5Receptions": 1, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -24944,11 +30996,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.52490575, "receivingTargets": 72.86090339, "receivingTouchdowns": 4.059931564, - "receivingTouchdowns40Plus": 0.102122269, - "receivingTouchdowns50Plus": 0.066736903, + "receivingTouchdowns40Plus": 0.456040743, + "receivingTouchdowns50Plus": 0.014104353, "receivingYards": 512.7516262, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 25, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 102, "receivingYardsPerReception": 11.021013754552314, - "turnovers": 0.407552105, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.407552105, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24957,7 +31017,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 90, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 8.181818181818182, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -24997,11 +31063,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31.10600676, "receivingTargets": 46.02460613, "receivingTouchdowns": 2.394956594, - "receivingTouchdowns40Plus": 0.104156375, - "receivingTouchdowns50Plus": 0.068066191, + "receivingTouchdowns40Plus": 0.153232583, + "receivingTouchdowns50Plus": 0.00474, "receivingYards": 325.4489478, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 65, "receivingYardsPerReception": 10.462575614768497, - "turnovers": 0.206535769, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.206535769, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25011,7 +31085,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 85, "receivingYardsAfterCatch": 24, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.625, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -25051,11 +31131,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.704335961, "receivingTargets": 5.499728266, "receivingTouchdowns": 0.384003591, - "receivingTouchdowns40Plus": 0.114463397, - "receivingTouchdowns50Plus": 0.07480183, + "receivingTouchdowns40Plus": 0.020754175, + "receivingTouchdowns50Plus": 0.000641882, "receivingYards": 39.71851166, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.722167772622283, - "turnovers": 0.024595824, + "totalTurnovers": 0.024595824, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25064,7 +31148,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 19, "receivingTouchdowns": 1, "receivingYards": 150, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 12.5, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -25105,11 +31195,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.989839787, "receivingTargets": 1.702087164, "receivingTouchdowns": 0.077555278, - "receivingTouchdowns40Plus": 0.11099944, - "receivingTouchdowns50Plus": 0.072538134, + "receivingTouchdowns40Plus": 0.007121768, + "receivingTouchdowns50Plus": 0.000220261, "receivingYards": 12.20128229, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 12.326522382960142, - "turnovers": 0.005803587, + "totalTurnovers": 0.005803587, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25118,7 +31210,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 3, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -25159,11 +31254,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 49.67164478, "receivingTargets": 80.69019272, "receivingTouchdowns": 4.100570703, - "receivingTouchdowns40Plus": 0.244943907, - "receivingTouchdowns50Plus": 0.160070843, + "receivingTouchdowns40Plus": 1.080564823, + "receivingTouchdowns50Plus": 0.033419531, "receivingYards": 701.325144, + "receivingYardsPer100Yards": 7, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 140, "receivingYardsPerReception": 14.1192253066358, - "turnovers": 0.221135233, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.221135233, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25172,7 +31275,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 24, "receivingYardsAfterCatch": 3, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 4.8, + "teamLoss": 11, + "teamWin": 4, "usesPoints": false, }, }, @@ -25210,20 +31316,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 17.59233335, "passingCompletionPercentage": 0.621556289, "passingCompletions": 10.93462543, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 6.65770792, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 0.521576348, "passingTouchdowns": 0.833353014, "passingTouchdowns40Plus": 0.078297015, "passingTouchdowns50Plus": 0.0511671, "passingYards": 116.7223173, + "passingYards300To399": 0.175678254, + "passingYards400Plus": 0.023729526, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 11, + "passingYardsPer20Yards": 5, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 23, "rushing2PtConversions": 0.000563869, "rushingAttempts": 0.580408655, + "rushingGame100To199Yards": -0.00000149947, + "rushingGame200PlusYards": -5.11712e-8, "rushingTouchdowns": 0.017275424, "rushingTouchdowns40Plus": 0.001064788, "rushingTouchdowns50Plus": 0.000745352, "rushingYards": 2.355942648, "rushingYardsPerAttempt": 4.059110124744779, - "turnovers": 0.653982147, + "totalTurnovers": 0.653982147, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25235,6 +31354,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rushingAttempts": 7, "rushingYards": -7, "rushingYardsPerAttempt": -1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -25274,11 +31395,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.43208905, "receivingTargets": 25.01040589, "receivingTouchdowns": 1.48360201, - "receivingTouchdowns40Plus": 0.060224692, - "receivingTouchdowns50Plus": 0.039356836, + "receivingTouchdowns40Plus": 0.059553508, + "receivingTouchdowns50Plus": 0.001841861, "receivingYards": 158.149307, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 10.248081545382217, - "turnovers": 0.102465045, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.102465045, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25291,7 +31420,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 164, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 13.666666666666666, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -25331,11 +31467,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.496981996, "receivingTargets": 13.86148016, "receivingTouchdowns": 0.901231046, - "receivingTouchdowns40Plus": 0.061129039, - "receivingTouchdowns50Plus": 0.039947827, + "receivingTouchdowns40Plus": 0.037937123, + "receivingTouchdowns50Plus": 0.001173313, "receivingYards": 101.5249075, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 10.690228489720303, - "turnovers": 0.063057483, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.063057483, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25344,7 +31487,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingTouchdowns": 1, "receivingYards": 48, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 9.6, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -25384,11 +31533,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 57.28902209, "receivingTargets": 88.6634745, "receivingTouchdowns": 3.022408729, - "receivingTouchdowns40Plus": 0.088750337, - "receivingTouchdowns50Plus": 0.057998345, + "receivingTouchdowns40Plus": 0.713948114, + "receivingTouchdowns50Plus": 0.02208087, "receivingYards": 603.4837765, + "receivingYardsPer100Yards": 6, + "receivingYardsPer10Yards": 60, + "receivingYardsPer20Yards": 30, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 120, "receivingYardsPerReception": 10.534021257195453, - "turnovers": 0.379056988, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.379056988, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25398,8 +31555,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 36, "receivingYards": 184, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 8.761904761904763, - "turnovers": 1, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -25443,10 +31606,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 71, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 14.2, "rushingAttempts": 1, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 8, + "teamWin": 6, "usesPoints": false, }, }, @@ -25487,11 +31657,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.58810075, "receivingTargets": 21.53467261, "receivingTouchdowns": 1.252372614, - "receivingTouchdowns40Plus": 0.126034101, - "receivingTouchdowns50Plus": 0.082363285, + "receivingTouchdowns40Plus": 0.06042762, + "receivingTouchdowns50Plus": 0.001868895, "receivingYards": 159.0726925, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 12.636750822001483, - "turnovers": 0.073806024, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.073806024, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25503,7 +31681,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 15, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.5, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -25541,30 +31724,46 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 16.90522912, "passingCompletionPercentage": 0.622523003, "passingCompletions": 10.52389401, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 6.381335110000002, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 0.493309231, "passingTouchdowns": 0.736108076, "passingTouchdowns40Plus": 0.079078878, "passingTouchdowns50Plus": 0.051678047, "passingYards": 122.3735501, + "passingYards300To399": 0.183493108, + "passingYards400Plus": 0.024785108, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 12, + "passingYardsPer20Yards": 6, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 24, "rushing2PtConversions": 0.000891656, "rushingAttempts": 0.558076082, + "rushingGame100To199Yards": -0.00000193109, + "rushingGame200PlusYards": -6.59007e-8, "rushingTouchdowns": 0.016651005, "rushingTouchdowns40Plus": 0.001023804, "rushingTouchdowns50Plus": 0.000716663, "rushingYards": 2.282641076, "rushingYardsPerAttempt": 4.090196927665501, - "turnovers": 0.610019886, + "totalTurnovers": 0.610019886, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 5, "passingIncompletions": 5, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "rushingAttempts": 1, "rushingYards": -2, "rushingYardsPerAttempt": -2, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -25609,11 +31808,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.432449865, "receivingTargets": 5.881949331, "receivingTouchdowns": 0.285991552, - "receivingTouchdowns40Plus": 0.110396122, - "receivingTouchdowns50Plus": 0.072143866, + "receivingTouchdowns40Plus": 0.02181262, + "receivingTouchdowns50Plus": 0.000674617, "receivingYards": 42.13760394, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.276247460937057, - "turnovers": 0.020124996, + "totalTurnovers": 0.020124996, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25625,10 +31828,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 253, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 44, "receivingYardsPerReception": 7.027777777777778, + "receptionsPer5Receptions": 2, "rushingAttempts": 6, "rushingYards": 21, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.5, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -25670,18 +31883,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.49019708, "receivingTargets": 20.81740097, "receivingTouchdowns": 0.448684569, - "receivingTouchdowns40Plus": 0.052054625, - "receivingTouchdowns50Plus": 0.034017697, + "receivingTouchdowns40Plus": 0.050140584, + "receivingTouchdowns50Plus": 0.00155074, "receivingYards": 124.9740916, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 8.067947163910453, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.037274327, "rushingAttempts": 41.62430348, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.094188338, + "rushingGame200PlusYards": 0.003214287, "rushingTouchdowns": 1.258311749, "rushingTouchdowns40Plus": 0.078176666, "rushingTouchdowns50Plus": 0.054723666, "rushingYards": 186.2350776, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 18, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 37, "rushingYardsPerAttempt": 4.474190845967761, - "turnovers": 0.277587415, + "totalTurnovers": 0.277587415, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25690,10 +31921,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 12, "receivingYards": 67, "receivingYardsAfterCatch": 66, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 7.444444444444445, + "receptionsPer5Receptions": 1, "rushingAttempts": 13, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 40, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 3.076923076923077, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -25737,7 +31979,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 21, "receivingTouchdowns": 2, "receivingYards": 209, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 16.076923076923077, + "teamLoss": 2, + "teamWin": 6, "usesPoints": false, }, }, @@ -25778,11 +32026,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.6685051, "receivingTargets": 76.32324721, "receivingTouchdowns": 4.018692033, - "receivingTouchdowns40Plus": 0.141899164, - "receivingTouchdowns50Plus": 0.092731104, + "receivingTouchdowns40Plus": 0.638415009, + "receivingTouchdowns50Plus": 0.019744794, "receivingYards": 580.0727946, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 116, "receivingYardsPerReception": 12.429641647124454, - "turnovers": 0.218899857, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.218899857, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25791,7 +32047,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 334, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 9.542857142857143, + "receptionsPer5Receptions": 3, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -25832,11 +32096,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.634242278, "receivingTargets": 2.809603509, "receivingTouchdowns": 0.138961006, - "receivingTouchdowns40Plus": 0.120289803, - "receivingTouchdowns50Plus": 0.078609386, + "receivingTouchdowns40Plus": 0.011576009, + "receivingTouchdowns50Plus": 0.000358021, "receivingYards": 20.52568496, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.559756430435462, - "turnovers": 0.009581821, + "totalTurnovers": 0.009581821, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25844,11 +32111,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "puntReturnYards": 8, "receivingReceptions": 11, "receivingTargets": 17, + "receivingTouchdowns40Plus": 1, "receivingYards": 129, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 11.727272727272727, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 4, "rushingYardsPerAttempt": 4, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -25893,11 +32170,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 23, "receivingTouchdowns": 1, "receivingYards": 115, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 7.1875, "rushingAttempts": 21, "rushingTouchdowns": 3, "rushingYards": 103, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 4.904761904761905, + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -25933,10 +32220,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.412963575, "defensiveForcedFumbles": 8.907761896, "defensiveFumbles": 5.790045233, + "defensiveHalfSacks": 70, "defensiveInterceptions": 13.30877729, "defensivePointsAllowed": 346.5189461, "defensiveSacks": 35.13689996, "defensiveSafeties": 0.361615637, + "defensiveStuffs": 59.52968462, "defensiveYardsAllowed": 5696.214854, "fumbleReturnTouchdown": 1.410260754, "interceptionReturnTouchdown": 0.802604053, @@ -25944,6 +32233,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 764.9423115, "puntReturnTouchdown": 0.2282658, "puntReturnYards": 231.582091, + "totalReturnTouchdowns": 2.734353758, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25960,18 +32250,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 10, "defensiveFumbles": 6, + "defensiveHalfSacks": 68, "defensiveInterceptions": 12, "defensiveOver45PointsAllowed": 1, "defensiveOver550YardsAllowed": 2, "defensivePointsAllowed": 449, "defensiveSacks": 34, "defensiveSoloTackles": 769, + "defensiveStuffs": 40, + "defensiveTacklesPer3Tackles": 362, + "defensiveTacklesPer5Tackles": 214, "defensiveTotalTackles": 1106, "defensiveYardsAllowed": 6618, "fumbleReturnTouchdown": 3, "interceptionReturnTouchdown": 2, "kickoffReturnYards": 1071, "puntReturnYards": 236, + "totalReturnTouchdowns": 5, "usesPoints": false, }, }, @@ -26015,18 +32310,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.912220759, "receivingTargets": 7.947275624, "receivingTouchdowns": 0.156817534, - "receivingTouchdowns40Plus": 0.024753352, - "receivingTouchdowns50Plus": 0.016176316, + "receivingTouchdowns40Plus": 0.020355076, + "receivingTouchdowns50Plus": 0.000629538, "receivingYards": 46.9147346, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 7.935213604563578, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.007336051, "rushingAttempts": 11.78799125, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.008503549, + "rushingGame200PlusYards": 0.000290194, "rushingTouchdowns": 0.248170163, "rushingTouchdowns40Plus": 0.021832456, "rushingTouchdowns50Plus": 0.015282719, "rushingYards": 47.06159076, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.9923333638375413, - "turnovers": 0.082293524, + "totalTurnovers": 0.082293524, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26038,11 +32346,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingYards": 144, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 8.470588235294118, "rushingAttempts": 38, + "rushingAttemptsPer5Attempts": 4, "rushingTouchdowns": 1, "rushingYards": 113, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 2.973684210526316, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -26107,6 +32427,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -26147,23 +32469,41 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.790973196, "receivingTargets": 10.16344463, "receivingTouchdowns": 0.462475515, - "receivingTouchdowns40Plus": 0.144089094, - "receivingTouchdowns50Plus": 0.094162223, + "receivingTouchdowns40Plus": 0.035360288, + "receivingTouchdowns50Plus": 0.001093617, "receivingYards": 77.47631216, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 13.37880690131932, - "turnovers": 0.033953391, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.033953391, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 26, "receivingTargets": 47, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 316, "receivingYardsAfterCatch": 2, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 60, "receivingYardsPerReception": 12.153846153846153, + "receptionsPer5Receptions": 2, "rushingAttempts": 1, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 16, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -26204,18 +32544,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27.91769381, "receivingTargets": 47.68786681, "receivingTouchdowns": 1.806035825, - "receivingTouchdowns40Plus": 0.109785955, - "receivingTouchdowns50Plus": 0.071745121, + "receivingTouchdowns40Plus": 0.169975691, + "receivingTouchdowns50Plus": 0.00525698, "receivingYards": 341.1939917, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 68, "receivingYardsPerReception": 12.221424664303244, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.002699372, "rushingAttempts": 3.80010498, + "rushingGame100To199Yards": 0.001358616, + "rushingGame200PlusYards": 0.0000463643, "rushingTouchdowns": 0.092869943, "rushingTouchdowns40Plus": 0.006984383, "rushingTouchdowns50Plus": 0.004889068, "rushingYards": 23.59541082, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.20914710098351, - "turnovers": 0.181987786, + "totalTurnovers": 0.181987786, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26226,10 +32579,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 171, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 10.058823529411764, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 9, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -26292,6 +32654,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "madeFieldGoalsFromUnder40": 11, "missedFieldGoals": 5, "missedFieldGoalsFrom50Plus": 5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -26331,11 +32695,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.82359362, "receivingTargets": 28.76537883, "receivingTouchdowns": 1.276493989, - "receivingTouchdowns40Plus": 0.160718522, - "receivingTouchdowns50Plus": 0.105029554, + "receivingTouchdowns40Plus": 0.085376614, + "receivingTouchdowns50Plus": 0.002640514, "receivingYards": 225.2498348, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 11.966356655759549, - "turnovers": 0.12498375, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.12498375, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26346,7 +32718,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 281, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 9.064516129032258, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -26382,10 +32763,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.39621678, "defensiveForcedFumbles": 12.66027594, "defensiveFumbles": 8.229179362, + "defensiveHalfSacks": 53, "defensiveInterceptions": 14.01558803, "defensivePointsAllowed": 379.1946545, "defensiveSacks": 26.55535439, "defensiveSafeties": 0.378172791, + "defensiveStuffs": 57.64924894, "defensiveYardsAllowed": 5887.443373, "fumbleReturnTouchdown": 1.45, "interceptionReturnTouchdown": 1.096430523, @@ -26393,6 +32776,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 785.4663529, "puntReturnTouchdown": 0.763211091, "puntReturnYards": 291.6051515, + "totalReturnTouchdowns": 3.556971133, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26408,15 +32792,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 310, "defensiveForcedFumbles": 10, "defensiveFumbles": 5, + "defensiveHalfSacks": 60, "defensiveInterceptions": 16, "defensivePointsAllowed": 400, "defensiveSacks": 30, "defensiveSoloTackles": 788, + "defensiveStuffs": 53, + "defensiveTacklesPer3Tackles": 362, + "defensiveTacklesPer5Tackles": 215, "defensiveTotalTackles": 1098, "defensiveYardsAllowed": 5942, "fumbleReturnTouchdown": 3, "kickoffReturnYards": 1097, "puntReturnYards": 231, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -26457,11 +32846,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.55033361, "receivingTargets": 60.25977996, "receivingTouchdowns": 2.43278173, - "receivingTouchdowns40Plus": 0.149004134, - "receivingTouchdowns50Plus": 0.097374202, + "receivingTouchdowns40Plus": 0.403519298, + "receivingTouchdowns50Plus": 0.012479978, "receivingYards": 470.2077052, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 12.864662473870098, - "turnovers": 0.244110626, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.244110626, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26470,7 +32867,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 371, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 71, "receivingYardsPerReception": 10.027027027027026, + "receptionsPer5Receptions": 2, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -26514,14 +32919,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066815327, "passingTouchdowns50Plus": 0.043663816, "passingYards": 19.68606676, + "passingYards300To399": 0.031571184, + "passingYards400Plus": 0.004264439, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000541039, "rushingAttempts": 0.09252723, + "rushingGame100To199Yards": -0.00000241363, + "rushingGame200PlusYards": -8.23679e-8, "rushingTouchdowns": 0.002462408, "rushingTouchdowns40Plus": 0.000169695, "rushingTouchdowns50Plus": 0.000118787, "rushingYards": 0.38001423, "rushingYardsPerAttempt": 4.1070529183679225, - "turnovers": 0.099911284, + "totalTurnovers": 0.099911284, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26531,15 +32942,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 176, "passingCompletionPercentage": 0.5965909090909091, "passingCompletions": 105, + "passingCompletionsPer10Completions": 7, + "passingCompletionsPer5Completions": 17, "passingIncompletions": 71, + "passingIncompletionsPer10Incompletions": 4, + "passingIncompletionsPer5Incompletions": 11, "passingInterceptions": 2, "passingTouchdowns": 6, "passingYards": 1003, + "passingYardsPer100Yards": 6, + "passingYardsPer10Yards": 97, + "passingYardsPer20Yards": 45, + "passingYardsPer25Yards": 36, + "passingYardsPer50Yards": 15, + "passingYardsPer5Yards": 199, "rushingAttempts": 25, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 2, "rushingYards": 130, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 23, "rushingYardsPerAttempt": 5.2, - "turnovers": 3, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -26580,11 +33008,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.429179049, "receivingTargets": 0.734065937, "receivingTouchdowns": 0.028246901, - "receivingTouchdowns40Plus": 0.032008534, - "receivingTouchdowns50Plus": 0.020917577, + "receivingTouchdowns40Plus": 0.003050452, + "receivingTouchdowns50Plus": 0.0000943439, "receivingYards": 5.435362132, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 12.664556074357675, - "turnovers": 0.002516345, + "totalTurnovers": 0.002516345, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26600,7 +33029,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 130, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 14.444444444444445, + "teamLoss": 12, + "teamWin": 4, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -26646,11 +33083,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 27, "receivingYards": 266, "receivingYardsAfterCatch": 53, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 14, "rushingAttempts": 3, "rushingYards": 23, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 7.666666666666667, - "turnovers": 1, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -26688,6 +33134,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "kickoffReturnYards": 96, + "teamLoss": 2, + "teamWin": 14, "usesPoints": false, }, }, @@ -26728,14 +33176,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.33306152, "receivingTargets": 23.40201217, "receivingTouchdowns": 0.995017715, - "receivingTouchdowns40Plus": 0.191109275, - "receivingTouchdowns50Plus": 0.124889912, + "receivingTouchdowns40Plus": 0.087973956, + "receivingTouchdowns50Plus": 0.002720844, "receivingYards": 195.0639972, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 13.60937416809469, - "turnovers": 0.084037005, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.084037005, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -26776,15 +33234,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 41.6376391, "receivingTargets": 71.42310305, "receivingTouchdowns": 3.897252533, - "receivingTouchdowns40Plus": 0.169564068, - "receivingTouchdowns50Plus": 0.110810118, + "receivingTouchdowns40Plus": 0.630852704, + "receivingTouchdowns50Plus": 0.019510908, "receivingYards": 566.8349057, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 113, "receivingYardsPerReception": 13.613521754647227, - "turnovers": 0.187848889, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.187848889, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 3, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -26830,18 +33298,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.46571557, "receivingTargets": 30.17489749, "receivingTouchdowns": 1.035346734, - "receivingTouchdowns40Plus": 0.040584342, - "receivingTouchdowns50Plus": 0.026521867, + "receivingTouchdowns40Plus": 0.063487113, + "receivingTouchdowns50Plus": 0.001963519, "receivingYards": 168.5967427, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 9.130257750417629, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.017935845, "rushingAttempts": 23.43916774, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.058792761, + "rushingGame200PlusYards": 0.002006371, "rushingTouchdowns": 0.804944934, "rushingTouchdowns40Plus": 0.043569118, "rushingTouchdowns50Plus": 0.030498382, "rushingYards": 147.4911669, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 29, "rushingYardsPerAttempt": 6.29250869894581, - "turnovers": 0.252851198, + "totalTurnovers": 0.252851198, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26849,14 +33335,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8, "receivingTargets": 13, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 140, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 17.5, "rushingAttempts": 6, "rushingYards": 55, + "rushingYardsPer10Yards": 3, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 9.166666666666666, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -26900,18 +33393,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.583028115, "receivingTargets": 10.430997, "receivingTouchdowns": 0.172289614, - "receivingTouchdowns40Plus": 0.047104331, - "receivingTouchdowns50Plus": 0.03078268, + "receivingTouchdowns40Plus": 0.029387541, + "receivingTouchdowns50Plus": 0.000908893, "receivingYards": 60.85424113, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.025058091189734, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.019072997, "rushingAttempts": 31.97979411, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.041781249, + "rushingGame200PlusYards": 0.001425834, "rushingTouchdowns": 0.93738272, "rushingTouchdowns40Plus": 0.059736965, "rushingTouchdowns50Plus": 0.041815876, "rushingYards": 124.3882345, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 3.8895883466962067, - "turnovers": 0.178632519, + "totalTurnovers": 0.178632519, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26925,10 +33434,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 19, "receivingYards": 26, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 2.3636363636363638, + "receptionsPer5Receptions": 1, "rushingAttempts": 52, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 6, "rushingYards": 250, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 47, "rushingYardsPerAttempt": 4.8076923076923075, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -26968,11 +33489,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.740196708, "receivingTargets": 10.08020415, "receivingTouchdowns": 0.680326754, - "receivingTouchdowns40Plus": 0.1043753, - "receivingTouchdowns50Plus": 0.068209258, + "receivingTouchdowns40Plus": 0.033194391, + "receivingTouchdowns50Plus": 0.001026631, "receivingYards": 71.24949015, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.570832460339524, - "turnovers": 0.044753148, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.044753148, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26981,7 +33508,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 215, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 10.75, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -27023,18 +33557,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.142287091, "receivingTargets": 2.809603509, "receivingTouchdowns": 0.088654059, - "receivingTouchdowns40Plus": 0.055491692, - "receivingTouchdowns50Plus": 0.036263821, + "receivingTouchdowns40Plus": 0.009789074, + "receivingTouchdowns50Plus": 0.000302755, "receivingYards": 17.11680729, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.989968927091855, "rushing2PtConversions": 0.010934287, "rushingAttempts": 10.61912312, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.004486841, + "rushingGame200PlusYards": 0.000153119, "rushingTouchdowns": 0.247816062, "rushingTouchdowns40Plus": 0.019594472, "rushingTouchdowns50Plus": 0.01371613, "rushingYards": 41.68673426, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 3.9256286784628602, - "turnovers": 0.070221814, + "totalTurnovers": 0.070221814, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27046,10 +33590,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 28, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 9.333333333333334, "rushingAttempts": 1, "rushingYards": 1, "rushingYardsPerAttempt": 1, + "teamLoss": 9, + "teamWin": 6, "usesPoints": false, }, }, @@ -27087,6 +33635,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -27122,10 +33672,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.400896205, "defensiveForcedFumbles": 12.7534493, "defensiveFumbles": 8.289742047, + "defensiveHalfSacks": 51, "defensiveInterceptions": 11.92489756, "defensivePointsAllowed": 365.203626, "defensiveSacks": 25.75473488, "defensiveSafeties": 0.348506711, + "defensiveStuffs": 59.22965454, "defensiveYardsAllowed": 5902.221565, "fumbleReturnTouchdown": 1.249810183, "interceptionReturnTouchdown": 1.21737436, @@ -27133,6 +33685,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 758.3198667, "puntReturnTouchdown": 0.308434381, "puntReturnYards": 257.8632278, + "totalReturnTouchdowns": 3.094381186, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27149,16 +33702,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 5, "defensiveFumbles": 3, + "defensiveHalfSacks": 26, "defensiveInterceptions": 14, "defensivePointsAllowed": 449, "defensiveSacks": 13, "defensiveSoloTackles": 728, + "defensiveStuffs": 43, + "defensiveTacklesPer3Tackles": 329, + "defensiveTacklesPer5Tackles": 195, "defensiveTotalTackles": 1007, "defensiveYardsAllowed": 6102, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 663, "puntReturnTouchdown": 1, "puntReturnYards": 291, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -27194,22 +33752,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "projectedRawStats": PlayerStats { "lostFumbles": 0.504980031, "receiving2PtConversions": 0.003219202, - "receivingTouchdowns40Plus": 0.056778865, - "receivingTouchdowns50Plus": 0.037104989, + "receivingTouchdowns40Plus": 0.011360754, + "receivingTouchdowns50Plus": 0.000351364, "rushing2PtConversions": 0.090325968, + "rushingGame100To199Yards": 0.403040975, + "rushingGame200PlusYards": 0.013754242, "rushingTouchdowns40Plus": 0.182460922, "rushingTouchdowns50Plus": 0.127722645, - "turnovers": 0.504980031, + "totalTurnovers": 0.504980031, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, "rushingAttempts": 4, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.25, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -27250,18 +33817,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.590508, "receivingTargets": 20.1604083, "receivingTouchdowns": 1.070576988, - "receivingTouchdowns40Plus": 0.139839426, - "receivingTouchdowns50Plus": 0.091385065, + "receivingTouchdowns40Plus": 0.058412888, + "receivingTouchdowns50Plus": 0.001806584, "receivingYards": 152.5918931, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 12.11959780336107, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.002399864, "rushingAttempts": 2.270097229, + "rushingGame100To199Yards": 0.000393521, + "rushingGame200PlusYards": 0.0000134293, "rushingTouchdowns": 0.061943384, "rushingTouchdowns40Plus": 0.004168627, "rushingTouchdowns50Plus": 0.002918039, "rushingYards": 13.3627628, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.886427519180061, - "turnovers": 0.12362974, + "totalTurnovers": 0.12362974, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27273,10 +33852,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 224, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 7.225806451612903, + "receptionsPer5Receptions": 3, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 8, + "teamWin": 9, "usesPoints": false, }, }, @@ -27317,11 +33904,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27.86902872, "receivingTargets": 48.06897959, "receivingTouchdowns": 2.340908894, - "receivingTouchdowns40Plus": 0.078626003, - "receivingTouchdowns50Plus": 0.051382093, + "receivingTouchdowns40Plus": 0.149162211, + "receivingTouchdowns50Plus": 0.004613264, "receivingYards": 318.1650825, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 31, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 63, "receivingYardsPerReception": 11.416439578738213, - "turnovers": 0.196520659, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.196520659, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27332,10 +33927,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 494, "receivingYardsAfterCatch": 30, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 92, "receivingYardsPerReception": 10.977777777777778, + "receptionsPer5Receptions": 3, "rushingAttempts": 3, "rushingYards": 5, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.6666666666666667, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -27399,6 +34004,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFrom50Plus": 3, "receivingTargets": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -27440,18 +34047,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.72801849, "receivingTargets": 25.58850028, "receivingTouchdowns": 0.532596825, - "receivingTouchdowns40Plus": 0.043740077, - "receivingTouchdowns50Plus": 0.028584141, + "receivingTouchdowns40Plus": 0.056596519, + "receivingTouchdowns50Plus": 0.001750408, "receivingYards": 145.5962661, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 7.024128532606302, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.03270555, "rushingAttempts": 23.95086175, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.027253832, + "rushingGame200PlusYards": 0.000930069, "rushingTouchdowns": 0.467354196, "rushingTouchdowns40Plus": 0.044596413, "rushingTouchdowns50Plus": 0.031217489, "rushingYards": 95.93486436, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.005486957478681, - "turnovers": 0.135791049, + "totalTurnovers": 0.135791049, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27463,14 +34087,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "lostFumbles": 1, "receivingReceptions": 38, "receivingTargets": 45, + "receivingTouchdowns40Plus": 1, "receivingYards": 304, "receivingYardsAfterCatch": 21, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 58, "receivingYardsPerReception": 8, + "receptionsPer5Receptions": 2, "rushingAttempts": 33, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 106, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 3.212121212121212, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -27510,27 +34149,38 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.407261395, "receivingTargets": 5.936620298, "receivingTouchdowns": 0.304360843, - "receivingTouchdowns40Plus": 0.063605058, - "receivingTouchdowns50Plus": 0.041565905, + "receivingTouchdowns40Plus": 0.019716784, + "receivingTouchdowns50Plus": 0.000609797, "receivingYards": 37.39868487, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.485697016389471, - "turnovers": 0.029263066, + "totalTurnovers": 0.029263066, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveForcedFumbles": 1, "defensiveSoloTackles": 4, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 6, "kickoffReturnYards": 15, "receivingReceptions": 12, "receivingTargets": 18, "receivingYards": 61, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 5.083333333333333, "rushingAttempts": 6, "rushingTouchdowns": 4, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.3333333333333333, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -27566,10 +34216,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.433700597, "defensiveForcedFumbles": 14.76487362, "defensiveFumbles": 9.597167853, + "defensiveHalfSacks": 56, "defensiveInterceptions": 14.3178589, "defensivePointsAllowed": 365.3410262, "defensiveSacks": 28.06242017, "defensiveSafeties": 0.33661714, + "defensiveStuffs": 66.2540902, "defensiveYardsAllowed": 5987.837622, "fumbleReturnTouchdown": 1.504536605, "interceptionReturnTouchdown": 1.274196836, @@ -27577,6 +34229,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 743.175, "puntReturnTouchdown": 0.2541615, "puntReturnYards": 299.71875, + "totalReturnTouchdowns": 3.357008177, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27593,16 +34246,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 202, "defensiveForcedFumbles": 12, "defensiveFumbles": 8, + "defensiveHalfSacks": 76, "defensiveInterceptions": 9, "defensiveOver45PointsAllowed": 1, "defensivePointsAllowed": 438, "defensiveSacks": 38, "defensiveSoloTackles": 826, + "defensiveStuffs": 59, + "defensiveTacklesPer3Tackles": 337, + "defensiveTacklesPer5Tackles": 197, "defensiveTotalTackles": 1028, "defensiveYardsAllowed": 6134, "interceptionReturnTouchdown": 1, "kickoffReturnYards": 631, "puntReturnYards": 163, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -27638,10 +34296,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.348457088, "defensiveForcedFumbles": 11.19956144, "defensiveFumbles": 7.279714936, + "defensiveHalfSacks": 53, "defensiveInterceptions": 11.74847161, "defensivePointsAllowed": 361.9342354, "defensiveSacks": 26.53309898, "defensiveSafeties": 0.352334871, + "defensiveStuffs": 60.55082982, "defensiveYardsAllowed": 5845.306941, "fumbleReturnTouchdown": 1.206596194, "interceptionReturnTouchdown": 0.953944944, @@ -27649,6 +34309,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 737.6989737, "puntReturnTouchdown": 0.2800572, "puntReturnYards": 293.4846, + "totalReturnTouchdowns": 2.753630823, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27665,17 +34326,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 242, "defensiveForcedFumbles": 11, "defensiveFumbles": 5, + "defensiveHalfSacks": 74, "defensiveInterceptions": 2, "defensivePointsAllowed": 409, "defensiveSacks": 37, "defensiveSafeties": 1, "defensiveSoloTackles": 789, + "defensiveStuffs": 50, + "defensiveTacklesPer3Tackles": 341, + "defensiveTacklesPer5Tackles": 199, "defensiveTotalTackles": 1031, "defensiveYardsAllowed": 5546, "fumbleReturnTouchdown": 1, "kickoffReturnTouchdown": 1, "kickoffReturnYards": 944, "puntReturnYards": 180, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -27718,11 +34384,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.656522235, "receivingTargets": 8.185989008, "receivingTouchdowns": 0.371016646, - "receivingTouchdowns40Plus": 0.098645713, - "receivingTouchdowns50Plus": 0.064464973, + "receivingTouchdowns40Plus": 0.027940257, + "receivingTouchdowns50Plus": 0.000864132, "receivingYards": 57.13031784, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.268881142795617, - "turnovers": 0.027301926, + "totalTurnovers": 0.027301926, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27731,10 +34402,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22, "receivingTargets": 33, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 288, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 13.090909090909092, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -27774,18 +34451,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.845319089, "receivingTargets": 1.099404081, "receivingTouchdowns": 0.027175881, - "receivingTouchdowns40Plus": 0.008993117, - "receivingTouchdowns50Plus": 0.005877002, + "receivingTouchdowns40Plus": 0.00345327, + "receivingTouchdowns50Plus": 0.000106802, "receivingYards": 6.47670509, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7.661846484103236, "rushing2PtConversions": 0.017452836, "rushingAttempts": 13.83876539, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.0272234, + "rushingGame200PlusYards": 0.00092903, "rushingTouchdowns": 0.458659004, "rushingTouchdowns40Plus": 0.026029543, "rushingTouchdowns50Plus": 0.01822068, "rushingYards": 55.90379635, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.039652004679299, - "turnovers": 0.06705581, + "totalTurnovers": 0.06705581, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27795,12 +34482,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 18, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6, "rushingAttempts": 29, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 80, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 2.7586206896551726, - "turnovers": 2, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -27865,6 +34562,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 4, "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 5, "usesPoints": false, }, }, @@ -27927,6 +34627,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -27997,11 +34699,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.888250846, "receivingTargets": 5.753075766, "receivingTouchdowns": 0.299369574, - "receivingTouchdowns40Plus": 0.104156375, - "receivingTouchdowns50Plus": 0.068066191, + "receivingTouchdowns40Plus": 0.021178743, + "receivingTouchdowns50Plus": 0.000655013, "receivingYards": 40.68111848, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.462575613363605, - "turnovers": 0.025816971, + "totalTurnovers": 0.025816971, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28011,7 +34717,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 250, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 10.416666666666666, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -28054,11 +34767,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20, "receivingTargets": 28, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 300, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 15, + "teamLoss": 7, + "teamWin": 8, "usesPoints": false, }, }, @@ -28133,25 +34851,43 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.07474324, "receivingTargets": 13.73659499, "receivingTouchdowns": 0.59626852, - "receivingTouchdowns40Plus": 0.12615256, - "receivingTouchdowns50Plus": 0.082440698, + "receivingTouchdowns40Plus": 0.043085867, + "receivingTouchdowns50Plus": 0.001332553, "receivingYards": 101.4387746, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 12.562476797714252, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.001421326, "rushingAttempts": 1.812231799, + "rushingGame100To199Yards": 0.000262687, + "rushingGame200PlusYards": 0.00000896449, "rushingTouchdowns": 0.052822102, "rushingTouchdowns40Plus": 0.003326956, "rushingTouchdowns50Plus": 0.002328869, "rushingYards": 11.19610825, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.178077360842072, - "turnovers": 0.056071504, + "totalTurnovers": 0.056071504, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 4, "receivingTargets": 8, "receivingYards": 92, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 23, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -28191,11 +34927,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.63192474, "receivingTargets": 25.14574791, "receivingTouchdowns": 1.410405518, - "receivingTouchdowns40Plus": 0.098058417, - "receivingTouchdowns50Plus": 0.064081176, + "receivingTouchdowns40Plus": 0.065681238, + "receivingTouchdowns50Plus": 0.002031379, "receivingYards": 175.2249504, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 10.535458351286408, - "turnovers": 0.110431641, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.110431641, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28207,7 +34951,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 242, "receivingYardsAfterCatch": 53, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 9.307692307692308, + "receptionsPer5Receptions": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -28251,14 +35003,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066864436, "passingTouchdowns50Plus": 0.043695909, "passingYards": 20.17996527, + "passingYards300To399": 0.032353416, + "passingYards400Plus": 0.004370098, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushing2PtConversions": 0.000099465, "rushingAttempts": 0.096985974, + "rushingGame100To199Yards": -0.00000251516, + "rushingGame200PlusYards": -8.58329e-8, "rushingTouchdowns": 0.004067573, "rushingTouchdowns40Plus": 0.000177873, "rushingTouchdowns50Plus": 0.000124511, "rushingYards": 0.399272002, "rushingYardsPerAttempt": 4.116801487192364, - "turnovers": 0.105553128, + "totalTurnovers": 0.105553128, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28267,9 +35026,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingIncompletions": 1, "passingYards": 7, + "passingYardsPer5Yards": 1, "rushingAttempts": 11, "rushingYards": -8, "rushingYardsPerAttempt": -0.7272727272727273, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -28310,11 +35072,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.40638668, "receivingTargets": 22.47682807, "receivingTouchdowns": 1.035723285, - "receivingTouchdowns40Plus": 0.171737368, - "receivingTouchdowns50Plus": 0.11223037, + "receivingTouchdowns40Plus": 0.066893179, + "receivingTouchdowns50Plus": 0.002068861, "receivingYards": 178.7519197, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 13.333340591068197, - "turnovers": 0.078603764, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.078603764, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28327,7 +35097,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 190, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 10, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -28367,10 +35144,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 21, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7, "rushingAttempts": 21, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 79, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 3.761904761904762, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -28412,17 +35199,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 91, "passingCompletionPercentage": 0.5714285714285714, "passingCompletions": 52, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 9, "passingIncompletions": 39, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 7, "passingInterceptions": 4, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 590, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 58, + "passingYardsPer20Yards": 27, + "passingYardsPer25Yards": 22, + "passingYardsPer50Yards": 10, + "passingYardsPer5Yards": 117, "rushingAttempts": 23, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 120, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 5.217391304347826, - "turnovers": 4, + "teamLoss": 13, + "teamWin": 3, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -28462,18 +35266,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.82264769, "receivingTargets": 54.94169539, "receivingTouchdowns": 2.301655938, - "receivingTouchdowns40Plus": 0.143268845, - "receivingTouchdowns50Plus": 0.09362619, + "receivingTouchdowns40Plus": 0.279818569, + "receivingTouchdowns50Plus": 0.008654183, "receivingYards": 418.6641163, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 41, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 83, "receivingYardsPerReception": 13.583003008395998, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.002079378, "rushingAttempts": 2.460970706, + "rushingGame100To199Yards": 0.000735537, + "rushingGame200PlusYards": 0.000025101, "rushingTouchdowns": 0.070534391, "rushingTouchdowns40Plus": 0.00452166, "rushingTouchdowns50Plus": 0.003165162, "rushingYards": 15.18539626, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 6.1704904584914635, - "turnovers": 0.252545297, + "totalTurnovers": 0.252545297, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28482,10 +35298,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 252, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 15.75, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -28525,28 +35349,47 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.468958948, "receivingTargets": 5.462167492, "receivingTouchdowns": 0.134088435, - "receivingTouchdowns40Plus": 0.070022311, - "receivingTouchdowns50Plus": 0.04575958, + "receivingTouchdowns40Plus": 0.018717028, + "receivingTouchdowns50Plus": 0.000578877, "receivingYards": 35.19597428, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 7.875653969869495, "rushing2PtConversions": 0.010758933, "rushingAttempts": 18.20744278, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.012927424, + "rushingGame200PlusYards": 0.000441163, "rushingTouchdowns": 0.48401019, "rushingTouchdowns40Plus": 0.033743352, "rushingTouchdowns50Plus": 0.023620346, "rushingYards": 69.85572281, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 3.836657550105452, - "turnovers": 0.106470029, + "totalTurnovers": 0.106470029, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 1.6666666666666667, "rushingAttempts": 8, "rushingYards": 32, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -28587,11 +35430,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.226966608, "receivingTargets": 2.126559659, "receivingTouchdowns": 0.093615756, - "receivingTouchdowns40Plus": 0.113191077, - "receivingTouchdowns50Plus": 0.073970369, + "receivingTouchdowns40Plus": 0.008830256, + "receivingTouchdowns50Plus": 0.000273101, "receivingYards": 15.32606116, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.491017326854589, - "turnovers": 0.007193899, + "totalTurnovers": 0.007193899, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28600,7 +35445,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4, "receivingTargets": 12, "receivingYards": 35, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.75, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -28644,14 +35493,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.06680263, "passingTouchdowns50Plus": 0.043655519, "passingYards": 19.55775641, + "passingYards300To399": 0.031367638, + "passingYards400Plus": 0.004236945, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000940034, "rushingAttempts": 0.096779352, + "rushingGame100To199Yards": -0.0000024921, + "rushingGame200PlusYards": -8.50458e-8, "rushingTouchdowns": 0.004236158, "rushingTouchdowns40Plus": 0.000177494, "rushingTouchdowns50Plus": 0.000124246, "rushingYards": 0.394939936, "rushingYardsPerAttempt": 4.08082848085199, - "turnovers": 0.102333061, + "totalTurnovers": 0.102333061, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28662,17 +35517,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 169, "passingCompletionPercentage": 0.6035502958579881, "passingCompletions": 102, + "passingCompletionsPer10Completions": 8, + "passingCompletionsPer5Completions": 18, "passingIncompletions": 67, + "passingIncompletionsPer10Incompletions": 5, + "passingIncompletionsPer5Incompletions": 11, "passingInterceptions": 7, "passingTouchdowns": 8, "passingTouchdowns40Plus": 3, "passingTouchdowns50Plus": 3, "passingYards": 1252, + "passingYards300To399": 1, + "passingYardsPer100Yards": 9, + "passingYardsPer10Yards": 123, + "passingYardsPer20Yards": 60, + "passingYardsPer25Yards": 46, + "passingYardsPer50Yards": 21, + "passingYardsPer5Yards": 249, "rushingAttempts": 19, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 69, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 3.6315789473684212, - "turnovers": 10, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -28716,14 +35588,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.06669833, "passingTouchdowns50Plus": 0.043587358, "passingYards": 18.50569336, + "passingYards300To399": 0.029699743, + "passingYards400Plus": 0.004011657, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.000106, "rushingAttempts": 0.089104376, + "rushingGame100To199Yards": -0.00000233, + "rushingGame200PlusYards": -7.96e-8, "rushingTouchdowns": 0.003558409, "rushingTouchdowns40Plus": 0.000163417, "rushingTouchdowns50Plus": 0.000114392, "rushingYards": 0.36457787, "rushingYardsPerAttempt": 4.0915821014222695, - "turnovers": 0.097331868, + "totalTurnovers": 0.097331868, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28734,14 +35612,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 131, "passingCompletionPercentage": 0.648854961832061, "passingCompletions": 85, + "passingCompletionsPer10Completions": 6, + "passingCompletionsPer5Completions": 15, "passingIncompletions": 46, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 7, "passingInterceptions": 2, "passingTouchdowns": 2, "passingYards": 709, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 69, + "passingYardsPer20Yards": 33, + "passingYardsPer25Yards": 27, + "passingYardsPer50Yards": 13, + "passingYardsPer5Yards": 141, "rushingAttempts": 19, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 123, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 6.473684210526316, - "turnovers": 5, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -28781,18 +35677,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.783533487, "receivingTargets": 5.10325279, "receivingTouchdowns": 0.121256558, - "receivingTouchdowns40Plus": 0.0524798, - "receivingTouchdowns50Plus": 0.03429555, + "receivingTouchdowns40Plus": 0.016621385, + "receivingTouchdowns50Plus": 0.000514063, "receivingYards": 30.70608056, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.115715287179114, "rushing2PtConversions": 0.013741925, "rushingAttempts": 17.61753928, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.014259314, + "rushingGame200PlusYards": 0.000486616, "rushingTouchdowns": 0.49882322, "rushingTouchdowns40Plus": 0.032638709, "rushingTouchdowns50Plus": 0.022847097, "rushingYards": 73.35602886, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.163806743616921, - "turnovers": 0.095310963, + "totalTurnovers": 0.095310963, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28801,11 +35710,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 15, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5, "rushingAttempts": 19, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 69, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 3.6315789473684212, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -28846,11 +35766,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.37267271, "receivingTargets": 23.48407606, "receivingTouchdowns": 1.225129979, - "receivingTouchdowns40Plus": 0.118559744, - "receivingTouchdowns50Plus": 0.077478793, + "receivingTouchdowns40Plus": 0.064304743, + "receivingTouchdowns50Plus": 0.001988806, "receivingYards": 171.1073399, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 12.795298562272224, - "turnovers": 0.078406094, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.078406094, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28862,10 +35790,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 268, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 9.925925925925926, + "receptionsPer5Receptions": 3, "rushingAttempts": 2, "rushingYards": 10, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -28908,11 +35845,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 38.28682005, "receivingTargets": 57.8534792, "receivingTouchdowns": 2.148850129, - "receivingTouchdowns40Plus": 0.147173256, - "receivingTouchdowns50Plus": 0.096177723, + "receivingTouchdowns40Plus": 0.311529392, + "receivingTouchdowns50Plus": 0.00963493, "receivingYards": 443.231618, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 88, "receivingYardsPerReception": 11.576610891715987, - "turnovers": 0.224481677, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.224481677, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28927,7 +35872,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 215, "receivingYardsAfterCatch": 34, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 8.26923076923077, + "receptionsPer5Receptions": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -28968,11 +35921,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.435873875, "receivingTargets": 5.871610837, "receivingTouchdowns": 0.221922773, - "receivingTouchdowns40Plus": 0.109785955, - "receivingTouchdowns50Plus": 0.071745121, + "receivingTouchdowns40Plus": 0.021755786, + "receivingTouchdowns50Plus": 0.000672859, "receivingYards": 42.00508331, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.225443901080334, - "turnovers": 0.020145072, + "totalTurnovers": 0.020145072, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28982,7 +35939,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 28, "receivingTouchdowns": 1, "receivingYards": 210, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 11.052631578947368, + "receptionsPer5Receptions": 2, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -29026,14 +35991,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066866861, "passingTouchdowns50Plus": 0.043697494, "passingYards": 20.20424581, + "passingYards300To399": 0.032391815, + "passingYards400Plus": 0.004375285, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushing2PtConversions": 0.000100501, "rushingAttempts": 0.097056829, + "rushingGame100To199Yards": -0.00000249478, + "rushingGame200PlusYards": -8.51373e-8, "rushingTouchdowns": 0.003713339, "rushingTouchdowns40Plus": 0.000178003, "rushingTouchdowns50Plus": 0.000124602, "rushingYards": 0.395371723, "rushingYardsPerAttempt": 4.07361055449277, - "turnovers": 0.101830726, + "totalTurnovers": 0.101830726, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29043,18 +36015,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 76, "passingCompletionPercentage": 0.6973684210526315, "passingCompletions": 53, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 10, "passingIncompletions": 23, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 2, "passingTouchdowns": 3, "passingYards": 515, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 51, + "passingYardsPer20Yards": 25, + "passingYardsPer25Yards": 20, + "passingYardsPer50Yards": 9, + "passingYardsPer5Yards": 103, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, "rushingAttempts": 13, "rushingYards": 3, "rushingYardsPerAttempt": 0.23076923076923078, - "turnovers": 2, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -29095,18 +36080,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 38.74253323, "receivingTargets": 60.34979498, "receivingTouchdowns": 2.760014196, - "receivingTouchdowns40Plus": 0.264890948, - "receivingTouchdowns50Plus": 0.173106235, + "receivingTouchdowns40Plus": 0.512185953, + "receivingTouchdowns50Plus": 0.015840803, "receivingYards": 535.3857026, + "receivingYardsPer100Yards": 5, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 107, "receivingYardsPerReception": 13.819068036197176, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.001539955, "rushingAttempts": 2.130833431, + "rushingGame100To199Yards": 0.000382355, + "rushingGame200PlusYards": 0.0000130483, "rushingTouchdowns": 0.069111842, "rushingTouchdowns40Plus": 0.003912572, "rushingTouchdowns50Plus": 0.002738801, "rushingYards": 13.20477706, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.197001073801906, - "turnovers": 0.17469815, + "totalTurnovers": 0.17469815, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29114,7 +36111,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 18, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -29154,11 +36155,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.703304938, "receivingTargets": 8.904930446, "receivingTouchdowns": 0.650680936, - "receivingTouchdowns40Plus": 0.096241389, - "receivingTouchdowns50Plus": 0.062893747, + "receivingTouchdowns40Plus": 0.029740977, + "receivingTouchdowns50Plus": 0.000919824, "receivingYards": 61.7790154, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 10.832143129570113, - "turnovers": 0.045112876, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.045112876, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29167,7 +36174,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 27, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 9, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -29205,35 +36217,73 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 138.5073707, "passingCompletionPercentage": 0.608288992, "passingCompletions": 84.25250894, + "passingCompletionsPer10Completions": 8, + "passingCompletionsPer5Completions": 16, "passingIncompletions": 54.25486176, + "passingIncompletionsPer10Incompletions": 5, + "passingIncompletionsPer5Incompletions": 10, "passingInterceptions": 5.384214744, "passingTouchdowns": 3.839009109, "passingTouchdowns40Plus": 0.753666875, "passingTouchdowns50Plus": 0.492521303, "passingYards": 920.146204, + "passingYards300To399": 0.653535082, + "passingYards400Plus": 0.088275454, + "passingYardsPer100Yards": 9, + "passingYardsPer10Yards": 92, + "passingYardsPer20Yards": 46, + "passingYardsPer25Yards": 36, + "passingYardsPer50Yards": 18, + "passingYardsPer5Yards": 184, "rushing2PtConversions": 0.008676828, "rushingAttempts": 13.6080377, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.0324, + "rushingGame200PlusYards": 0.00111, "rushingTouchdowns": 0.403745918, "rushingTouchdowns40Plus": 0.025728149, "rushingTouchdowns50Plus": 0.018009704, "rushingYards": 55.11837125, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.050427582957093, - "turnovers": 6.941405175, + "totalTurnovers": 6.941405175, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 81, "passingCompletionPercentage": 0.5432098765432098, "passingCompletions": 44, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 37, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 6, "passingInterceptions": 7, "passingTouchdowns": 1, "passingYards": 296, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 57, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 50, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 5, - "turnovers": 7, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 7, "usesPoints": false, }, }, @@ -29273,18 +36323,36 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.21374747, "receivingTargets": 18.91236965, "receivingTouchdowns": 0.614908294, - "receivingTouchdowns40Plus": 0.138285843, - "receivingTouchdowns50Plus": 0.090369798, + "receivingTouchdowns40Plus": 0.055429903, + "receivingTouchdowns50Plus": 0.001714327, "receivingYards": 142.7774626, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 10.045025979345052, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.028374701, "rushingAttempts": 24.63128627, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.02855031, + "rushingGame200PlusYards": 0.000974313, "rushingTouchdowns": 0.754451703, "rushingTouchdowns40Plus": 0.045815843, "rushingTouchdowns50Plus": 0.03207109, "rushingYards": 103.1915079, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 4.189448604869794, - "turnovers": 0.145415451, + "totalTurnovers": 0.145415451, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29292,10 +36360,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 22, "receivingYardsAfterCatch": 18, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.333333333333333, "rushingAttempts": 1, "rushingYards": -3, "rushingYardsPerAttempt": -3, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -29336,11 +36409,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.668466928, "receivingTargets": 8.582223742, "receivingTouchdowns": 0.337354498, - "receivingTouchdowns40Plus": 0.238953355, - "receivingTouchdowns50Plus": 0.156156017, + "receivingTouchdowns40Plus": 0.033900358, + "receivingTouchdowns50Plus": 0.001048465, "receivingYards": 74.08026063, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 13.068835290203884, - "turnovers": 0.029832185, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.029832185, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29354,11 +36433,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 447, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 84, "receivingYardsPerReception": 10.395348837209303, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": 39, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 19.5, - "turnovers": 1, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -29399,11 +36490,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34.07292583, "receivingTargets": 61.46520137, "receivingTouchdowns": 4.032066589, - "receivingTouchdowns40Plus": 0.111639436, - "receivingTouchdowns50Plus": 0.072956372, + "receivingTouchdowns40Plus": 0.308034879, + "receivingTouchdowns50Plus": 0.00953, "receivingYards": 441.3021376, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 88, "receivingYardsPerReception": 12.951694838353127, - "turnovers": 0.205828073, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.205828073, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29414,7 +36513,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 136, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 12.363636363636363, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -29488,10 +36593,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12, "receivingTargets": 14, "receivingYards": 79, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 6.583333333333333, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": -4, "rushingYardsPerAttempt": -4, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -29531,18 +36645,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.206404979, "receivingTargets": 2.963439179, "receivingTouchdowns": 0.07896857, - "receivingTouchdowns40Plus": 0.05530087, - "receivingTouchdowns50Plus": 0.036139119, + "receivingTouchdowns40Plus": 0.010251635, + "receivingTouchdowns50Plus": 0.000317061, "receivingYards": 18.06120603, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.185807320914316, "rushing2PtConversions": 0.004858194, "rushingAttempts": 6.35376675, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.001527208, + "rushingGame200PlusYards": 0.0000521177, "rushingTouchdowns": 0.168342388, "rushingTouchdowns40Plus": 0.011695567, "rushingTouchdowns50Plus": 0.008186897, "rushingYards": 24.79262913, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.9020363991171068, - "turnovers": 0.039183584, + "totalTurnovers": 0.039183584, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29552,7 +36674,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingYardsPerReception": 0.5, "rushingAttempts": 11, "rushingYards": 47, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.2727272727272725, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -29592,11 +36720,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.75545711, "receivingTargets": 25.22879465, "receivingTouchdowns": 1.772176409, - "receivingTouchdowns40Plus": 0.098325689, - "receivingTouchdowns50Plus": 0.064255838, + "receivingTouchdowns40Plus": 0.066168497, + "receivingTouchdowns50Plus": 0.002046448, "receivingYards": 175.8101155, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 10.492707799363643, - "turnovers": 0.111251864, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.111251864, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29606,7 +36742,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 52, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -29647,18 +36789,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.817154989, "receivingTargets": 8.241956996, "receivingTouchdowns": 0.345473595, - "receivingTouchdowns40Plus": 0.12486631, - "receivingTouchdowns50Plus": 0.081600134, + "receivingTouchdowns40Plus": 0.029340191, + "receivingTouchdowns50Plus": 0.000907, "receivingYards": 60.71686623, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.604299917409199, - "turnovers": 0.028243741, + "totalTurnovers": 0.028243741, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 4, "receivingTargets": 5, "receivingYards": 32, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -29698,18 +36851,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.022477386, "receivingTargets": 11.7321529, "receivingTouchdowns": 0.272592911, - "receivingTouchdowns40Plus": 0.042823675, - "receivingTouchdowns50Plus": 0.027985272, + "receivingTouchdowns40Plus": 0.031574004, + "receivingTouchdowns50Plus": 0.000976516, "receivingYards": 66.73315952, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 7.396323278520878, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.016301481, "rushingAttempts": 21.81018975, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.021955192, + "rushingGame200PlusYards": 0.000749246, "rushingTouchdowns": 0.51788055, "rushingTouchdowns40Plus": 0.040502729, "rushingTouchdowns50Plus": 0.02835191, "rushingYards": 90.71397467, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.159247384356204, - "turnovers": 0.205607559, + "totalTurnovers": 0.205607559, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29719,11 +36887,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 9, "receivingYardsAfterCatch": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 30, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 115, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 3.8333333333333335, - "turnovers": 1, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -29786,6 +36963,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 4, "missedFieldGoalsFrom50Plus": 3, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -29828,11 +37007,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.962553596, "receivingTargets": 1.638650248, "receivingTouchdowns": 0.070841893, - "receivingTouchdowns40Plus": 0.126094342, - "receivingTouchdowns50Plus": 0.082402652, + "receivingTouchdowns40Plus": 0.007067188, + "receivingTouchdowns50Plus": 0.000218573, "receivingYards": 12.10305047, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 12.573897724028656, - "turnovers": 0.005643604, + "totalTurnovers": 0.005643604, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29842,12 +37023,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "puntReturnYards": 11, "receivingReceptions": 28, "receivingTargets": 47, + "receivingTouchdowns40Plus": 1, "receivingYards": 304, "receivingYardsAfterCatch": 10, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 57, "receivingYardsPerReception": 10.857142857142858, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushingAttempts": 2, "rushingYards": 10, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -29891,14 +37084,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066766389, "passingTouchdowns50Plus": 0.043631835, "passingYards": 19.19251049, + "passingYards300To399": 0.030788758, + "passingYards400Plus": 0.004158754, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000970002, "rushingAttempts": 0.094194888, + "rushingGame100To199Yards": -0.00000244869, + "rushingGame200PlusYards": -8.35643e-8, "rushingTouchdowns": 0.002890928, "rushingTouchdowns40Plus": 0.000172754, "rushingTouchdowns50Plus": 0.000120928, "rushingYards": 0.386611745, "rushingYardsPerAttempt": 4.104381386386913, - "turnovers": 0.100000342, + "totalTurnovers": 0.100000342, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29908,16 +37107,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 178, "passingCompletionPercentage": 0.6348314606741573, "passingCompletions": 113, + "passingCompletionsPer10Completions": 9, + "passingCompletionsPer5Completions": 20, "passingIncompletions": 65, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 10, "passingInterceptions": 4, "passingTouchdowns": 6, "passingTouchdowns40Plus": 2, "passingTouchdowns50Plus": 1, "passingYards": 1247, + "passingYards300To399": 1, + "passingYardsPer100Yards": 10, + "passingYardsPer10Yards": 122, + "passingYardsPer20Yards": 59, + "passingYardsPer25Yards": 47, + "passingYardsPer50Yards": 21, + "passingYardsPer5Yards": 247, "rushingAttempts": 8, "rushingYards": 21, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.625, - "turnovers": 5, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -29961,14 +37174,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066788822, "passingTouchdowns50Plus": 0.043646495, "passingYards": 19.41909454, + "passingYards300To399": 0.031148139, + "passingYards400Plus": 0.004207297, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.000123575, "rushingAttempts": 0.096835675, + "rushingGame100To199Yards": -0.00000252139, + "rushingGame200PlusYards": -8.60455e-8, "rushingTouchdowns": 0.003106776, "rushingTouchdowns40Plus": 0.000177597, "rushingTouchdowns50Plus": 0.000124318, "rushingYards": 0.400511749, "rushingYardsPerAttempt": 4.135993775021447, - "turnovers": 0.104785789, + "totalTurnovers": 0.104785789, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29979,13 +37198,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 42, "passingCompletionPercentage": 0.47619047619047616, "passingCompletions": 20, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 22, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 2, "passingYards": 187, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 18, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 37, "rushingAttempts": 5, "rushingYards": 39, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 7.8, - "turnovers": 3, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -30020,6 +37256,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, + "teamWin": 3, "usesPoints": false, }, }, @@ -30064,10 +37302,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingTouchdowns": 1, "receivingYards": 78, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 9.75, "rushingAttempts": 9, "rushingYards": 16, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.7777777777777777, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -30110,10 +37355,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingTouchdowns": 1, "receivingYards": 37, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 18.5, "rushingAttempts": 2, "rushingYards": -1, "rushingYardsPerAttempt": -0.5, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -30157,14 +37408,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066832146, "passingTouchdowns50Plus": 0.043674808, "passingYards": 19.85550033, + "passingYards300To399": 0.031839679, + "passingYards400Plus": 0.004300706, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000736351, "rushingAttempts": 0.096361225, + "rushingGame100To199Yards": -0.00000245819, + "rushingGame200PlusYards": -8.38885e-8, "rushingTouchdowns": 0.003291158, "rushingTouchdowns40Plus": 0.000176727, "rushingTouchdowns50Plus": 0.000123709, "rushingYards": 0.38837231, "rushingYardsPerAttempt": 4.0303795432239475, - "turnovers": 0.11985931, + "totalTurnovers": 0.11985931, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30172,16 +37429,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 54, "passingCompletionPercentage": 0.6296296296296297, "passingCompletions": 34, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 20, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 3, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 372, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 36, + "passingYardsPer20Yards": 17, + "passingYardsPer25Yards": 14, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 73, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 63, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 6.3, - "turnovers": 3, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -30219,12 +37493,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.017814711, "rushing2PtConversions": 0.002529599, "rushingAttempts": 4.109932004, + "rushingGame100To199Yards": 0.000586286, + "rushingGame200PlusYards": 0.00002, "rushingTouchdowns": 0.142160717, "rushingTouchdowns40Plus": 0.007555165, "rushingTouchdowns50Plus": 0.005288615, "rushingYards": 16.00400451, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.893982794465716, - "turnovers": 0.017814711, + "totalTurnovers": 0.017814711, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30232,7 +37510,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 3, "rushingAttempts": 2, "rushingYards": 19, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 9.5, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -30275,14 +37557,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.510920129, "receivingTargets": 2.659120827, "receivingTouchdowns": 0.12902135, - "receivingTouchdowns40Plus": 0.102857487, - "receivingTouchdowns50Plus": 0.067217368, + "receivingTouchdowns40Plus": 0.010648614, + "receivingTouchdowns50Plus": 0.000329339, "receivingYards": 18.74422339, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.405833392666382, - "turnovers": 0.008858764, + "totalTurnovers": 0.008858764, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -30322,11 +37608,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.22059012, "receivingTargets": 30.24061245, "receivingTouchdowns": 2.040980261, - "receivingTouchdowns40Plus": 0.1043753, - "receivingTouchdowns50Plus": 0.068209258, + "receivingTouchdowns40Plus": 0.080316277, + "receivingTouchdowns50Plus": 0.002484009, "receivingYards": 213.7484704, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 10.570832459957899, - "turnovers": 0.134259443, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.134259443, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30336,7 +37630,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingYards": 225, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 13.235294117647058, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -30376,11 +37676,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.04683755, "receivingTargets": 19.04132506, "receivingTouchdowns": 1.188198667, - "receivingTouchdowns40Plus": 0.062492152, - "receivingTouchdowns50Plus": 0.040838622, + "receivingTouchdowns40Plus": 0.058563666, + "receivingTouchdowns50Plus": 0.001811247, "receivingYards": 140.307466, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 11.646829752427434, - "turnovers": 0.077758101, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.077758101, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30390,10 +37698,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingTouchdowns": 3, "receivingYards": 143, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 11.916666666666666, "rushingAttempts": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 9, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -30433,11 +37749,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.00880981, "receivingTargets": 55.44112283, "receivingTouchdowns": 2.96145163, - "receivingTouchdowns40Plus": 0.110624113, - "receivingTouchdowns50Plus": 0.072292858, + "receivingTouchdowns40Plus": 0.237572554, + "receivingTouchdowns50Plus": 0.007347605, "receivingYards": 397.1886913, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 39, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 11.030319896596438, - "turnovers": 0.218629151, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.218629151, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30445,7 +37769,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 43, "receivingYards": 305, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 57, "receivingYardsPerReception": 12.708333333333334, + "receptionsPer5Receptions": 2, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -30485,24 +37817,43 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.280074101, "receivingTargets": 10.92433498, "receivingTouchdowns": 0.297196451, - "receivingTouchdowns40Plus": 0.044578586, - "receivingTouchdowns50Plus": 0.029132106, + "receivingTouchdowns40Plus": 0.030115672, + "receivingTouchdowns50Plus": 0.000931413, "receivingYards": 62.77933732, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 7.581977715926241, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.031624154, "rushingAttempts": 43.69786267, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.079764058, + "rushingGame200PlusYards": 0.002722041, "rushingTouchdowns": 1.422670093, "rushingTouchdowns40Plus": 0.082168873, "rushingTouchdowns50Plus": 0.057518211, "rushingYards": 171.5050982, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 17, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 34, "rushingYardsPerAttempt": 3.9247937478128376, - "turnovers": 0.116551645, + "totalTurnovers": 0.116551645, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 4, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -30542,18 +37893,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.12996908, "receivingTargets": 0.174618593, "receivingTouchdowns": 0.005060943, - "receivingTouchdowns40Plus": 0.003587591, - "receivingTouchdowns50Plus": 0.002344491, + "receivingTouchdowns40Plus": 0.000615863, + "receivingTouchdowns50Plus": 0.0000190473, "receivingYards": 1.077264494, "receivingYardsPerReception": 8.288621370559829, "rushing2PtConversions": 0.00169115, "rushingAttempts": 2.207908374, + "rushingGame100To199Yards": 0.000152062, + "rushingGame200PlusYards": 0.0000051893, "rushingTouchdowns": 0.058719265, "rushingTouchdowns40Plus": 0.004054599, "rushingTouchdowns50Plus": 0.00283822, "rushingYards": 8.60615698, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.897877774886323, - "turnovers": 0.010256119, + "totalTurnovers": 0.010256119, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30565,10 +37919,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 21, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.5, "rushingAttempts": 8, "rushingYards": 30, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.75, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -30608,11 +37970,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.668266185, "receivingTargets": 2.60774925, "receivingTouchdowns": 0.099927976, - "receivingTouchdowns40Plus": 0.089178659, - "receivingTouchdowns50Plus": 0.058278254, + "receivingTouchdowns40Plus": 0.010134869, + "receivingTouchdowns50Plus": 0.00031345, "receivingYards": 17.76926854, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.651338916876744, - "turnovers": 0.011076852, + "totalTurnovers": 0.011076852, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30626,8 +37990,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 259, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 11.772727272727273, - "turnovers": 2, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -30670,7 +38041,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 5, "receivingYards": 17, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -30733,6 +38108,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 5, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 3, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -30772,11 +38150,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.62121517, "receivingTargets": 18.08658311, "receivingTouchdowns": 0.800825042, - "receivingTouchdowns40Plus": 0.055883536, - "receivingTouchdowns50Plus": 0.036519891, + "receivingTouchdowns40Plus": 0.045840232, + "receivingTouchdowns50Plus": 0.001417739, "receivingYards": 110.5142544, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 8.7562293258962, - "turnovers": 0.067041261, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.067041261, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30789,7 +38175,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 272, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 50, "receivingYardsPerReception": 10.88, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -30833,14 +38226,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066721159, "passingTouchdowns50Plus": 0.043602277, "passingYards": 18.73652107, + "passingYards300To399": 0.030065979, + "passingYards400Plus": 0.004061125, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000875312, "rushingAttempts": 0.090058269, + "rushingGame100To199Yards": -0.00000237136, + "rushingGame200PlusYards": -8.09255e-8, "rushingTouchdowns": 0.003163916, "rushingTouchdowns40Plus": 0.000165167, "rushingTouchdowns50Plus": 0.000115617, "rushingYards": 0.372033396, "rushingYardsPerAttempt": 4.131029833584743, - "turnovers": 0.101281226, + "totalTurnovers": 0.101281226, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30850,14 +38249,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 57, "passingCompletionPercentage": 0.6140350877192983, "passingCompletions": 35, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 6, "passingIncompletions": 22, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 3, "passingTouchdowns": 1, "passingYards": 320, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 31, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 62, "rushingAttempts": 5, "rushingYards": 31, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 6.2, - "turnovers": 3, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -30901,7 +38316,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 225, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 11.842105263157896, + "teamLoss": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -30940,10 +38362,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3.5, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.1666666666666667, + "teamLoss": 10, + "teamWin": 2, "usesPoints": false, }, }, @@ -30982,18 +38409,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.386767251, "receivingTargets": 9.586911713, "receivingTouchdowns": 0.291681267, - "receivingTouchdowns40Plus": 0.059243, - "receivingTouchdowns50Plus": 0.0387153, + "receivingTouchdowns40Plus": 0.024958419, + "receivingTouchdowns50Plus": 0.00077191, "receivingYards": 60.12536568, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.139604733296611, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.03283032, "rushingAttempts": 39.62924329, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 7, + "rushingGame100To199Yards": 0.2299914, + "rushingGame200PlusYards": 0.007848724, "rushingTouchdowns": 1.688005556, "rushingTouchdowns40Plus": 0.077468948, "rushingTouchdowns50Plus": 0.054228263, "rushingYards": 171.2485747, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 17, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 34, "rushingYardsPerAttempt": 4.321267843719153, - "turnovers": 0.196955622, + "totalTurnovers": 0.196955622, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31004,11 +38447,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 16, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 43, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 2.6875, - "turnovers": 1, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -31049,11 +38498,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.55585569, "receivingTargets": 33.09664689, "receivingTouchdowns": 2.100778965, - "receivingTouchdowns40Plus": 0.161747677, - "receivingTouchdowns50Plus": 0.105702107, + "receivingTouchdowns40Plus": 0.103460186, + "receivingTouchdowns50Plus": 0.0031998, "receivingYards": 259.411248, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 13.980020772623286, - "turnovers": 0.11092473, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.11092473, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31065,7 +38522,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 5, "receivingYards": 166, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 11.857142857142858, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -31103,20 +38567,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 16.61327933, "passingCompletionPercentage": 0.606569896, "passingCompletions": 10.07711511, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 6.536164220000002, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 0.492981628, "passingTouchdowns": 0.772077184, "passingTouchdowns40Plus": 0.077838468, "passingTouchdowns50Plus": 0.050867439, "passingYards": 113.3681858, + "passingYards300To399": 0.171012733, + "passingYards400Plus": 0.023099336, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 11, + "passingYardsPer20Yards": 5, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 22, "rushing2PtConversions": 0.000844612, "rushingAttempts": 0.54816294, + "rushingGame100To199Yards": -0.00000209497, + "rushingGame200PlusYards": -7.14933e-8, "rushingTouchdowns": 0.02189144, "rushingTouchdowns40Plus": 0.001005612, "rushingTouchdowns50Plus": 0.000703928, "rushingYards": 2.250624492, "rushingYardsPerAttempt": 4.105758211235513, - "turnovers": 0.607619144, + "totalTurnovers": 0.607619144, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31124,12 +38601,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 0.5, "passingCompletions": 6, "passingIncompletions": 6, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "passingYards": 43, + "passingYardsPer10Yards": 4, + "passingYardsPer20Yards": 2, + "passingYardsPer5Yards": 8, "rushingAttempts": 4, "rushingYards": 11, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 2.75, - "turnovers": 1, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -31169,11 +38655,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.581097627, "receivingTargets": 5.383668152, "receivingTouchdowns": 0.412713702, - "receivingTouchdowns40Plus": 0.105079227, - "receivingTouchdowns50Plus": 0.068669275, + "receivingTouchdowns40Plus": 0.020041744, + "receivingTouchdowns50Plus": 0.000619848, "receivingYards": 38.12032847, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.644872729128755, - "turnovers": 0.023777554, + "totalTurnovers": 0.023777554, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31182,10 +38672,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4, "receivingTargets": 6, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 77, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 19.25, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -31226,14 +38722,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.563023081, "receivingTargets": 11.20504956, "receivingTouchdowns": 0.380053993, - "receivingTouchdowns40Plus": 0.109020811, - "receivingTouchdowns50Plus": 0.0712451, + "receivingTouchdowns40Plus": 0.036226743, + "receivingTouchdowns50Plus": 0.001120415, "receivingYards": 80.04308262, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 12.196069041982394, - "turnovers": 0.038480042, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.038480042, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -31270,6 +38774,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 4, "usesPoints": false, }, }, @@ -31316,6 +38822,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 4, "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 9, + "teamWin": 5, "usesPoints": false, }, }, @@ -31377,6 +38885,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedExtraPoints": 1, "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -31426,6 +38936,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 8, + "teamWin": 7, "usesPoints": false, }, }, @@ -31465,18 +38977,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.72901519, "receivingTargets": 57.8534792, "receivingTouchdowns": 2.026317478, - "receivingTouchdowns40Plus": 0.080758962, - "receivingTouchdowns50Plus": 0.052775982, + "receivingTouchdowns40Plus": 0.221461384, + "receivingTouchdowns50Plus": 0.006849321, "receivingYards": 385.3329357, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 77, "receivingYardsPerReception": 8.61483164928139, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.019921037, "rushingAttempts": 11.83449742, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.003876573, + "rushingGame200PlusYards": 0.000132293, "rushingTouchdowns": 0.903046114, "rushingTouchdowns40Plus": 0.021852288, "rushingTouchdowns50Plus": 0.015296602, "rushingYards": 38.84971219, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.2827513337697782, - "turnovers": 0.557995802, + "totalTurnovers": 0.557995802, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31489,11 +39017,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 324, "receivingYardsAfterCatch": 70, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 10.8, + "receptionsPer5Receptions": 1, "rushingAttempts": 8, "rushingYards": 30, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.75, - "turnovers": 2, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -31536,18 +39074,35 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.28923755, "receivingTargets": 55.13823342, "receivingTouchdowns": 2.793112824, - "receivingTouchdowns40Plus": 0.234669133, - "receivingTouchdowns50Plus": 0.153356278, + "receivingTouchdowns40Plus": 0.370762342, + "receivingTouchdowns50Plus": 0.011466877, "receivingYards": 474.3780652, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 15.661604700908029, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.005150147, "rushingAttempts": 12.35331671, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.018295585, + "rushingGame200PlusYards": 0.000624358, "rushingTouchdowns": 0.16119597, "rushingTouchdowns40Plus": 0.022816897, "rushingTouchdowns50Plus": 0.015971828, "rushingYards": 82.91849467, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 6.712245514022769, - "turnovers": 0.304600132, + "totalTurnovers": 0.304600132, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31558,12 +39113,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12, "receivingTargets": 24, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 186, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 15.5, "rushingAttempts": 7, "rushingYards": 41, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 5.857142857142857, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -31600,20 +39163,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 264.1838935, "passingCompletionPercentage": 0.649567182, "passingCompletions": 171.6051872, + "passingCompletionsPer10Completions": 17, + "passingCompletionsPer5Completions": 34, "passingIncompletions": 92.57870630000002, + "passingIncompletionsPer10Incompletions": 9, + "passingIncompletionsPer5Incompletions": 18, "passingInterceptions": 3.87309842, "passingTouchdowns": 9.232478267, "passingTouchdowns40Plus": 1.605589369, "passingTouchdowns50Plus": 1.049252652, "passingYards": 1820.772006, + "passingYards300To399": 1.807977108, + "passingYards400Plus": 0.244210302, + "passingYardsPer100Yards": 18, + "passingYardsPer10Yards": 182, + "passingYardsPer20Yards": 91, + "passingYardsPer25Yards": 72, + "passingYardsPer50Yards": 36, + "passingYardsPer5Yards": 364, "rushing2PtConversions": 0.009672247, "rushingAttempts": 12.5792786, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.004883038, + "rushingGame200PlusYards": 0.000166639, "rushingTouchdowns": 0.334508571, "rushingTouchdowns40Plus": 0.023450441, "rushingTouchdowns50Plus": 0.016415309, "rushingYards": 28.49360416, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.2651222749768816, - "turnovers": 5.431268946, + "totalTurnovers": 5.431268946, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31622,14 +39205,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 80, "passingCompletionPercentage": 0.625, "passingCompletions": 50, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 9, "passingIncompletions": 30, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 4, "passingTouchdowns": 2, "passingYards": 400, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 39, + "passingYardsPer20Yards": 18, + "passingYardsPer25Yards": 15, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 79, "rushingAttempts": 2, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.5, - "turnovers": 6, + "teamLoss": 13, + "teamWin": 3, + "totalTurnovers": 6, "usesPoints": false, }, }, @@ -31670,13 +39266,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 35, "passingCompletionPercentage": 0.5428571428571428, "passingCompletions": 19, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 16, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 3, "passingYards": 138, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 13, + "passingYardsPer20Yards": 6, + "passingYardsPer25Yards": 5, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 27, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, - "turnovers": 3, + "teamLoss": 6, + "teamWin": 1, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -31717,11 +39325,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.37439724, "receivingTargets": 58.28064183, "receivingTouchdowns": 2.492618823, - "receivingTouchdowns40Plus": 0.113359894, - "receivingTouchdowns50Plus": 0.074080691, + "receivingTouchdowns40Plus": 0.272513782, + "receivingTouchdowns50Plus": 0.008428261, "receivingYards": 420.2423059, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 84, "receivingYardsPerReception": 11.879843578643547, - "turnovers": 0.238540878, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.238540878, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31729,7 +39345,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 16, "receivingTouchdowns": 2, "receivingYards": 135, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 11.25, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -31774,11 +39396,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.133541692, "receivingTargets": 5.696678629, "receivingTouchdowns": 0.185441927, - "receivingTouchdowns40Plus": 0.079331595, - "receivingTouchdowns50Plus": 0.051843197, + "receivingTouchdowns40Plus": 0.019799731, + "receivingTouchdowns50Plus": 0.000612363, "receivingYards": 37.90513532, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.096579221132634, - "turnovers": 0.017780668, + "totalTurnovers": 0.017780668, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31795,10 +39421,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 79, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 7.9, "rushingAttempts": 2, "rushingYards": 20, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 10, + "teamLoss": 12, + "teamWin": 4, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -31839,11 +39474,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.565916841, "receivingTargets": 4.487007174, "receivingTouchdowns": 0.212410216, - "receivingTouchdowns40Plus": 0.112585788, - "receivingTouchdowns50Plus": 0.073574812, + "receivingTouchdowns40Plus": 0.015938424, + "receivingTouchdowns50Plus": 0.000492941, "receivingYards": 32.40629055, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 12.629517072490348, - "turnovers": 0.015044376, + "totalTurnovers": 0.015044376, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31854,10 +39493,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22, "receivingTargets": 25, "receivingYards": 216, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 9.818181818181818, + "receptionsPer5Receptions": 2, "rushingAttempts": 1, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 7, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -31930,11 +39578,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.654527184, "receivingTargets": 5.577641173, "receivingTouchdowns": 0.342931391, - "receivingTouchdowns40Plus": 0.106362299, - "receivingTouchdowns50Plus": 0.069507762, + "receivingTouchdowns40Plus": 0.020700337, + "receivingTouchdowns50Plus": 0.000640217, "receivingYards": 39.60307985, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.83671781766667, - "turnovers": 0.024265107, + "totalTurnovers": 0.024265107, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31943,7 +39595,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5, "receivingTargets": 7, "receivingYards": 77, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 15.4, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -31981,6 +39641,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -32020,11 +39682,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.438620023, "receivingTargets": 11.23841404, "receivingTouchdowns": 0.732703485, - "receivingTouchdowns40Plus": 0.100358881, - "receivingTouchdowns50Plus": 0.065584529, + "receivingTouchdowns40Plus": 0.03578068, + "receivingTouchdowns50Plus": 0.001106619, "receivingYards": 78.71909913, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.582486924537454, - "turnovers": 0.049390496, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.049390496, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32032,7 +39700,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 20, "receivingTouchdowns": 3, "receivingYards": 100, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 11.11111111111111, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -32072,11 +39746,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.825532681, "receivingTargets": 2.731083746, "receivingTouchdowns": 0.155637491, - "receivingTouchdowns40Plus": 0.105422939, - "receivingTouchdowns50Plus": 0.06889389, + "receivingTouchdowns40Plus": 0.01096451, + "receivingTouchdowns50Plus": 0.000339109, "receivingYards": 19.34736438, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.598202147442134, - "turnovers": 0.012121061, + "totalTurnovers": 0.012121061, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32086,7 +39762,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingTouchdowns": 1, "receivingYards": 41, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -32126,6 +39807,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 2, "passingIncompletions": 4, "passingYards": 21, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -32199,11 +39885,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.86343887, "receivingTargets": 26.71641258, "receivingTouchdowns": 1.295195892, - "receivingTouchdowns40Plus": 0.170602885, - "receivingTouchdowns50Plus": 0.111488985, + "receivingTouchdowns40Plus": 0.101790788, + "receivingTouchdowns50Plus": 0.003148169, "receivingYards": 211.3188161, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 15.24288584395078, - "turnovers": 0.051133018, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.051133018, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32213,7 +39907,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 190, "receivingYardsAfterCatch": -1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 11.176470588235293, + "receptionsPer5Receptions": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -32256,20 +39958,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066812054, "passingTouchdowns50Plus": 0.043661677, "passingYards": 19.65346407, + "passingYards300To399": 0.031519715, + "passingYards400Plus": 0.004257487, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.000101812, "rushingAttempts": 0.096640716, + "rushingGame100To199Yards": -0.00000251185, + "rushingGame200PlusYards": -8.57199e-8, "rushingTouchdowns": 0.002546309, "rushingTouchdowns40Plus": 0.00017724, "rushingTouchdowns50Plus": 0.000124068, "rushingYards": 0.398661978, "rushingYardsPerAttempt": 4.125196858019967, - "turnovers": 0.100584987, + "totalTurnovers": 0.100584987, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -32313,14 +40023,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066765819, "passingTouchdowns50Plus": 0.043631463, "passingYards": 19.18703102, + "passingYards300To399": 0.030780215, + "passingYards400Plus": 0.0041576, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000626687, "rushingAttempts": 0.089534718, + "rushingGame100To199Yards": -0.0000023417, + "rushingGame200PlusYards": -7.99132e-8, "rushingTouchdowns": 0.003510079, "rushingTouchdowns40Plus": 0.000164207, "rushingTouchdowns50Plus": 0.000114945, "rushingYards": 0.366574911, "rushingYardsPerAttempt": 4.0942208697189395, - "turnovers": 0.103341344, + "totalTurnovers": 0.103341344, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32329,9 +40045,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 2, "passingIncompletions": 1, "passingYards": 23, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushingAttempts": 7, "rushingYards": -9, "rushingYardsPerAttempt": -1.2857142857142858, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -32365,6 +40086,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -32437,18 +40160,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.696765692, "receivingTargets": 10.989276, "receivingTouchdowns": 0.30822484, - "receivingTouchdowns40Plus": 0.078123071, - "receivingTouchdowns50Plus": 0.051053427, + "receivingTouchdowns40Plus": 0.033671134, + "receivingTouchdowns50Plus": 0.001041375, "receivingYards": 72.60440336, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 8.348437330763954, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.007948446, "rushingAttempts": 9.061158997, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.00361115, + "rushingGame200PlusYards": 0.000123235, "rushingTouchdowns": 0.295395621, "rushingTouchdowns40Plus": 0.016704677, "rushingTouchdowns50Plus": 0.011693274, "rushingYards": 37.54229299, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.143210929466047, - "turnovers": 0.196138923, + "totalTurnovers": 0.196138923, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32458,10 +40194,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 11, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 20, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 1.8181818181818181, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -32501,11 +40243,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21.67563055, "receivingTargets": 31.89839488, "receivingTouchdowns": 1.956811976, - "receivingTouchdowns40Plus": 0.103136584, - "receivingTouchdowns50Plus": 0.067399758, + "receivingTouchdowns40Plus": 0.085317854, + "receivingTouchdowns50Plus": 0.002638697, "receivingYards": 224.9928981, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 44, "receivingYardsPerReception": 10.379993217775157, - "turnovers": 0.115136425, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.115136425, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32515,7 +40265,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 36, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 9, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -32551,6 +40305,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -32587,6 +40343,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -32629,11 +40387,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.07835123, "receivingTargets": 48.97863575, "receivingTouchdowns": 2.045995305, - "receivingTouchdowns40Plus": 0.125842465, - "receivingTouchdowns50Plus": 0.082238051, + "receivingTouchdowns40Plus": 0.191957407, + "receivingTouchdowns50Plus": 0.005936827, "receivingYards": 361.528911, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 72, "receivingYardsPerReception": 12.432923316058316, - "turnovers": 0.170490969, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.170490969, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32645,7 +40411,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 190, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 17.272727272727273, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -32686,18 +40459,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.42369199, "receivingTargets": 52.84449754, "receivingTouchdowns": 2.279666082, - "receivingTouchdowns40Plus": 0.1993747, - "receivingTouchdowns50Plus": 0.130291366, + "receivingTouchdowns40Plus": 0.298371347, + "receivingTouchdowns50Plus": 0.00923, "receivingYards": 436.0800013, + "receivingYardsPer100Yards": 4, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 87, "receivingYardsPerReception": 16.503371348145965, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.002699372, "rushingAttempts": 3.80010498, + "rushingGame100To199Yards": 0.001358616, + "rushingGame200PlusYards": 0.0000463643, "rushingTouchdowns": 0.092869943, "rushingTouchdowns40Plus": 0.006984383, "rushingTouchdowns50Plus": 0.004889068, "rushingYards": 23.59541082, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.20914710098351, - "turnovers": 0.216442883, + "totalTurnovers": 0.216442883, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32707,8 +40493,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 19, "receivingYards": 64, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 9.142857142857142, "rushingAttempts": 4, + "rushingYardsPer5Yards": 2, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -32749,7 +40542,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -32793,6 +40589,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "madeFieldGoalsFrom40To49": 2, "madeFieldGoalsFrom50Plus": 2, "madeFieldGoalsFromUnder40": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -32825,6 +40623,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -32862,34 +40662,62 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 15.94690775, "passingCompletionPercentage": 0.614542665, "passingCompletions": 9.800055178, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 6.146852572, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 0.467070888, "passingTouchdowns": 0.540434967, "passingTouchdowns40Plus": 0.077258208, "passingTouchdowns50Plus": 0.050488239, "passingYards": 109.0687125, + "passingYards300To399": 0.164994252, + "passingYards400Plus": 0.022286397, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 10, + "passingYardsPer20Yards": 5, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 21, "rushing2PtConversions": 0.000539104, "rushingAttempts": 0.526598575, + "rushingGame100To199Yards": -0.00000264646, + "rushingGame200PlusYards": -9.03134e-8, "rushingTouchdowns": 0.017931266, "rushingTouchdowns40Plus": 0.00096604, "rushingTouchdowns50Plus": 0.000676228, "rushingYards": 2.148717867, "rushingYardsPerAttempt": 4.080371594245199, - "turnovers": 0.623074107, + "totalTurnovers": 0.623074107, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 110, "passingCompletionPercentage": 0.5454545454545454, "passingCompletions": 60, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 11, "passingIncompletions": 50, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 8, "passingInterceptions": 4, "passingTouchdowns": 1, "passingYards": 539, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 52, + "passingYardsPer20Yards": 25, + "passingYardsPer25Yards": 21, + "passingYardsPer50Yards": 9, + "passingYardsPer5Yards": 107, "rushingAttempts": 5, "rushingYards": 32, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.4, - "turnovers": 4, + "teamLoss": 12, + "teamWin": 4, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -32931,9 +40759,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17, "receivingTargets": 35, "receivingTouchdowns": 5, - "receivingTouchdowns40Plus": 1, "receivingYards": 231, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 13.588235294117647, + "receptionsPer5Receptions": 1, + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -32978,18 +40812,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.996469041, "receivingTargets": 3.189839488, "receivingTouchdowns": 0.140746282, - "receivingTouchdowns40Plus": 0.204055363, - "receivingTouchdowns50Plus": 0.13335018, + "receivingTouchdowns40Plus": 0.01457926, + "receivingTouchdowns50Plus": 0.000451, "receivingYards": 26.4817123, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 13.264273953747725, "rushing2PtConversions": 0.000825155, "rushingAttempts": 1.859932659, + "rushingGame100To199Yards": 0.000281, + "rushingGame200PlusYards": 0.00000958, "rushingTouchdowns": 0.037749697, "rushingTouchdowns40Plus": 0.003414616, "rushingTouchdowns50Plus": 0.002390231, "rushingYards": 11.54169482, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.2054369356605825, - "turnovers": 0.020663357, + "totalTurnovers": 0.020663357, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33003,10 +40845,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 29, "receivingYards": 167, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 8.35, + "receptionsPer5Receptions": 1, "rushingAttempts": 3, "rushingYards": 22, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 7.333333333333333, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -33043,6 +40895,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -33082,11 +40936,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.326384948, "receivingTargets": 5.029149582, "receivingTouchdowns": 0.282081104, - "receivingTouchdowns40Plus": 0.098058417, - "receivingTouchdowns50Plus": 0.064081176, + "receivingTouchdowns40Plus": 0.018648145, + "receivingTouchdowns50Plus": 0.000576747, "receivingYards": 35.04499009, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.535458354292674, - "turnovers": 0.022086328, + "totalTurnovers": 0.022086328, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33096,7 +40954,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 17, "receivingYards": 116, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 9.666666666666666, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -33137,11 +41001,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.470527021, "receivingTargets": 2.572838468, "receivingTouchdowns": 0.120446514, - "receivingTouchdowns40Plus": 0.101376362, - "receivingTouchdowns50Plus": 0.066249453, + "receivingTouchdowns40Plus": 0.010298504, + "receivingTouchdowns50Plus": 0.000319, "receivingYards": 18.07802946, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.293571761575945, - "turnovers": 0.008621932, + "totalTurnovers": 0.008621932, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33149,7 +41015,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 20, "receivingYards": 144, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 11.076923076923077, + "receptionsPer5Receptions": 1, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -33190,14 +41065,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.641702397, "receivingTargets": 1.092433498, "receivingTouchdowns": 0.047227928, - "receivingTouchdowns40Plus": 0.126094342, - "receivingTouchdowns50Plus": 0.082402652, + "receivingTouchdowns40Plus": 0.004791479, + "receivingTouchdowns50Plus": 0.00014819, "receivingYards": 8.068700311, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 12.573897726924029, - "turnovers": 0.003762403, + "totalTurnovers": 0.003762403, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -33237,18 +41115,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.719322905, "receivingTargets": 2.659120827, "receivingTouchdowns": 0.170073598, - "receivingTouchdowns40Plus": 0.085736778, - "receivingTouchdowns50Plus": 0.056028984, + "receivingTouchdowns40Plus": 0.0102436, + "receivingTouchdowns50Plus": 0.000316812, "receivingYards": 17.97450548, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.454409365296044, - "turnovers": 0.011415855, + "totalTurnovers": 0.011415855, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -33289,6 +41172,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 4, "defensiveSoloTackles": 7, "defensiveTotalTackles": 11, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -33330,7 +41215,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingTouchdowns": 1, "receivingYards": 91, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 18.2, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -33377,8 +41268,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingYards": 3, "receivingYardsPerReception": 3, "rushingAttempts": 19, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 71, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 3.736842105263158, + "teamLoss": 9, + "teamWin": 8, "usesPoints": false, }, }, @@ -33421,6 +41320,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFromUnder40": 1, + "teamWin": 5, "usesPoints": false, }, }, @@ -33483,6 +41383,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 4, "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFrom50Plus": 1, + "netPunts": 1, + "puntYards": 24, + "puntsInsideThe20": 1, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -33517,6 +41422,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, + "teamWin": 3, "usesPoints": false, }, }, @@ -33560,14 +41467,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066680831, "passingTouchdowns50Plus": 0.043575923, "passingYards": 18.32860954, + "passingYards300To399": 0.029418696, + "passingYards400Plus": 0.003973694, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000647489, "rushingAttempts": 0.089390071, + "rushingGame100To199Yards": -0.00000234106, + "rushingGame200PlusYards": -7.98914e-8, "rushingTouchdowns": 0.003388396, "rushingTouchdowns40Plus": 0.000163941, "rushingTouchdowns50Plus": 0.000114759, "rushingYards": 0.366386909, "rushingYardsPerAttempt": 4.098742789901129, - "turnovers": 0.104639847, + "totalTurnovers": 0.104639847, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33576,12 +41489,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 101, "passingCompletionPercentage": 0.6039603960396039, "passingCompletions": 61, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 10, "passingIncompletions": 40, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 6, "passingInterceptions": 4, "passingTouchdowns": 4, "passingYards": 626, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 59, + "passingYardsPer20Yards": 28, + "passingYardsPer25Yards": 22, + "passingYardsPer50Yards": 11, + "passingYardsPer5Yards": 123, "rushingAttempts": 6, - "turnovers": 4, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -33621,24 +41546,42 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.643740232, "receivingTargets": 9.043291555, "receivingTouchdowns": 0.178468403, - "receivingTouchdowns40Plus": 0.036849436, - "receivingTouchdowns50Plus": 0.024081107, + "receivingTouchdowns40Plus": 0.024661662, + "receivingTouchdowns50Plus": 0.000762732, "receivingYards": 48.87869078, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 7.3571044431527675, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.117190692, "rushingAttempts": 80.84046596, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 16, + "rushingGame100To199Yards": 0.27859681, + "rushingGame200PlusYards": 0.00950744, "rushingTouchdowns": 2.200723008, "rushingTouchdowns40Plus": 0.155199081, "rushingTouchdowns50Plus": 0.108639357, "rushingYards": 319.2289926, + "rushingYardsPer100Yards": 3, + "rushingYardsPer10Yards": 31, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 63, "rushingYardsPerAttempt": 3.9488762070960237, - "turnovers": 0.45792531, + "totalTurnovers": 0.45792531, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 6, "rushingYards": 17, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.8333333333333335, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -33678,11 +41621,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.212544257, "receivingTargets": 7.806525363, "receivingTouchdowns": 0.3695289, - "receivingTouchdowns40Plus": 0.094697032, - "receivingTouchdowns50Plus": 0.061884511, + "receivingTouchdowns40Plus": 0.026733056, + "receivingTouchdowns50Plus": 0.000826796, "receivingYards": 53.990811, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.357861408561657, - "turnovers": 0.034609934, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.034609934, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33692,7 +41641,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 38, "receivingYards": 214, "receivingYardsAfterCatch": 33, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 8.916666666666666, + "receptionsPer5Receptions": 1, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -33761,12 +41717,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 25, "passingCompletionPercentage": 0.6, "passingCompletions": 15, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 10, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 2, "passingYards": 232, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 46, "rushingAttempts": 3, "rushingYards": -2, "rushingYardsPerAttempt": -0.6666666666666666, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -33806,18 +41774,31 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.117512446, "receivingTargets": 5.513823342, "receivingTouchdowns": 0.167286097, - "receivingTouchdowns40Plus": 0.059657699, - "receivingTouchdowns50Plus": 0.038986306, + "receivingTouchdowns40Plus": 0.01829079, + "receivingTouchdowns50Plus": 0.000565695, "receivingYards": 34.27040905, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.323085722131172, "rushing2PtConversions": 0.016272834, "rushingAttempts": 24.70663341, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.024567254, + "rushingGame200PlusYards": 0.000838386, "rushingTouchdowns": 0.50932825, "rushingTouchdowns40Plus": 0.045957965, "rushingTouchdowns50Plus": 0.032170575, "rushingYards": 95.78780943, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 3.877007759026769, - "turnovers": 0.128819642, + "totalTurnovers": 0.128819642, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33827,10 +41808,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 19, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9.5, "rushingAttempts": 11, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 49, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.454545454545454, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -33874,17 +41864,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066775929, "passingTouchdowns50Plus": 0.04363807, "passingYards": 19.28871585, + "passingYards300To399": 0.030941265, + "passingYards400Plus": 0.004179354, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000815649, "rushingAttempts": 0.09406605, + "rushingGame100To199Yards": -0.0000024423, + "rushingGame200PlusYards": -8.33462e-8, "rushingTouchdowns": 0.002792563, "rushingTouchdowns40Plus": 0.000172518, "rushingTouchdowns50Plus": 0.000120762, "rushingYards": 0.385427014, "rushingYardsPerAttempt": 4.09740829980636, - "turnovers": 0.099290651, + "totalTurnovers": 0.099290651, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -33927,7 +41926,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingTouchdowns": 2, "receivingYards": 116, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 19.333333333333332, + "teamLoss": 2, + "teamWin": 9, "usesPoints": false, }, }, @@ -33965,6 +41970,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -34004,11 +42011,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.14139047, "receivingTargets": 28.09603509, "receivingTouchdowns": 1.949640331, - "receivingTouchdowns40Plus": 0.083869161, - "receivingTouchdowns50Plus": 0.054808497, + "receivingTouchdowns40Plus": 0.070467695, + "receivingTouchdowns50Plus": 0.002179413, "receivingYards": 188.8083846, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 9.86388031193013, - "turnovers": 0.129160144, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.129160144, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34018,7 +42033,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 24, "receivingTouchdowns": 1, "receivingYards": 263, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 49, "receivingYardsPerReception": 12.523809523809524, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -34063,16 +42085,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.508108603, "receivingTargets": 11.7321529, "receivingTouchdowns": 0.514449808, - "receivingTouchdowns40Plus": 0.13117658, - "receivingTouchdowns50Plus": 0.085723895, + "receivingTouchdowns40Plus": 0.038698043, + "receivingTouchdowns50Plus": 0.0012, "receivingYards": 87.51107835, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 11.655542424497346, - "turnovers": 0.035216982, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.035216982, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 7, "defensiveSoloTackles": 7, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 14, "fumbles": 2, "kickoffReturnYards": 663, @@ -34081,10 +42110,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 6, "receivingYards": 40, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 6.666666666666667, "rushingAttempts": 2, "rushingYards": 12, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6, + "teamLoss": 12, + "teamWin": 4, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -34122,6 +42158,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -34192,6 +42230,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -34228,6 +42268,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -34270,7 +42312,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4, "receivingTargets": 4, "receivingYards": 39, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.75, + "teamLoss": 4, + "teamWin": 4, "usesPoints": false, }, }, @@ -34313,7 +42360,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 97, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 10.777777777777779, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -34349,6 +42402,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -34388,11 +42443,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.31596237, "receivingTargets": 12.57287395, "receivingTouchdowns": 0.705202759, - "receivingTouchdowns40Plus": 0.098058417, - "receivingTouchdowns50Plus": 0.064081176, + "receivingTouchdowns40Plus": 0.038730201, + "receivingTouchdowns50Plus": 0.001197841, "receivingYards": 87.61247522, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 10.53545835369142, - "turnovers": 0.05521582, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.05521582, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34400,7 +42461,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 45, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 15, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -34444,13 +42511,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 4, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 94, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 47, "rushingAttempts": 1, "rushingYards": 14, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 14, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -34491,11 +42565,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.545541383, "receivingTargets": 9.701822244, "receivingTouchdowns": 0.459133364, - "receivingTouchdowns40Plus": 0.112585788, - "receivingTouchdowns50Plus": 0.073574812, + "receivingTouchdowns40Plus": 0.035929175, + "receivingTouchdowns50Plus": 0.001111212, "receivingYards": 70.19466304, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 12.657855778550953, - "turnovers": 0.032514386, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.032514386, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34506,7 +42586,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 48, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 48, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -34544,6 +42630,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -34587,7 +42675,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 17, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.5, + "teamLoss": 3, + "teamWin": 9, "usesPoints": false, }, }, @@ -34625,6 +42717,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -34661,6 +42755,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -34724,6 +42820,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 4, "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -34784,6 +42882,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -34843,6 +42943,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "madeFieldGoalsFrom50Plus": 1, "madeFieldGoalsFromUnder40": 3, "missedExtraPoints": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -34875,6 +42977,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -34920,6 +43024,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 4, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 2, + "teamLoss": 8, + "teamWin": 3, "usesPoints": false, }, }, @@ -34953,6 +43059,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -34996,14 +43105,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.004177827, "passingTouchdowns50Plus": 0.00273021, "passingYards": 1.249248163, + "passingYards300To399": 0.002003121, + "passingYards400Plus": 0.000270569, "rushing2PtConversions": 0.0000110574, "rushingAttempts": 0.006111507, + "rushingGame100To199Yards": -1.60928e-7, + "rushingGame200PlusYards": -5.49185e-9, "rushingTouchdowns": 0.000199838, "rushingTouchdowns40Plus": 0.0000112086, "rushingTouchdowns50Plus": 0.00000784599, "rushingYards": 0.025668331, "rushingYardsPerAttempt": 4.200000261801222, - "turnovers": 0.006236225, + "totalTurnovers": 0.006236225, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35013,9 +43126,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingIncompletions": 1, "passingTouchdowns": 1, "passingYards": 22, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushingAttempts": 2, "rushingYards": -2, "rushingYardsPerAttempt": -1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -35055,11 +43173,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.530175314, "receivingTargets": 5.383668152, "receivingTouchdowns": 0.385524086, - "receivingTouchdowns40Plus": 0.079136976, - "receivingTouchdowns50Plus": 0.051716014, + "receivingTouchdowns40Plus": 0.018950711, + "receivingTouchdowns50Plus": 0.000586104, "receivingYards": 35.70753414, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.114946415944486, - "turnovers": 0.020309383, + "totalTurnovers": 0.020309383, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35069,7 +43191,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingTouchdowns": 1, "receivingYards": 170, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 8.947368421052632, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -35109,11 +43238,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.29618434, "receivingTargets": 22.05529337, "receivingTouchdowns": 1.528378645, - "receivingTouchdowns40Plus": 0.13059721, - "receivingTouchdowns50Plus": 0.085345277, + "receivingTouchdowns40Plus": 0.062131762, + "receivingTouchdowns50Plus": 0.001921601, "receivingYards": 164.4384723, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 10.750293579424788, - "turnovers": 0.081250138, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.081250138, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35122,7 +43259,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 210, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 11.052631578947368, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -35157,6 +43301,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -35191,6 +43337,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -35225,6 +43373,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -35264,18 +43414,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.39379538, "receivingTargets": 16.15100446, "receivingTouchdowns": 1.505626382, - "receivingTouchdowns40Plus": 0.096340359, - "receivingTouchdowns50Plus": 0.062958425, + "receivingTouchdowns40Plus": 0.046314632, + "receivingTouchdowns50Plus": 0.001432411, "receivingYards": 112.0918054, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 11.93253641000641, - "turnovers": 0.058409782, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.058409782, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 39, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 13, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -35320,11 +43484,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.430988971, "receivingTargets": 5.318241654, "receivingTouchdowns": 0.228075486, - "receivingTouchdowns40Plus": 0.083001482, - "receivingTouchdowns50Plus": 0.054241468, + "receivingTouchdowns40Plus": 0.018938222, + "receivingTouchdowns50Plus": 0.000585718, "receivingYards": 35.68151478, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.399775423819047, - "turnovers": 0.020116431, + "totalTurnovers": 0.020116431, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35332,6 +43500,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 277, "puntReturnYards": 79, "receivingTargets": 1, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -35372,11 +43542,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.734036483, "receivingTargets": 12.86330274, "receivingTouchdowns": 0.849672562, - "receivingTouchdowns40Plus": 0.160762818, - "receivingTouchdowns50Plus": 0.105058501, + "receivingTouchdowns40Plus": 0.042853225, + "receivingTouchdowns50Plus": 0.001325357, "receivingYards": 101.0471375, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 15.005433628863221, - "turnovers": 0.031586176, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.031586176, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35384,7 +43561,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 21, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -35424,18 +43606,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.902776098, "receivingTargets": 5.343514799, "receivingTouchdowns": 0.163330382, - "receivingTouchdowns40Plus": 0.044949766, - "receivingTouchdowns50Plus": 0.029374672, + "receivingTouchdowns40Plus": 0.01669146, + "receivingTouchdowns50Plus": 0.000516231, "receivingYards": 30.8553705, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.906005808483867, "rushing2PtConversions": 0.004139443, "rushingAttempts": 3.633648226, + "rushingGame100To199Yards": 0.000419955, + "rushingGame200PlusYards": 0.0000143315, "rushingTouchdowns": 0.183188102, "rushingTouchdowns40Plus": 0.006677809, "rushingTouchdowns50Plus": 0.004674467, "rushingYards": 13.76437536, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.78803189078986, - "turnovers": 0.048273252, + "totalTurnovers": 0.048273252, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35448,10 +43638,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 96, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 12, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -35496,18 +43692,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.222534, "receivingTargets": 28.0126239, "receivingTouchdowns": 1.059247798, - "receivingTouchdowns40Plus": 0.117174527, - "receivingTouchdowns50Plus": 0.076573553, + "receivingTouchdowns40Plus": 0.076073541, + "receivingTouchdowns50Plus": 0.00235279, "receivingYards": 203.4853943, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 12.543379123138223, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.002892823, "rushingAttempts": 4.281382965, + "rushingGame100To199Yards": 0.001753523, + "rushingGame200PlusYards": 0.000059841, "rushingTouchdowns": 0.09724207, "rushingTouchdowns40Plus": 0.007871128, "rushingTouchdowns50Plus": 0.00550979, "rushingYards": 26.62917858, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.219760950536693, - "turnovers": 0.11573513, + "totalTurnovers": 0.11573513, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35520,10 +43730,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 196, "receivingYardsAfterCatch": 22, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 10.31578947368421, "rushingAttempts": 5, "rushingYards": 17, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.4, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -35567,7 +43784,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "rushingAttempts": 3, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.6666666666666665, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -35608,7 +43828,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10, "receivingTargets": 15, "receivingYards": 143, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 14.3, + "receptionsPer5Receptions": 1, + "teamLoss": 9, + "teamWin": 1, "usesPoints": false, }, }, @@ -35645,6 +43873,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -35685,11 +43915,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.722570096, "receivingTargets": 10.05829916, "receivingTouchdowns": 0.446882263, - "receivingTouchdowns40Plus": 0.163172797, - "receivingTouchdowns50Plus": 0.106633423, + "receivingTouchdowns40Plus": 0.035883078, + "receivingTouchdowns50Plus": 0.001109786, "receivingYards": 79.01054018, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 13.806827850868496, - "turnovers": 0.026841866, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.026841866, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35701,7 +43937,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 30, "receivingYards": 161, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 9.470588235294118, + "teamLoss": 8, + "teamWin": 7, "usesPoints": false, }, }, @@ -35772,6 +44014,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -35809,6 +44053,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -35844,6 +44091,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -35883,6 +44132,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rushingAttempts": 2, "rushingYards": 4, "rushingYardsPerAttempt": 2, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -35918,6 +44169,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -35954,6 +44207,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -35987,6 +44243,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -36031,6 +44289,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "madeFieldGoalsFromUnder40": 3, "missedFieldGoals": 1, "missedFieldGoalsFrom50Plus": 1, + "teamLoss": 5, + "teamTie": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -36063,6 +44324,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -36095,6 +44358,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -36127,6 +44392,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -36160,6 +44427,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -36199,11 +44468,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.39264066, "receivingTargets": 44.95365614, "receivingTouchdowns": 2.483102657, - "receivingTouchdowns40Plus": 0.156764314, - "receivingTouchdowns50Plus": 0.10244548, + "receivingTouchdowns40Plus": 0.177988536, + "receivingTouchdowns50Plus": 0.0055048, "receivingYards": 349.6892665, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 69, "receivingYardsPerReception": 11.505721744021697, - "turnovers": 0.141259443, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.141259443, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36214,7 +44491,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 19, "receivingYards": 87, "receivingYardsAfterCatch": 22, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 6.6923076923076925, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -36258,14 +44540,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066899212, "passingTouchdowns50Plus": 0.043718635, "passingYards": 20.52916479, + "passingYards300To399": 0.03290619, + "passingYards400Plus": 0.004444763, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushing2PtConversions": 0.0000836463, "rushingAttempts": 0.094159863, + "rushingGame100To199Yards": -0.0000024302, + "rushingGame200PlusYards": -8.29334e-8, "rushingTouchdowns": 0.003681329, "rushingTouchdowns40Plus": 0.00017269, "rushingTouchdowns50Plus": 0.000120883, "rushingYards": 0.383205925, "rushingYardsPerAttempt": 4.069737495263773, - "turnovers": 0.092330784, + "totalTurnovers": 0.092330784, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36274,9 +44563,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 2, "passingIncompletions": 1, "passingYards": 29, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 5, "rushingAttempts": 1, "rushingYards": 3, "rushingYardsPerAttempt": 3, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -36313,6 +44608,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -36357,10 +44654,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 30, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.5, "rushingAttempts": 3, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -36400,11 +44702,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.04448041, "receivingTargets": 21.43665392, "receivingTouchdowns": 0.970110268, - "receivingTouchdowns40Plus": 0.09270963, - "receivingTouchdowns50Plus": 0.060585743, + "receivingTouchdowns40Plus": 0.056822458, + "receivingTouchdowns50Plus": 0.001757396, "receivingYards": 147.3767157, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 10.4935683911143, - "turnovers": 0.093251686, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.093251686, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36413,7 +44723,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 114, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 8.142857142857142, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -36453,11 +44768,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.394732923, "receivingTargets": 13.74932066, "receivingTouchdowns": 1.139303366, - "receivingTouchdowns40Plus": 0.096265222, - "receivingTouchdowns50Plus": 0.062909323, + "receivingTouchdowns40Plus": 0.041211419, + "receivingTouchdowns50Plus": 0.00127458, "receivingYards": 95.39276118, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 10.153855565863008, - "turnovers": 0.077232992, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.077232992, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36468,7 +44789,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 185, "receivingYardsAfterCatch": 27, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 11.5625, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -36508,18 +44836,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.09391842, "receivingTargets": 8.270735013, "receivingTouchdowns": 0.411523798, - "receivingTouchdowns40Plus": 0.059657699, - "receivingTouchdowns50Plus": 0.038986306, + "receivingTouchdowns40Plus": 0.025695517, + "receivingTouchdowns50Plus": 0.000794707, "receivingYards": 51.40561357, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 8.435559852801575, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.007996134, "rushingAttempts": 6.176658353, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.000979962, + "rushingGame200PlusYards": 0.0000334423, "rushingTouchdowns": 0.250273364, "rushingTouchdowns40Plus": 0.011367927, "rushingTouchdowns50Plus": 0.007957549, "rushingYards": 20.24095735, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.277007759409095, - "turnovers": 0.074149964, + "totalTurnovers": 0.074149964, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36532,7 +44872,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingYardsPerReception": 2, "rushingAttempts": 4, "rushingYards": 11, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.75, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -36606,8 +44949,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 90, "receivingTargets": 1, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 2.6666666666666665, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -36651,18 +45000,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.885880712, "receivingTargets": 11.74322167, "receivingTouchdowns": 0.25218497, - "receivingTouchdowns40Plus": 0.048058092, - "receivingTouchdowns50Plus": 0.031405963, + "receivingTouchdowns40Plus": 0.03238604, + "receivingTouchdowns50Plus": 0.00100163, "receivingYards": 68.98034473, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 7.762915907350073, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.018355732, "rushingAttempts": 32.30089233, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.047598193, + "rushingGame200PlusYards": 0.001624344, "rushingTouchdowns": 0.63151561, "rushingTouchdowns40Plus": 0.060345887, "rushingTouchdowns50Plus": 0.042242121, "rushingYards": 132.7291181, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 26, "rushingYardsPerAttempt": 4.109147101695564, - "turnovers": 0.186899287, + "totalTurnovers": 0.186899287, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36670,10 +45035,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7, "receivingTargets": 7, "receivingYards": 37, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 5.285714285714286, "rushingAttempts": 2, "rushingYards": 2, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -36719,7 +45089,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 28, "receivingTouchdowns": 1, "receivingYards": 160, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 12.307692307692308, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -36764,18 +45140,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.674628756, "receivingTargets": 5.514231609, "receivingTouchdowns": 0.198592385, - "receivingTouchdowns40Plus": 0.067560371, - "receivingTouchdowns50Plus": 0.044150702, + "receivingTouchdowns40Plus": 0.018712972, + "receivingTouchdowns50Plus": 0.000579, "receivingYards": 35.24925818, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.59260391201271, "rushing2PtConversions": 0.001441173, "rushingAttempts": 1.816824113, + "rushingGame100To199Yards": 0.000260256, + "rushingGame200PlusYards": 0.00000888155, "rushingTouchdowns": 0.063778079, "rushingTouchdowns40Plus": 0.003335394, "rushingTouchdowns50Plus": 0.002334776, "rushingYards": 11.16167908, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.1435110862600055, - "turnovers": 0.024236044, + "totalTurnovers": 0.024236044, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36790,10 +45174,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 29, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 9.666666666666666, "rushingAttempts": 1, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 6, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -36836,7 +45225,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 24, "receivingTouchdowns": 1, "receivingYards": 100, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 10, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -36881,7 +45275,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 27, "receivingTouchdowns": 1, "receivingYards": 199, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 12.4375, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -36922,11 +45322,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.932104204, "receivingTargets": 5.2154985, "receivingTouchdowns": 0.15161486, - "receivingTouchdowns40Plus": 0.107053459, - "receivingTouchdowns50Plus": 0.069959435, + "receivingTouchdowns40Plus": 0.019568637, + "receivingTouchdowns50Plus": 0.000605216, "receivingYards": 37.07196202, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.643466753134536, - "turnovers": 0.01719139, + "totalTurnovers": 0.01719139, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36938,10 +45342,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 36, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.2, "rushingAttempts": 2, "rushingYards": 4, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -36977,6 +45386,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -37012,6 +45423,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -37059,8 +45472,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 105, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 11.666666666666666, - "turnovers": 1, + "teamLoss": 4, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -37140,14 +45559,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingTouchdowns": 1, "receivingYards": 13, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4.333333333333333, "rushingAttempts": 8, "rushingTouchdowns": 2, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 91, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 11.375, - "turnovers": 1, + "teamLoss": 9, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -37187,11 +45614,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.96324921, "receivingTargets": 2.768138907, "receivingTouchdowns": 0.115262519, - "receivingTouchdowns40Plus": 0.007416372, - "receivingTouchdowns50Plus": 0.004846599, + "receivingTouchdowns40Plus": 0.006736806, + "receivingTouchdowns50Plus": 0.000208355, "receivingYards": 17.2074505, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.764781573501818, - "turnovers": 0.013035463, + "totalTurnovers": 0.013035463, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37202,10 +45631,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 143, "receivingYardsAfterCatch": 54, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 8.9375, + "receptionsPer5Receptions": 1, "rushingAttempts": 3, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.6666666666666665, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -37242,6 +45680,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -37278,6 +45718,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -37318,11 +45760,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.014752266, "receivingTargets": 8.806528524, "receivingTouchdowns": 0.459423742, - "receivingTouchdowns40Plus": 0.118559744, - "receivingTouchdowns50Plus": 0.077478793, + "receivingTouchdowns40Plus": 0.030633228, + "receivingTouchdowns50Plus": 0.000947419, "receivingYards": 64.16525245, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.795298560417459, - "turnovers": 0.029402285, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.029402285, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37334,10 +45782,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 102, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 17, "rushingAttempts": 1, "rushingYards": -2, "rushingYardsPerAttempt": -2, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -37381,6 +45836,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 108, "lostFumbles": 1, "puntReturnYards": 280, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -37421,25 +45878,40 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.202249558, "receivingTargets": 15.94919744, "receivingTouchdowns": 0.70211817, - "receivingTouchdowns40Plus": 0.113191077, - "receivingTouchdowns50Plus": 0.073970369, + "receivingTouchdowns40Plus": 0.047166729, + "receivingTouchdowns50Plus": 0.001458765, "receivingYards": 114.9454587, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 12.491017329569361, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000825155, "rushingAttempts": 1.859932659, + "rushingGame100To199Yards": 0.000281, + "rushingGame200PlusYards": 0.00000958, "rushingTouchdowns": 0.037749697, "rushingTouchdowns40Plus": 0.003414616, "rushingTouchdowns50Plus": 0.002390231, "rushingYards": 11.54169482, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.2054369356605825, - "turnovers": 0.062911987, + "totalTurnovers": 0.062911987, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 5, "receivingYards": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 12, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -37475,6 +45947,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -37511,6 +45986,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -37555,18 +46032,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.573512594, "receivingTargets": 2.691834076, "receivingTouchdowns": 0.156546577, - "receivingTouchdowns40Plus": 0.126034101, - "receivingTouchdowns50Plus": 0.082363285, + "receivingTouchdowns40Plus": 0.011243793, + "receivingTouchdowns50Plus": 0.000347746, "receivingYards": 19.88408656, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.636750818404952, "rushing2PtConversions": 0.003675522, "rushingAttempts": 3.793762775, + "rushingGame100To199Yards": 0.001371412, + "rushingGame200PlusYards": 0.0000468, "rushingTouchdowns": 0.093498887, "rushingTouchdowns40Plus": 0.006972736, "rushingTouchdowns50Plus": 0.004880915, "rushingYards": 23.67527328, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.24057820273172, - "turnovers": 0.027497143, + "totalTurnovers": 0.027497143, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37574,6 +46058,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 2, "kickoffReturnYards": 20, "puntReturnYards": 44, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -37607,6 +46094,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -37639,6 +46128,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -37671,6 +46162,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -37703,6 +46196,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -37735,6 +46230,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -37767,6 +46264,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -37799,6 +46298,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -37842,14 +46343,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066887756, "passingTouchdowns50Plus": 0.043711148, "passingYards": 20.41434188, + "passingYards300To399": 0.03272454, + "passingYards400Plus": 0.004420227, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushing2PtConversions": 0.000101002, "rushingAttempts": 0.096661904, + "rushingGame100To199Yards": -0.00000249962, + "rushingGame200PlusYards": -8.53023e-8, "rushingTouchdowns": 0.003200745, "rushingTouchdowns40Plus": 0.000177279, "rushingTouchdowns50Plus": 0.000124095, "rushingYards": 0.396392874, "rushingYardsPerAttempt": 4.100817980990732, - "turnovers": 0.104470228, + "totalTurnovers": 0.104470228, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37859,9 +46367,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingIncompletions": 2, "passingYards": 8, + "passingYardsPer5Yards": 1, "rushingAttempts": 3, "rushingYards": -2, "rushingYardsPerAttempt": -0.6666666666666666, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -37901,13 +46412,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 70, "passingCompletionPercentage": 0.6, "passingCompletions": 42, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 28, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 4, "passingYards": 465, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 46, + "passingYardsPer20Yards": 22, + "passingYardsPer25Yards": 18, + "passingYardsPer50Yards": 8, + "passingYardsPer5Yards": 93, "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, - "turnovers": 6, + "teamLoss": 7, + "teamWin": 5, + "totalTurnovers": 6, "usesPoints": false, }, }, @@ -37946,24 +46469,39 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.75187217, "receivingTargets": 3.67118492, "receivingTouchdowns": 0.1142625, - "receivingTouchdowns40Plus": 0.010422762, - "receivingTouchdowns50Plus": 0.006811275, + "receivingTouchdowns40Plus": 0.009195357, + "receivingTouchdowns50Plus": 0.000284392, "receivingYards": 20.77151893, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.548140918914849, "rushing2PtConversions": 0.015375379, "rushingAttempts": 18.54328253, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.070174456, + "rushingGame200PlusYards": 0.002394785, "rushingTouchdowns": 0.47433232, "rushingTouchdowns40Plus": 0.035596017, "rushingTouchdowns50Plus": 0.024917212, "rushingYards": 76.4725929, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.124005163394337, - "turnovers": 0.094841969, + "totalTurnovers": 0.094841969, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 2, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4.5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -37997,6 +46535,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -38040,17 +46580,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.012566297, "passingTouchdowns50Plus": 0.008212075, "passingYards": 4.076673394, + "passingYards300To399": 0.006529731, + "passingYards400Plus": 0.000881995, "rushing2PtConversions": 0.0000288791, "rushingAttempts": 0.018751101, + "rushingGame100To199Yards": -4.78772e-7, + "rushingGame200PlusYards": -1.63387e-8, "rushingTouchdowns": 0.000382874, "rushingTouchdowns40Plus": 0.0000343897, "rushingTouchdowns50Plus": 0.0000240728, "rushingYards": 0.076251906, "rushingYardsPerAttempt": 4.0665295333858, - "turnovers": 0.02095158, + "totalTurnovers": 0.02095158, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -38085,6 +46631,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -38119,6 +46667,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -38152,6 +46702,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -38185,6 +46737,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -38218,6 +46772,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -38283,6 +46839,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -38316,6 +46874,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -38359,20 +46919,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066682819, "passingTouchdowns50Plus": 0.043577222, "passingYards": 18.34855731, + "passingYards300To399": 0.029450264, + "passingYards400Plus": 0.003977958, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000995106, "rushingAttempts": 0.090521954, + "rushingGame100To199Yards": -0.00000234389, + "rushingGame200PlusYards": -7.9988e-8, "rushingTouchdowns": 0.002543906, "rushingTouchdowns40Plus": 0.000166017, "rushingTouchdowns50Plus": 0.000116212, "rushingYards": 0.366958303, "rushingYardsPerAttempt": 4.053804483716735, - "turnovers": 0.104141664, + "totalTurnovers": 0.104141664, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -38407,6 +46975,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -38450,17 +47020,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.06665952, "passingTouchdowns50Plus": 0.043561997, "passingYards": 18.11268399, + "passingYards300To399": 0.029075863, + "passingYards400Plus": 0.003927387, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.000111807, "rushingAttempts": 0.089436087, + "rushingGame100To199Yards": -0.000002321, + "rushingGame200PlusYards": -7.92069e-8, "rushingTouchdowns": 0.002960588, "rushingTouchdowns40Plus": 0.000164026, "rushingTouchdowns50Plus": 0.000114818, "rushingYards": 0.36269334, "rushingYardsPerAttempt": 4.055335515740978, - "turnovers": 0.093388041, + "totalTurnovers": 0.093388041, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -38504,17 +47082,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066673627, "passingTouchdowns50Plus": 0.043571215, "passingYards": 18.25583575, + "passingYards300To399": 0.029303266, + "passingYards400Plus": 0.003958103, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000831033, "rushingAttempts": 0.087341675, + "rushingGame100To199Yards": -0.00000229251, + "rushingGame200PlusYards": -7.82e-8, "rushingTouchdowns": 0.003714707, "rushingTouchdowns40Plus": 0.000160184, "rushingTouchdowns50Plus": 0.000112129, "rushingYards": 0.357396601, "rushingYardsPerAttempt": 4.091936649944027, - "turnovers": 0.099276845, + "totalTurnovers": 0.099276845, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -38549,6 +47135,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 2, "usesPoints": false, }, }, @@ -38588,7 +47176,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.5, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -38623,6 +47215,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -38667,11 +47261,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.652753631, "receivingTargets": 2.540861157, "receivingTouchdowns": 0.101845135, - "receivingTouchdowns40Plus": 0.106370183, - "receivingTouchdowns50Plus": 0.069512914, + "receivingTouchdowns40Plus": 0.01027736, + "receivingTouchdowns50Plus": 0.000318, "receivingYards": 18.03800805, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.913912219987735, - "turnovers": 0.009690356, + "totalTurnovers": 0.009690356, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38683,14 +47279,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 1, "passingCompletions": 1, "passingYards": 21, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "receivingReceptions": 11, "receivingTargets": 15, "receivingYards": 101, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 9.181818181818182, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 7, + "teamWin": 9, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -38734,7 +47340,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 102, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.333333333333334, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -38772,8 +47384,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 36, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.5, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -38815,7 +47434,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingTouchdowns": 1, "receivingYards": 60, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10, + "teamLoss": 10, + "teamWin": 5, "usesPoints": false, }, }, @@ -38852,6 +47477,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -38896,11 +47523,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.84446493, "receivingTargets": 10.66158612, "receivingTouchdowns": 0.636713954, - "receivingTouchdowns40Plus": 0.139241535, - "receivingTouchdowns50Plus": 0.090994343, + "receivingTouchdowns40Plus": 0.036435525, + "receivingTouchdowns50Plus": 0.001126872, "receivingYards": 80.65984929, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.78468296863638, - "turnovers": 0.043718993, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.043718993, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38913,7 +47546,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 22, "receivingTouchdowns": 2, "receivingYards": 133, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 9.5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -38953,11 +47592,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.7538085, "receivingTargets": 2.540861157, "receivingTouchdowns": 0.135539463, - "receivingTouchdowns40Plus": 0.067018128, - "receivingTouchdowns50Plus": 0.043796346, + "receivingTouchdowns40Plus": 0.009302545, + "receivingTouchdowns50Plus": 0.000287708, "receivingYards": 16.20458535, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9.239654928117863, - "turnovers": 0.011644831, + "totalTurnovers": 0.011644831, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38969,8 +47610,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 165, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 11, "rushingAttempts": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -39011,11 +47658,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.634662575, "receivingTargets": 16.73292352, "receivingTouchdowns": 0.780464546, - "receivingTouchdowns40Plus": 0.127263035, - "receivingTouchdowns50Plus": 0.083166393, + "receivingTouchdowns40Plus": 0.049816809, + "receivingTouchdowns50Plus": 0.001540726, "receivingYards": 123.8809167, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 12.857836559989751, - "turnovers": 0.056489549, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.056489549, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39026,7 +47680,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 23, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 23, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -39068,11 +47728,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34.09821965, "receivingTargets": 57.3704835, "receivingTouchdowns": 1.309311254, - "receivingTouchdowns40Plus": 0.077354327, - "receivingTouchdowns50Plus": 0.050551053, + "receivingTouchdowns40Plus": 0.212262155, + "receivingTouchdowns50Plus": 0.006564809, "receivingYards": 378.2627721, + "receivingYardsPer100Yards": 3, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 75, "receivingYardsPerReception": 11.093329094089523, - "turnovers": 0.199308979, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.199308979, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39080,7 +47748,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3.5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -39120,11 +47791,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.939118863, "receivingTargets": 10.40870048, "receivingTouchdowns": 0.49171538, - "receivingTouchdowns40Plus": 0.1393449, - "receivingTouchdowns50Plus": 0.091061892, + "receivingTouchdowns40Plus": 0.035796872, + "receivingTouchdowns50Plus": 0.00110712, "receivingYards": 78.75834404, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 11.34990559967873, - "turnovers": 0.049812173, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.049812173, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39136,10 +47813,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 98, "receivingYardsAfterCatch": 29, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 9.8, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": -3, "rushingYardsPerAttempt": -3, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -39184,11 +47869,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.638480433, "receivingTargets": 7.996189591, "receivingTouchdowns": 0.410889753, - "receivingTouchdowns40Plus": 0.123060679, - "receivingTouchdowns50Plus": 0.080420153, + "receivingTouchdowns40Plus": 0.028593999, + "receivingTouchdowns50Plus": 0.00088435, "receivingYards": 58.76169933, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.668308119173217, - "turnovers": 0.027196144, + "totalTurnovers": 0.027196144, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39199,11 +47889,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10, "receivingTargets": 19, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 149, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 14.9, "rushingAttempts": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -39243,11 +47939,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.54569696, "receivingTargets": 19.57571325, "receivingTouchdowns": 0.809612272, - "receivingTouchdowns40Plus": 0.062191712, - "receivingTouchdowns50Plus": 0.040642284, + "receivingTouchdowns40Plus": 0.050278118, + "receivingTouchdowns50Plus": 0.001554993, "receivingYards": 122.3281526, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 8.409920331517753, - "turnovers": 0.077263706, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.077263706, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39257,7 +47961,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 37, "receivingYards": 213, "receivingYardsAfterCatch": 47, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 9.26086956521739, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -39292,6 +48002,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, + "teamWin": 3, "usesPoints": false, }, }, @@ -39327,6 +48039,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -39362,6 +48076,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -39401,11 +48117,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.34612948, "receivingTargets": 20.861994, "receivingTouchdowns": 0.799423809, - "receivingTouchdowns40Plus": 0.089178659, - "receivingTouchdowns50Plus": 0.058278254, + "receivingTouchdowns40Plus": 0.055246785, + "receivingTouchdowns50Plus": 0.001708663, "receivingYards": 142.1541483, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 10.651338915378183, - "turnovers": 0.088614818, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.088614818, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39418,11 +48142,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 1, "passingCompletions": 1, "passingYards": 15, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "receivingReceptions": 12, "receivingTargets": 17, "receivingYards": 77, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 6.416666666666667, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -39462,11 +48195,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.689854899, "receivingTargets": 10.29135387, "receivingTouchdowns": 0.624694898, - "receivingTouchdowns40Plus": 0.117109554, - "receivingTouchdowns50Plus": 0.076531093, + "receivingTouchdowns40Plus": 0.034428575, + "receivingTouchdowns50Plus": 0.001064801, "receivingYards": 74.76821778, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 11.176358666789074, - "turnovers": 0.044418891, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.044418891, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39478,7 +48217,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 74, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 14.8, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -39515,6 +48261,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -39559,18 +48307,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.997383415, "receivingTargets": 6.177603672, "receivingTouchdowns": 0.298887241, - "receivingTouchdowns40Plus": 0.166680573, - "receivingTouchdowns50Plus": 0.108925754, + "receivingTouchdowns40Plus": 0.024241966, + "receivingTouchdowns50Plus": 0.000749752, "receivingYards": 49.02119775, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 12.263321443234636, "rushing2PtConversions": 0.002965593, "rushingAttempts": 4.191882607, + "rushingGame100To199Yards": 0.001648174, + "rushingGame200PlusYards": 0.0000562458, "rushingTouchdowns": 0.149112019, "rushingTouchdowns40Plus": 0.007706176, "rushingTouchdowns50Plus": 0.005394323, "rushingYards": 25.86711384, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.170762939974669, - "turnovers": 0.043626091, + "totalTurnovers": 0.043626091, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39582,11 +48340,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingTouchdowns": 1, "receivingYards": 60, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 20, "rushingAttempts": 2, "rushingYards": 10, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, - "turnovers": 1, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -39625,18 +48390,33 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.651960793, "receivingTargets": 8.793392851, "receivingTouchdowns": 0.275853508, - "receivingTouchdowns40Plus": 0.044816033, - "receivingTouchdowns50Plus": 0.029287277, + "receivingTouchdowns40Plus": 0.025312398, + "receivingTouchdowns50Plus": 0.000782858, "receivingYards": 54.61612816, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 8.210530678033118, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.020219619, "rushingAttempts": 22.78710259, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.028927621, + "rushingGame200PlusYards": 0.000987189, "rushingTouchdowns": 0.635002557, "rushingTouchdowns40Plus": 0.042527337, "rushingTouchdowns50Plus": 0.029769136, "rushingYards": 89.59543648, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 3.9318485589000898, - "turnovers": 0.105420462, + "totalTurnovers": 0.105420462, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39648,8 +48428,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingYardsPerReception": 3, "rushingAttempts": 4, "rushingYards": 10, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.5, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 10, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -39686,6 +48470,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamTie": 1, + "teamWin": 4, "usesPoints": false, }, }, @@ -39725,11 +48512,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.05989393, "receivingTargets": 28.9267396, "receivingTouchdowns": 1.758217008, - "receivingTouchdowns40Plus": 0.181576018, - "receivingTouchdowns50Plus": 0.118659928, + "receivingTouchdowns40Plus": 0.08925664, + "receivingTouchdowns50Plus": 0.002760515, "receivingYards": 233.1867414, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 46, "receivingYardsPerReception": 12.234419680214872, - "turnovers": 0.187784399, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.187784399, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39738,10 +48533,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5, "receivingTargets": 8, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, "receivingYards": 90, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 18, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -39880,11 +48681,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.579146073, "receivingTargets": 8.377393935, "receivingTouchdowns": 0.466818901, - "receivingTouchdowns40Plus": 0.124140572, - "receivingTouchdowns50Plus": 0.081125864, + "receivingTouchdowns40Plus": 0.029694564, + "receivingTouchdowns50Plus": 0.000918389, "receivingYards": 61.65973928, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 11.051823786869326, - "turnovers": 0.037044074, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.037044074, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39895,7 +48702,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingTouchdowns": 1, "receivingYards": 48, + "receivingYardsPer10Yards": 3, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 16, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -39935,11 +48746,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.022240205, "receivingTargets": 10.71832696, "receivingTouchdowns": 0.485055134, - "receivingTouchdowns40Plus": 0.09270963, - "receivingTouchdowns50Plus": 0.060585743, + "receivingTouchdowns40Plus": 0.034048852, + "receivingTouchdowns50Plus": 0.001053057, "receivingYards": 73.68835784, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.493568389690251, - "turnovers": 0.046625843, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.046625843, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39950,7 +48767,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingYards": 72, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 9, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -39986,6 +48808,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -40025,11 +48849,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.501825884, "receivingTargets": 2.269449553, "receivingTouchdowns": 0.136309277, - "receivingTouchdowns40Plus": 0.092529506, - "receivingTouchdowns50Plus": 0.060468032, + "receivingTouchdowns40Plus": 0.008977823, + "receivingTouchdowns50Plus": 0.000277665, "receivingYards": 15.5991467, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.386787753619513, - "turnovers": 0.009971732, + "totalTurnovers": 0.009971732, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40040,7 +48866,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7, "receivingTargets": 8, "receivingYards": 48, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 6.857142857142857, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40080,14 +48910,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.315554826, "receivingTargets": 0.551921472, "receivingTouchdowns": 0.024548642, - "receivingTouchdowns40Plus": 0.006889437, - "receivingTouchdowns50Plus": 0.004502247, + "receivingTouchdowns40Plus": 0.001896024, + "receivingTouchdowns50Plus": 0.0000586399, "receivingYards": 3.959442927, "receivingYardsPerReception": 12.547559412068697, - "turnovers": 0.001715843, + "totalTurnovers": 0.001715843, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -40127,25 +48959,39 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.829657221, "receivingTargets": 5.040102075, "receivingTouchdowns": 0.146622145, - "receivingTouchdowns40Plus": 0.054083308, - "receivingTouchdowns50Plus": 0.035343442, + "receivingTouchdowns40Plus": 0.016529491, + "receivingTouchdowns50Plus": 0.000511, "receivingYards": 30.51438781, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.967916199568399, "rushing2PtConversions": 0.008814467, "rushingAttempts": 9.080388918, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.003133449, + "rushingGame200PlusYards": 0.000106933, "rushingTouchdowns": 0.227512069, "rushingTouchdowns40Plus": 0.016740309, "rushingTouchdowns50Plus": 0.011718217, "rushingYards": 35.05141454, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.8601226067000054, - "turnovers": 0.059567918, + "totalTurnovers": 0.059567918, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveForcedFumbles": 1, "defensiveSoloTackles": 7, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 9, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -40181,6 +49027,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40220,18 +49068,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.639898037, "receivingTargets": 7.806525363, "receivingTouchdowns": 0.236397417, - "receivingTouchdowns40Plus": 0.065032792, - "receivingTouchdowns50Plus": 0.04249893, + "receivingTouchdowns40Plus": 0.024914922, + "receivingTouchdowns50Plus": 0.000770565, "receivingYards": 49.48800939, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 8.774628382523717, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.006143867, "rushingAttempts": 4.624922609, + "rushingGame100To199Yards": 0.000743671, + "rushingGame200PlusYards": 0.0000253786, "rushingTouchdowns": 0.207405484, "rushingTouchdowns40Plus": 0.008504406, "rushingTouchdowns50Plus": 0.005953084, "rushingYards": 17.82004876, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.8530479894566376, - "turnovers": 0.050137688, + "totalTurnovers": 0.050137688, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40239,8 +49096,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 9, "receivingYards": 41, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 6.833333333333333, "rushingAttempts": 1, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40276,6 +49137,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -40319,10 +49182,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 50, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 6.25, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.5714285714285716, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40359,6 +49230,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -40394,6 +49267,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -40430,6 +49305,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -40466,6 +49343,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40505,18 +49384,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.811705476, "receivingTargets": 2.756911671, "receivingTouchdowns": 0.194051872, - "receivingTouchdowns40Plus": 0.116011822, - "receivingTouchdowns50Plus": 0.075813726, + "receivingTouchdowns40Plus": 0.011301033, + "receivingTouchdowns50Plus": 0.000349516, "receivingYards": 19.99425849, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 11.036152815602573, - "turnovers": 0.012029252, + "totalTurnovers": 0.012029252, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 24, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 24, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -40553,6 +49439,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 12, "usesPoints": false, }, }, @@ -40589,6 +49477,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40639,6 +49529,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingYards": 3, "receivingYardsPerReception": 3, "rushingAttempts": 1, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -40682,11 +49574,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.166220302, "receivingTargets": 6.028861037, "receivingTouchdowns": 0.239552118, - "receivingTouchdowns40Plus": 0.103630044, - "receivingTouchdowns50Plus": 0.067722234, + "receivingTouchdowns40Plus": 0.022000302, + "receivingTouchdowns50Plus": 0.000680422, "receivingYards": 42.57096775, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.445358720967484, - "turnovers": 0.01856405, + "totalTurnovers": 0.01856405, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40695,6 +49591,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "fumbles": 1, "lostFumbles": 1, "puntReturnYards": 15, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -40731,6 +49629,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -40768,6 +49668,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -40808,11 +49710,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.37886524, "receivingTargets": 23.43830249, "receivingTouchdowns": 0.751750907, - "receivingTouchdowns40Plus": 0.110294027, - "receivingTouchdowns50Plus": 0.072077147, + "receivingTouchdowns40Plus": 0.067851673, + "receivingTouchdowns50Plus": 0.002098505, "receivingYards": 168.4636452, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 11.716059813354228, - "turnovers": 0.08430556, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.08430556, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40822,7 +49732,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 25, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.5, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -40863,18 +49777,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.184209625, "receivingTargets": 5.513823342, "receivingTouchdowns": 0.29442353, - "receivingTouchdowns40Plus": 0.138799636, - "receivingTouchdowns50Plus": 0.090705562, + "receivingTouchdowns40Plus": 0.021624527, + "receivingTouchdowns50Plus": 0.0006688, "receivingYards": 41.70394937, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.097111773851886, - "turnovers": 0.018669524, + "totalTurnovers": 0.018669524, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 5, "defensiveSoloTackles": 3, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 8, "receivingTargets": 1, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -40910,6 +49831,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -40950,14 +49873,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.799801282, "receivingTargets": 13.3481876, "receivingTouchdowns": 0.702951485, - "receivingTouchdowns40Plus": 0.117774573, - "receivingTouchdowns50Plus": 0.076965683, + "receivingTouchdowns40Plus": 0.042183073, + "receivingTouchdowns50Plus": 0.001304631, "receivingYards": 96.61092671, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 12.386331807318474, - "turnovers": 0.045731468, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.045731468, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -40998,11 +49929,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.413680728, "receivingTargets": 5.866076449, "receivingTouchdowns": 0.246218526, - "receivingTouchdowns40Plus": 0.105248003, - "receivingTouchdowns50Plus": 0.06877957, + "receivingTouchdowns40Plus": 0.021565272, + "receivingTouchdowns50Plus": 0.000666967, "receivingYards": 41.5667674, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.176524611413514, - "turnovers": 0.02001495, + "totalTurnovers": 0.02001495, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41012,7 +49947,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 8, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -41048,6 +49986,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -41087,18 +50027,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.097350221, "receivingTargets": 5.494637998, "receivingTouchdowns": 0.214612385, - "receivingTouchdowns40Plus": 0.054708863, - "receivingTouchdowns50Plus": 0.035752242, + "receivingTouchdowns40Plus": 0.017853154, + "receivingTouchdowns50Plus": 0.000552159, "receivingYards": 33.32831755, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.134114916314351, "rushing2PtConversions": 0.006481248, "rushingAttempts": 3.624463599, + "rushingGame100To199Yards": 0.000302035, + "rushingGame200PlusYards": 0.0000103073, "rushingTouchdowns": 0.240868784, "rushingTouchdowns40Plus": 0.006660902, "rushingTouchdowns50Plus": 0.004662631, "rushingYards": 11.88127206, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.2780773583374043, - "turnovers": 0.04697342, + "totalTurnovers": 0.04697342, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41107,7 +50055,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -41152,7 +50103,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4, "receivingTargets": 8, "receivingYards": 40, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10, + "teamLoss": 8, + "teamWin": 4, "usesPoints": false, }, }, @@ -41191,7 +50148,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 8, "receivingYards": 61, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.166666666666666, + "teamLoss": 9, + "teamWin": 2, "usesPoints": false, }, }, @@ -41227,6 +50190,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -41267,11 +50232,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11.24043967, "receivingTargets": 19.52174411, "receivingTouchdowns": 0.91054197, - "receivingTouchdowns40Plus": 0.127263035, - "receivingTouchdowns50Plus": 0.083166393, + "receivingTouchdowns40Plus": 0.055958688, + "receivingTouchdowns50Plus": 0.001730681, "receivingYards": 144.5277361, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 12.85783655649477, - "turnovers": 0.065904474, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.065904474, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41279,6 +50252,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 27, "puntReturnYards": 6, "receivingTargets": 1, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -41314,6 +50290,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -41349,6 +50327,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -41390,10 +50370,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 6, "receivingYards": 75, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.5, "rushingAttempts": 1, "rushingYards": 21, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 21, + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -41433,23 +50422,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.983243439, "receivingTargets": 2.658199573, "receivingTouchdowns": 0.066488463, - "receivingTouchdowns40Plus": 0.049829905, - "receivingTouchdowns50Plus": 0.032563843, + "receivingTouchdowns40Plus": 0.009071682, + "receivingTouchdowns50Plus": 0.000280567, "receivingYards": 15.77464035, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.953960688736205, "rushing2PtConversions": 0.003828721, "rushingAttempts": 7.439730637, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.002106451, + "rushingGame200PlusYards": 0.0000719, "rushingTouchdowns": 0.175158594, "rushingTouchdowns40Plus": 0.013702566, "rushingTouchdowns50Plus": 0.009591796, "rushingYards": 29.0553988, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.9054369328237275, - "turnovers": 0.042713162, + "totalTurnovers": 0.042713162, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 3, "defensiveTotalTackles": 3, + "teamLoss": 9, + "teamWin": 8, "usesPoints": false, }, }, @@ -41486,6 +50486,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -41522,6 +50524,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -41557,6 +50561,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -41593,6 +50599,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -41628,6 +50636,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -41671,7 +50681,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 24, "receivingTouchdowns": 1, "receivingYards": 80, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 7.2727272727272725, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -41707,6 +50725,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -41742,6 +50762,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -41781,18 +50803,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.355385757, "receivingTargets": 5.866076449, "receivingTouchdowns": 0.2294309, - "receivingTouchdowns40Plus": 0.046390081, - "receivingTouchdowns50Plus": 0.030315918, + "receivingTouchdowns40Plus": 0.018232539, + "receivingTouchdowns50Plus": 0.000563893, "receivingYards": 34.1439695, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.8394822881357005, "rushing2PtConversions": 0.009855283, "rushingAttempts": 5.452547438, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.000757944, + "rushingGame200PlusYards": 0.0000258657, "rushingTouchdowns": 0.313091743, "rushingTouchdowns40Plus": 0.010031012, "rushingTouchdowns50Plus": 0.007021708, "rushingYards": 17.99299555, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.2999246232325947, - "turnovers": 0.058657208, + "totalTurnovers": 0.058657208, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41803,8 +50834,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 23, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 4.6, "rushingAttempts": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -41841,6 +50876,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -41880,6 +50917,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 1, "defensiveSoloTackles": 4, "defensiveTotalTackles": 5, + "teamLoss": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -41919,23 +50958,34 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.050377588, "receivingTargets": 5.866076449, "receivingTouchdowns": 0.280230704, - "receivingTouchdowns40Plus": 0.089561089, - "receivingTouchdowns50Plus": 0.058528172, + "receivingTouchdowns40Plus": 0.020899579, + "receivingTouchdowns50Plus": 0.000646, "receivingYards": 40.04903085, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 9.88772774386584, - "turnovers": 0.02689345, + "totalTurnovers": 0.02689345, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 7, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 9, "receivingReceptions": 7, "receivingTargets": 12, "receivingTouchdowns": 1, "receivingYards": 67, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 9.571428571428571, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -41971,6 +51021,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -42006,6 +51058,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -42042,6 +51096,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -42079,6 +51135,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -42121,18 +51179,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.462966281, "receivingTargets": 2.551626395, "receivingTouchdowns": 0.106705771, - "receivingTouchdowns40Plus": 0.120530185, - "receivingTouchdowns50Plus": 0.078766476, + "receivingTouchdowns40Plus": 0.010606382, + "receivingTouchdowns50Plus": 0.000328032, "receivingYards": 18.66302114, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.756972858761332, "rushing2PtConversions": 0.00324911, "rushingAttempts": 4.40438482, + "rushingGame100To199Yards": 0.001868379, + "rushingGame200PlusYards": 0.0000637606, "rushingTouchdowns": 0.117940625, "rushingTouchdowns40Plus": 0.008097838, "rushingTouchdowns50Plus": 0.005668486, "rushingYards": 27.44772305, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.231908466617592, - "turnovers": 0.029789849, + "totalTurnovers": 0.029789849, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42143,7 +51209,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -42179,6 +51248,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -42215,6 +51286,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -42254,14 +51327,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.519171847, "receivingTargets": 4.037491879, "receivingTouchdowns": 0.206612187, - "receivingTouchdowns40Plus": 0.07091841, - "receivingTouchdowns50Plus": 0.046345181, + "receivingTouchdowns40Plus": 0.01294944, + "receivingTouchdowns50Plus": 0.000400498, "receivingYards": 25.8557091, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 10.263574964443464, - "turnovers": 0.016726644, + "totalTurnovers": 0.016726644, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -42301,21 +51380,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.710566762, "receivingTargets": 4.707575508, "receivingTouchdowns": 0.158436577, - "receivingTouchdowns40Plus": 0.094704236, - "receivingTouchdowns50Plus": 0.061889218, + "receivingTouchdowns40Plus": 0.01762422, + "receivingTouchdowns50Plus": 0.000545079, "receivingYards": 33.55390039, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 12.378924164643026, "rushing2PtConversions": 0.002615002, "rushingAttempts": 3.391215007, + "rushingGame100To199Yards": 0.001227438, + "rushingGame200PlusYards": 0.0000419, "rushingTouchdowns": 0.086853856, "rushingTouchdowns40Plus": 0.006233155, "rushingTouchdowns50Plus": 0.004363209, "rushingYards": 20.94188569, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.175334104966114, - "turnovers": 0.032225134, + "totalTurnovers": 0.032225134, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -42359,7 +51449,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingYards": 67, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.375, + "teamLoss": 10, + "teamTie": 1, + "teamWin": 5, "usesPoints": false, }, }, @@ -42395,7 +51492,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "rushingAttempts": 6, "rushingYards": 15, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.5, + "teamLoss": 2, + "teamWin": 3, "usesPoints": false, }, }, @@ -42431,6 +51531,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -42467,6 +51569,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -42503,6 +51607,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -42571,6 +51677,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -42606,6 +51714,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -42645,11 +51755,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.441089415, "receivingTargets": 5.145676937, "receivingTouchdowns": 0.334423434, - "receivingTouchdowns40Plus": 0.117643372, - "receivingTouchdowns50Plus": 0.076879944, + "receivingTouchdowns40Plus": 0.019729225, + "receivingTouchdowns50Plus": 0.000610182, "receivingYards": 37.42370146, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.875538803748288, - "turnovers": 0.018278349, + "totalTurnovers": 0.018278349, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42658,10 +51772,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11, "receivingTargets": 12, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 1, "receivingYards": 117, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 10.636363636363637, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -42701,11 +51821,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.997807673, "receivingTargets": 10.66158612, "receivingTouchdowns": 0.758970431, - "receivingTouchdowns40Plus": 0.08796995, - "receivingTouchdowns50Plus": 0.057488362, + "receivingTouchdowns40Plus": 0.033632859, + "receivingTouchdowns50Plus": 0.001040192, "receivingYards": 72.49531274, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.359717804150632, - "turnovers": 0.046463617, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.046463617, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42715,7 +51841,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingTouchdowns": 1, "receivingYards": 91, + "receivingYardsPer10Yards": 6, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.11111111111111, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -42751,6 +51881,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -42786,6 +51918,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -42819,6 +51953,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -42855,6 +51991,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 12, "usesPoints": false, }, }, @@ -42888,6 +52026,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -42923,6 +52063,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -42958,6 +52100,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -42993,6 +52137,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -43030,9 +52176,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 21, "passingCompletionPercentage": 0.7142857142857143, "passingCompletions": 15, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 6, "passingTouchdowns": 1, "passingYards": 174, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 17, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 34, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -43076,14 +52232,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066740205, "passingTouchdowns50Plus": 0.043614724, "passingYards": 18.92850387, + "passingYards300To399": 0.03037027, + "passingYards400Plus": 0.004102227, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.0000820343, "rushingAttempts": 0.090153687, + "rushingGame100To199Yards": -0.00000234315, + "rushingGame200PlusYards": -7.99626e-8, "rushingTouchdowns": 0.003486479, "rushingTouchdowns40Plus": 0.000165342, "rushingTouchdowns50Plus": 0.000115739, "rushingYards": 0.366793411, "rushingYardsPerAttempt": 4.068534778838274, - "turnovers": 0.102407596, + "totalTurnovers": 0.102407596, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43091,13 +52253,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 7, "passingCompletionPercentage": 0.7142857142857143, "passingCompletions": 5, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 2, "passingYards": 20, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": -7, "receivingYardsPerReception": -7, "rushingAttempts": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -43141,14 +52309,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066682135, "passingTouchdowns50Plus": 0.043576775, "passingYards": 18.34169471, + "passingYards300To399": 0.029439405, + "passingYards400Plus": 0.003976492, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.000068843, "rushingAttempts": 0.091981714, + "rushingGame100To199Yards": -0.00000238578, + "rushingGame200PlusYards": -8.14175e-8, "rushingTouchdowns": 0.00214253, "rushingTouchdowns40Plus": 0.000168695, "rushingTouchdowns50Plus": 0.000118086, "rushingYards": 0.374793302, "rushingYardsPerAttempt": 4.074650120131486, - "turnovers": 0.102382901, + "totalTurnovers": 0.102382901, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43159,10 +52333,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingIncompletions": 3, "passingYards": 8, + "passingYardsPer5Yards": 1, "rushingAttempts": 8, "rushingYards": 2, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 0.25, - "turnovers": 1, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -43232,6 +52410,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -43265,6 +52445,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -43300,6 +52482,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -43336,6 +52520,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -43369,6 +52555,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -43405,6 +52594,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -43448,18 +52640,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.133275404, "receivingTargets": 2.836811941, "receivingTouchdowns": 0.073442498, - "receivingTouchdowns40Plus": 0.048597425, - "receivingTouchdowns50Plus": 0.031758418, + "receivingTouchdowns40Plus": 0.009573377, + "receivingTouchdowns50Plus": 0.000296084, "receivingYards": 16.71047636, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.833248500717257, "rushing2PtConversions": 0.01555198, "rushingAttempts": 9.640842293, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.003611927, + "rushingGame200PlusYards": 0.000123261, "rushingTouchdowns": 0.224234103, "rushingTouchdowns40Plus": 0.017779143, "rushingTouchdowns50Plus": 0.0124454, "rushingYards": 37.60496738, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.9005894129503726, - "turnovers": 0.053045688, + "totalTurnovers": 0.053045688, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43469,10 +52670,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 1.6666666666666667, "rushingAttempts": 6, "rushingYards": 29, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.833333333333333, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -43508,6 +52713,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -43542,6 +52749,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -43575,6 +52784,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -43610,6 +52821,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -43651,7 +52864,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5, "receivingTargets": 10, "receivingYards": 33, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 6.6, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -43688,6 +52905,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -43724,6 +52943,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -43760,6 +52981,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -43795,6 +53019,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -43830,6 +53056,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -43869,18 +53098,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.506371511, "receivingTargets": 10.93932193, "receivingTouchdowns": 0.672845852, - "receivingTouchdowns40Plus": 0.103828983, - "receivingTouchdowns50Plus": 0.067852241, + "receivingTouchdowns40Plus": 0.03392824, + "receivingTouchdowns50Plus": 0.001049327, "receivingYards": 77.42914277, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.315122647011762, - "turnovers": 0.04881604, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.04881604, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4.5, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -43918,6 +53156,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -43954,6 +53194,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -43989,6 +53231,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 2, "usesPoints": false, }, }, @@ -44028,11 +53272,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.136317959, "receivingTargets": 13.94410293, "receivingTouchdowns": 0.857328478, - "receivingTouchdowns40Plus": 0.106362299, - "receivingTouchdowns50Plus": 0.069507762, + "receivingTouchdowns40Plus": 0.042333236, + "receivingTouchdowns50Plus": 0.001309275, "receivingYards": 99.00769964, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 10.836717820494584, - "turnovers": 0.121325535, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.121325535, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44040,7 +53290,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 36, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.2, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -44077,6 +53332,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -44113,6 +53371,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -44158,15 +53418,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveSacks": 0.030564728, "defensiveSafeties": 0.000409529, "defensiveSoloTackles": 0.493685923, + "defensiveStuffs": 0.136074568, "defensiveTotalTackles": 0.8207480140000001, "fumbleReturnTouchdown": 0.00000233172, "interceptionReturnTouchdown": 0.000372671, + "totalReturnTouchdowns": 0.000523325, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 3, + "defensiveStuffs": 1, "defensiveTotalTackles": 5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -44203,6 +53468,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -44242,11 +53509,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.716292461, "receivingTargets": 4.08351295, "receivingTouchdowns": 0.231376724, - "receivingTouchdowns40Plus": 0.053353114, - "receivingTouchdowns50Plus": 0.03486626, + "receivingTouchdowns40Plus": 0.014162768, + "receivingTouchdowns50Plus": 0.000438, "receivingYards": 29.03246905, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 10.688270672927365, - "turnovers": 0.018035473, + "totalTurnovers": 0.018035473, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44255,7 +53526,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 5, "receivingYards": 42, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 14, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -44292,6 +53568,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -44327,6 +53605,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -44370,18 +53650,32 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.442402376, "receivingTargets": 7.560153113, "receivingTouchdowns": 0.387082463, - "receivingTouchdowns40Plus": 0.125085273, - "receivingTouchdowns50Plus": 0.081743226, + "receivingTouchdowns40Plus": 0.027420598, + "receivingTouchdowns50Plus": 0.00084806, "receivingYards": 55.73677838, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.546539836444566, "rushing2PtConversions": 0.009498348, "rushingAttempts": 11.35048615, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.012961236, + "rushingGame200PlusYards": 0.000442317, "rushingTouchdowns": 0.245163868, "rushingTouchdowns40Plus": 0.020952805, "rushingTouchdowns50Plus": 0.014666963, "rushingYards": 69.92038631, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 6.160122604968775, - "turnovers": 0.080712328, + "totalTurnovers": 0.080712328, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44391,7 +53685,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 35, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 11.666666666666666, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -44427,6 +53725,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -44462,6 +53762,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -44505,7 +53807,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 14, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 14, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -44573,6 +53879,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -44609,6 +53917,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -44644,6 +53954,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -44680,6 +53992,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -44715,6 +54029,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -44752,6 +54068,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -44787,6 +54105,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -44823,6 +54144,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -44857,6 +54180,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -44923,6 +54248,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -44959,6 +54287,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -44998,6 +54328,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -45033,6 +54365,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -45069,6 +54403,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -45108,12 +54444,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.025990885, "rushing2PtConversions": 0.003073371, "rushingAttempts": 5.996211395, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.001487141, + "rushingGame200PlusYards": 0.0000507504, "rushingTouchdowns": 0.151047324, "rushingTouchdowns40Plus": 0.01103477, "rushingTouchdowns50Plus": 0.007724339, "rushingYards": 24.5938159, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.101559181270326, - "turnovers": 0.025990885, + "totalTurnovers": 0.025990885, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45121,6 +54463,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 5, "kickoffReturnYards": 89, "receivingTargets": 2, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -45157,6 +54501,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -45192,6 +54538,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -45232,24 +54580,39 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.21847251, "receivingTargets": 18.08658311, "receivingTouchdowns": 0.772172988, - "receivingTouchdowns40Plus": 0.116330923, - "receivingTouchdowns50Plus": 0.076022258, + "receivingTouchdowns40Plus": 0.051975551, + "receivingTouchdowns50Plus": 0.00161, "receivingYards": 131.1810906, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 12.837641875693611, - "turnovers": 0.070819394, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.070819394, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 6, + "defensiveTacklesPer3Tackles": 2, "defensiveTotalTackles": 8, "receivingReceptions": 10, "receivingTargets": 19, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, "receivingYards": 188, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 18.8, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -45290,11 +54653,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.478134022, "receivingTargets": 2.540861157, "receivingTouchdowns": 0.11984458, - "receivingTouchdowns40Plus": 0.113645284, - "receivingTouchdowns50Plus": 0.074267193, + "receivingTouchdowns40Plus": 0.010424525, + "receivingTouchdowns50Plus": 0.000322408, "receivingYards": 18.3172544, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.392147212209961, - "turnovers": 0.008666533, + "totalTurnovers": 0.008666533, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45305,10 +54670,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8, "receivingTargets": 11, "receivingYards": 82, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.25, "rushingAttempts": 1, "rushingYards": 1, "rushingYardsPerAttempt": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -45345,6 +54716,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -45378,6 +54751,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -45413,6 +54788,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -45513,6 +54890,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -45547,6 +54926,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -45583,6 +54964,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -45626,10 +55009,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, "rushingAttempts": 1, "rushingYards": -4, "rushingYardsPerAttempt": -4, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -45669,11 +55055,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.92070879, "receivingTargets": 17.59822935, "receivingTouchdowns": 1.003551956, - "receivingTouchdowns40Plus": 0.055812345, - "receivingTouchdowns50Plus": 0.036473367, + "receivingTouchdowns40Plus": 0.044929703, + "receivingTouchdowns50Plus": 0.001389578, "receivingYards": 107.4874932, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 8.319009037893501, - "turnovers": 0.085790135, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.085790135, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45684,7 +55078,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 73, "receivingYardsAfterCatch": 33, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 7.3, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -45721,6 +55121,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -45756,6 +55158,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -45792,6 +55196,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -45831,11 +55238,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.701199052, "receivingTargets": 5.678660318, "receivingTouchdowns": 0.361663956, - "receivingTouchdowns40Plus": 0.093895764, - "receivingTouchdowns50Plus": 0.061360882, + "receivingTouchdowns40Plus": 0.020509492, + "receivingTouchdowns50Plus": 0.000634314, "receivingYards": 39.169526, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.58292878866759, - "turnovers": 0.024574996, + "totalTurnovers": 0.024574996, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45845,7 +55256,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingYards": 67, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 13.4, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -45882,6 +55300,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -45918,6 +55338,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -45953,6 +55375,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -45990,6 +55414,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -46035,12 +55461,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveSacks": 0.032401258, "defensiveSafeties": 0.000414889, "defensiveSoloTackles": 0.376090761, + "defensiveStuffs": 0.13831214, "defensiveTotalTackles": 0.625247209, "fumbleReturnTouchdown": 0.00000213974, "interceptionReturnTouchdown": 0.000377549, + "totalReturnTouchdowns": 0.000529952, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -46076,6 +55506,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -46112,6 +55544,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -46148,6 +55582,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -46184,6 +55620,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -46219,6 +55657,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -46254,6 +55694,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -46297,7 +55739,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4, "receivingTargets": 5, "receivingYards": 52, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 13, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -46333,6 +55781,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -46372,18 +55822,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.153346381, "receivingTargets": 5.499728266, "receivingTouchdowns": 0.271450814, - "receivingTouchdowns40Plus": 0.059243, - "receivingTouchdowns50Plus": 0.0387153, + "receivingTouchdowns40Plus": 0.018192929, + "receivingTouchdowns50Plus": 0.000562668, "receivingYards": 34.0574222, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.199995636241637, "rushing2PtConversions": 0.005741802, "rushingAttempts": 5.269312886, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.001080787, + "rushingGame200PlusYards": 0.0000368831, "rushingTouchdowns": 0.290380207, "rushingTouchdowns40Plus": 0.009696871, "rushingTouchdowns50Plus": 0.00678781, "rushingYards": 19.84131999, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.765447302003315, - "turnovers": 0.056316345, + "totalTurnovers": 0.056316345, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46394,10 +55853,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingTouchdowns": 2, "receivingYards": 14, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.8, "rushingAttempts": 9, "rushingYards": 41, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.555555555555555, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -46434,6 +55898,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -46473,18 +55939,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.503227042, "receivingTargets": 10.430997, "receivingTouchdowns": 0.266722262, - "receivingTouchdowns40Plus": 0.053848961, - "receivingTouchdowns50Plus": 0.035190296, + "receivingTouchdowns40Plus": 0.030210339, + "receivingTouchdowns50Plus": 0.00093434, "receivingYards": 63.04373778, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.402216463277322, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.002343019, "rushingAttempts": 1.998737132, + "rushingGame100To199Yards": 0.0000707575, + "rushingGame200PlusYards": 0.00000241468, "rushingTouchdowns": 0.115152619, "rushingTouchdowns40Plus": 0.003669749, "rushingTouchdowns50Plus": 0.002568824, "rushingYards": 6.575022376, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.2895883459276223, - "turnovers": 0.04857658, + "totalTurnovers": 0.04857658, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46494,10 +55969,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 62, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 20.666666666666668, "rushingAttempts": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 9, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -46534,6 +56016,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -46573,16 +56057,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.637135812, "receivingTargets": 6.830831948, "receivingTouchdowns": 0.372362398, - "receivingTouchdowns40Plus": 0.107696986, - "receivingTouchdowns50Plus": 0.07037998, + "receivingTouchdowns40Plus": 0.023313648, + "receivingTouchdowns50Plus": 0.000721041, "receivingYards": 48.78953109, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 10.521479867754193, - "turnovers": 0.030789372, + "totalTurnovers": 0.030789372, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveTotalTackles": 2, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -46649,6 +56139,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -46684,6 +56176,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -46727,6 +56221,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "fumbles": 2, "kickoffReturnYards": 56, "puntReturnYards": 52, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -46766,7 +56262,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 14, + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -46803,6 +56303,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -46838,6 +56340,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -46877,21 +56381,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.664754734, "receivingTargets": 2.551626395, "receivingTouchdowns": 0.140657608, - "receivingTouchdowns40Plus": 0.10063758, - "receivingTouchdowns50Plus": 0.065766659, + "receivingTouchdowns40Plus": 0.010204186, + "receivingTouchdowns50Plus": 0.000315593, "receivingYards": 17.8991794, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.751841718444997, - "turnovers": 0.011053537, + "totalTurnovers": 0.011053537, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 5, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 52, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 26, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -46932,11 +56443,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21.65210822, "receivingTargets": 41.723988, "receivingTouchdowns": 1.867009906, - "receivingTouchdowns40Plus": 0.093876385, - "receivingTouchdowns50Plus": 0.061348217, + "receivingTouchdowns40Plus": 0.122262682, + "receivingTouchdowns50Plus": 0.00378, "receivingYards": 287.6986926, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 57, "receivingYardsPerReception": 13.28732932963329, - "turnovers": 0.088864813, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.088864813, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46945,7 +56464,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13, "receivingTargets": 24, "receivingYards": 162, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 12.461538461538462, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -46985,11 +56510,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.518847225, "receivingTargets": 5.330793061, "receivingTouchdowns": 0.361084934, - "receivingTouchdowns40Plus": 0.102951926, - "receivingTouchdowns50Plus": 0.067279084, + "receivingTouchdowns40Plus": 0.019800665, + "receivingTouchdowns50Plus": 0.000612392, "receivingYards": 37.58474195, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.680981454089698, - "turnovers": 0.023364227, + "totalTurnovers": 0.023364227, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47000,7 +56529,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 48, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 9.6, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -47041,7 +56574,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 6, "receivingYards": 37, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.333333333333334, + "teamLoss": 4, "usesPoints": false, }, }, @@ -47078,6 +56615,7 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, "usesPoints": false, }, }, @@ -47113,6 +56651,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -47148,6 +56688,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -47188,7 +56730,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, + "teamLoss": 2, "usesPoints": false, }, }, @@ -47224,6 +56768,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -47259,6 +56805,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -47298,11 +56847,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.252738827, "receivingTargets": 3.404174329, "receivingTouchdowns": 0.204463915, - "receivingTouchdowns40Plus": 0.092529506, - "receivingTouchdowns50Plus": 0.060468032, + "receivingTouchdowns40Plus": 0.013043866, + "receivingTouchdowns50Plus": 0.000403419, "receivingYards": 23.39872006, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.386787753447816, - "turnovers": 0.014957598, + "totalTurnovers": 0.014957598, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47311,7 +56863,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 5, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4.5, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -47349,6 +56904,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -47384,6 +56941,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -47417,6 +56976,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -47453,6 +57014,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -47486,6 +57050,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -47522,6 +57089,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -47562,6 +57131,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveSoloTackles": 1, "defensiveTotalTackles": 2, "kickoffReturnYards": 17, + "teamLoss": 10, + "teamTie": 1, + "teamWin": 5, "usesPoints": false, }, }, @@ -47597,6 +57169,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -47633,6 +57207,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -47669,6 +57245,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -47711,11 +57289,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, "rushingAttempts": 9, "rushingTouchdowns": 2, "rushingYards": 15, "rushingYardsPerAttempt": 1.6666666666666667, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -47751,6 +57332,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -47786,6 +57369,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -47827,6 +57413,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingYards": 1, "receivingYardsPerReception": 1, "rushingAttempts": 3, + "teamLoss": 2, + "teamWin": 10, "usesPoints": false, }, }, @@ -47866,17 +57454,22 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.924504171, "receivingTargets": 2.89267396, "receivingTouchdowns": 0.154283764, - "receivingTouchdowns40Plus": 0.110659809, - "receivingTouchdowns50Plus": 0.072316185, + "receivingTouchdowns40Plus": 0.011677612, + "receivingTouchdowns50Plus": 0.000361163, "receivingYards": 20.7230363, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.767987210561364, - "turnovers": 0.012778206, + "totalTurnovers": 0.012778206, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, "receivingTargets": 1, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -47912,6 +57505,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -47954,7 +57549,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5, "receivingTargets": 8, "receivingYards": 54, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.8, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -47990,6 +57590,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -48026,6 +57628,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -48060,6 +57664,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -48100,7 +57707,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 53, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 8.833333333333334, + "receptionsPer5Receptions": 1, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -48136,6 +57750,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -48176,21 +57792,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.319788183, "receivingTargets": 2.520051038, "receivingTouchdowns": 0.146143216, - "receivingTouchdowns40Plus": 0.218547512, - "receivingTouchdowns50Plus": 0.142820799, + "receivingTouchdowns40Plus": 0.011962208, + "receivingTouchdowns50Plus": 0.000369965, "receivingYards": 21.27522151, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 16.12017881660333, - "turnovers": 0.007738127, + "totalTurnovers": 0.007738127, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 3, "defensiveSoloTackles": 1, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 4, "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 12, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -48227,6 +57851,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -48260,6 +57887,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -48299,7 +57928,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 3, "receivingYards": 38, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 12.666666666666666, + "teamLoss": 8, + "teamWin": 7, "usesPoints": false, }, }, @@ -48340,18 +57975,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.502099191, "receivingTargets": 2.940974665, "receivingTouchdowns": 0.169013568, - "receivingTouchdowns40Plus": 0.116722387, - "receivingTouchdowns50Plus": 0.07627808, + "receivingTouchdowns40Plus": 0.0119973, + "receivingTouchdowns50Plus": 0.000371051, "receivingYards": 21.34347711, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 14.209099663911609, "rushing2PtConversions": 0.004577506, "rushingAttempts": 3.985281985, + "rushingGame100To199Yards": 0.001841645, + "rushingGame200PlusYards": 0.0000628483, "rushingTouchdowns": 0.119019029, "rushingTouchdowns40Plus": 0.007325495, "rushingTouchdowns50Plus": 0.005127846, "rushingYards": 27.26948687, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.842548901843894, - "turnovers": 0.029934194, + "totalTurnovers": 0.029934194, "usesPoints": false, }, "rawStats": PlayerStats { @@ -48361,10 +58005,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 1, "rushingYards": -7, "rushingYardsPerAttempt": -7, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -48401,6 +58049,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -48437,6 +58087,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -48475,6 +58127,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "fumbles": 1, "puntReturnYards": 15, + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -48512,6 +58166,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -48548,6 +58204,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -48585,15 +58243,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingAttempts": 31, "passingCompletionPercentage": 0.6451612903225806, "passingCompletions": 20, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 11, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 2, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 266, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 52, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 19, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.8, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -48630,6 +58303,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -48670,11 +58345,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.546160144, "receivingTargets": 2.66539653, "receivingTouchdowns": 0.136963251, - "receivingTouchdowns40Plus": 0.123060679, - "receivingTouchdowns50Plus": 0.080420153, + "receivingTouchdowns40Plus": 0.011089176, + "receivingTouchdowns50Plus": 0.000342964, "receivingYards": 19.58723311, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.668308121904351, - "turnovers": 0.009065381, + "totalTurnovers": 0.009065381, "usesPoints": false, }, "rawStats": PlayerStats { @@ -48684,7 +58361,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 10, "receivingYards": 63, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.5, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -48721,6 +58404,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -48759,18 +58444,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.004798556, "receivingTargets": 7.82324775, "receivingTouchdowns": 0.299783929, - "receivingTouchdowns40Plus": 0.089178659, - "receivingTouchdowns50Plus": 0.058278254, + "receivingTouchdowns40Plus": 0.026457342, + "receivingTouchdowns50Plus": 0.000818268, "receivingYards": 53.30780561, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.651338912750438, - "turnovers": 0.033230557, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.033230557, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -48806,6 +58500,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -48842,6 +58538,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -48879,6 +58577,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -48914,6 +58614,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -48951,6 +58653,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -48986,6 +58690,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -49022,6 +58728,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -49063,7 +58771,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -49100,6 +58811,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -49135,6 +58848,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -49170,6 +58886,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -49209,11 +58927,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.945374162, "receivingTargets": 5.330793061, "receivingTouchdowns": 0.255249695, - "receivingTouchdowns40Plus": 0.05393612, - "receivingTouchdowns50Plus": 0.035247254, + "receivingTouchdowns40Plus": 0.017366167, + "receivingTouchdowns50Plus": 0.000537, "receivingYards": 32.28566106, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.183168372460184, - "turnovers": 0.026196255, + "totalTurnovers": 0.026196255, "usesPoints": false, }, "rawStats": PlayerStats { @@ -49223,7 +58945,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 4, "receivingYards": 11, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3.6666666666666665, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -49293,6 +59018,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49329,6 +59056,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -49371,11 +59100,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.301529989, "receivingTargets": 5.204350242, "receivingTouchdowns": 0.204233203, - "receivingTouchdowns40Plus": 0.074212583, - "receivingTouchdowns50Plus": 0.048497923, + "receivingTouchdowns40Plus": 0.018179129, + "receivingTouchdowns50Plus": 0.000562241, "receivingYards": 34.02763847, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.306627104213167, - "turnovers": 0.019357392, + "totalTurnovers": 0.019357392, "usesPoints": false, }, "rawStats": PlayerStats { @@ -49386,8 +59119,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6, "receivingTargets": 8, "receivingYards": 60, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -49421,6 +59159,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -49457,6 +59198,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -49493,6 +59236,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -49529,6 +59274,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -49563,6 +59310,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -49599,6 +59348,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49635,6 +59386,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -49678,27 +59431,43 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.066802269, "passingTouchdowns50Plus": 0.043655283, "passingYards": 19.55433612, + "passingYards300To399": 0.031362335, + "passingYards400Plus": 0.004236229, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "rushing2PtConversions": 0.000135022, "rushingAttempts": 0.095588131, + "rushingGame100To199Yards": -0.0000024572, + "rushingGame200PlusYards": -8.3855e-8, "rushingTouchdowns": 0.003037591, "rushingTouchdowns40Plus": 0.000175309, "rushingTouchdowns50Plus": 0.000122716, "rushingYards": 0.388180923, "rushingYardsPerAttempt": 4.060974086835111, - "turnovers": 0.110893408, + "totalTurnovers": 0.110893408, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 17, "passingCompletionPercentage": 0.4117647058823529, "passingCompletions": 7, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 10, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "passingYards": 59, + "passingYardsPer10Yards": 5, + "passingYardsPer20Yards": 2, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 11, "rushingAttempts": 2, "rushingYards": 13, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.5, - "turnovers": 1, + "teamLoss": 10, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -49742,10 +59511,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 17, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.5, "rushingAttempts": 1, "rushingYards": 4, "rushingYardsPerAttempt": 4, + "teamLoss": 5, + "teamWin": 8, "usesPoints": false, }, }, @@ -49781,6 +59554,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49817,6 +59592,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49859,7 +59636,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingTouchdowns": 1, "receivingYards": 86, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.75, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49896,6 +59679,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49931,6 +59716,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -49973,17 +59760,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.98954287, "receivingTargets": 10.40870048, "receivingTouchdowns": 0.394842421, - "receivingTouchdowns40Plus": 0.119555735, - "receivingTouchdowns50Plus": 0.078129673, + "receivingTouchdowns40Plus": 0.034846097, + "receivingTouchdowns50Plus": 0.001077714, "receivingYards": 75.9752496, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 12.684649104114351, - "turnovers": 0.035117637, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.035117637, "usesPoints": false, }, "rawStats": PlayerStats { "fumbles": 1, "kickoffReturnYards": 149, "puntReturnYards": 59, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -50021,6 +59816,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -50059,6 +59856,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "puntReturnYards": 21, + "teamLoss": 4, + "teamWin": 4, "usesPoints": false, }, }, @@ -50095,6 +59894,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -50131,6 +59932,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -50166,6 +59969,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -50201,6 +60006,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -50241,8 +60049,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveSoloTackles": 1, "defensiveTotalTackles": 2, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.7777777777777777, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -50278,6 +60093,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -50314,6 +60131,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -50350,6 +60169,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -50386,6 +60207,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -50422,6 +60245,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -50459,6 +60284,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -50498,16 +60325,21 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.954893757, "receivingTargets": 2.935805419, "receivingTouchdowns": 0.146267282, - "receivingTouchdowns40Plus": 0.091463465, - "receivingTouchdowns50Plus": 0.059771374, + "receivingTouchdowns40Plus": 0.011374327, + "receivingTouchdowns50Plus": 0.000351783, "receivingYards": 20.13543655, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.30001578239221, - "turnovers": 0.012979984, + "totalTurnovers": 0.012979984, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -50543,6 +60375,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -50589,7 +60423,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 44, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 44, + "teamLoss": 5, + "teamWin": 3, "usesPoints": false, }, }, @@ -50625,6 +60465,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -50697,11 +60539,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.673358334, "receivingTargets": 2.572838468, "receivingTouchdowns": 0.158770405, - "receivingTouchdowns40Plus": 0.084417479, - "receivingTouchdowns50Plus": 0.055166822, + "receivingTouchdowns40Plus": 0.009903985, + "receivingTouchdowns50Plus": 0.000306309, "receivingYards": 17.33235277, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.357824990519932, - "turnovers": 0.011110663, + "totalTurnovers": 0.011110663, "usesPoints": false, }, "rawStats": PlayerStats { @@ -50713,7 +60557,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 23, "receivingYardsAfterCatch": 10, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.666666666666667, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -50749,6 +60597,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -50784,6 +60635,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -50823,7 +60676,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3, "receivingTargets": 3, "receivingYards": 18, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -50859,6 +60716,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -50898,18 +60757,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.048750088, "receivingTargets": 2.788820587, "receivingTouchdowns": 0.121208509, - "receivingTouchdowns40Plus": 0.05530087, - "receivingTouchdowns50Plus": 0.036139119, + "receivingTouchdowns40Plus": 0.009718297, + "receivingTouchdowns50Plus": 0.000301, "receivingYards": 16.98394153, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.289903990476363, "rushing2PtConversions": 0.00311244, "rushingAttempts": 2.072929188, + "rushingGame100To199Yards": 0.0000791715, + "rushingGame200PlusYards": 0.00000270182, "rushingTouchdowns": 0.10773307, "rushingTouchdowns40Plus": 0.003806133, "rushingTouchdowns50Plus": 0.002664293, "rushingYards": 6.84947856, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.3042511049827525, - "turnovers": 0.02490907, + "totalTurnovers": 0.02490907, "usesPoints": false, }, "rawStats": PlayerStats { @@ -50919,10 +60783,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 15, "receivingYards": 85, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 7.7272727272727275, + "receptionsPer5Receptions": 1, "rushingAttempts": 6, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.3333333333333333, + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -50959,6 +60832,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -50995,6 +60870,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -51031,6 +60908,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -51071,7 +60950,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 22, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 22, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -51111,18 +60995,29 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.359553978, "receivingTargets": 5.753075766, "receivingTouchdowns": 0.21162332, - "receivingTouchdowns40Plus": 0.053877807, - "receivingTouchdowns50Plus": 0.035209147, + "receivingTouchdowns40Plus": 0.018560164, + "receivingTouchdowns50Plus": 0.000574026, "receivingYards": 34.85264097, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.994542823848482, "rushing2PtConversions": 0.015037658, "rushingAttempts": 8.256388429, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.001868148, + "rushingGame200PlusYards": 0.0000637527, "rushingTouchdowns": 0.376996897, "rushingTouchdowns40Plus": 0.01521379, "rushingTouchdowns50Plus": 0.010649653, "rushingYards": 27.44931419, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.324615166310025, - "turnovers": 0.073977233, + "totalTurnovers": 0.073977233, "usesPoints": false, }, "rawStats": PlayerStats { @@ -51135,10 +61030,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 112, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 14, "rushingAttempts": 2, "rushingYards": 5, "rushingYardsPerAttempt": 2.5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -51174,6 +61075,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -51213,17 +61116,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.922486762, "receivingTargets": 5.86981695, "receivingTouchdowns": 0.424598552, - "receivingTouchdowns40Plus": 0.052440612, - "receivingTouchdowns50Plus": 0.03426994, + "receivingTouchdowns40Plus": 0.018628573, + "receivingTouchdowns50Plus": 0.000576141, "receivingYards": 41.55886809, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.59503080867249, - "turnovers": 0.026044289, + "totalTurnovers": 0.026044289, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 3, "defensiveTotalTackles": 3, "receivingTargets": 2, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -51263,18 +61172,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.9113802, "receivingTargets": 2.540861157, "receivingTouchdowns": 0.068093511, - "receivingTouchdowns40Plus": 0.049432714, - "receivingTouchdowns50Plus": 0.032304279, + "receivingTouchdowns40Plus": 0.008667976, + "receivingTouchdowns50Plus": 0.000268082, "receivingYards": 15.02605401, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.861363223287548, "rushing2PtConversions": 0.007883848, "rushingAttempts": 12.37471002, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.006068044, + "rushingGame200PlusYards": 0.000207079, "rushingTouchdowns": 0.414728062, "rushingTouchdowns40Plus": 0.022856845, "rushingTouchdowns50Plus": 0.015999791, "rushingYards": 48.28906644, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.902238223114338, - "turnovers": 0.063724871, + "totalTurnovers": 0.063724871, "usesPoints": false, }, "rawStats": PlayerStats { @@ -51282,7 +61201,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 3, "rushingAttempts": 4, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -51322,6 +61245,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "fumbles": 1, "lostFumbles": 1, "receivingTargets": 1, + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -51358,6 +61283,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -51394,6 +61321,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -51427,6 +61356,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -51462,6 +61393,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -51497,6 +61430,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -51534,6 +61469,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -51570,6 +61507,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -51609,11 +61548,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.579620878, "receivingTargets": 8.806528524, "receivingTouchdowns": 0.517856759, - "receivingTouchdowns40Plus": 0.28554763, - "receivingTouchdowns50Plus": 0.186605376, + "receivingTouchdowns40Plus": 0.036117009, + "receivingTouchdowns50Plus": 0.001117021, "receivingYards": 79.70383288, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 14.284811571027316, - "turnovers": 0.037047227, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.037047227, "usesPoints": false, }, "rawStats": PlayerStats { @@ -51622,7 +61567,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 87, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.875, + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -51665,6 +61616,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 2, "receivingYardsPerReception": 2, + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -51700,6 +61654,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -51735,6 +61691,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -51770,6 +61728,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -51806,6 +61766,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -51841,6 +61803,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -51878,6 +61842,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -51913,6 +61879,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -51948,6 +61916,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -51991,6 +61962,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 1, "receivingYardsPerReception": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -52027,6 +62000,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -52063,6 +62038,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -52102,17 +62079,20 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.659893192, "receivingTargets": 1.134724776, "receivingTouchdowns": 0.051703519, - "receivingTouchdowns40Plus": 0.11099944, - "receivingTouchdowns50Plus": 0.072538134, + "receivingTouchdowns40Plus": 0.004829102, + "receivingTouchdowns50Plus": 0.000149354, "receivingYards": 8.134188195, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 12.326522373032757, - "turnovers": 0.003869058, + "totalTurnovers": 0.003869058, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, "receivingTargets": 1, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -52146,6 +62126,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -52185,18 +62167,24 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.189666293, "receivingTargets": 2.940974665, "receivingTouchdowns": 0.133246064, - "receivingTouchdowns40Plus": 0.048203601, - "receivingTouchdowns50Plus": 0.031501053, + "receivingTouchdowns40Plus": 0.009881515, + "receivingTouchdowns50Plus": 0.000305614, "receivingYards": 17.29065264, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.89647842471492, "rushing2PtConversions": 0.010594049, "rushingAttempts": 3.985281985, + "rushingGame100To199Yards": 0.000378815, + "rushingGame200PlusYards": 0.0000129275, "rushingTouchdowns": 0.27545426, "rushingTouchdowns40Plus": 0.007325495, "rushingTouchdowns50Plus": 0.005127846, "rushingYards": 13.15354157, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.3005297039225696, - "turnovers": 0.036274825, + "totalTurnovers": 0.036274825, "usesPoints": false, }, "rawStats": PlayerStats { @@ -52210,10 +62198,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 38, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 9.5, "rushingAttempts": 1, "rushingYards": 4, "rushingYardsPerAttempt": 4, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -52250,6 +62243,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -52285,6 +62280,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -52319,6 +62316,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -52355,6 +62354,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -52396,7 +62397,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 9, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, + "teamLoss": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -52439,7 +62443,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 61, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 20.333333333333332, + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -52476,6 +62488,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -52512,6 +62526,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -52547,6 +62563,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -52582,6 +62600,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -52618,6 +62638,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -52653,6 +62675,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -52689,6 +62713,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -52724,6 +62750,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -52794,11 +62822,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.773275885, "receivingTargets": 2.364046206, "receivingTouchdowns": 0.122829169, - "receivingTouchdowns40Plus": 0.056310566, - "receivingTouchdowns50Plus": 0.036798955, + "receivingTouchdowns40Plus": 0.008358438, + "receivingTouchdowns50Plus": 0.000258508, "receivingYards": 14.45558006, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.151906977520309, - "turnovers": 0.011774089, + "totalTurnovers": 0.011774089, "usesPoints": false, }, "rawStats": PlayerStats { @@ -52808,10 +62838,16 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 35, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 17.5, "rushingAttempts": 3, "rushingYards": 3, "rushingYardsPerAttempt": 1, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -52850,6 +62886,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -52889,18 +62927,28 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.534646577, "receivingTargets": 5.359163479, "receivingTouchdowns": 0.181153665, - "receivingTouchdowns40Plus": 0.114330333, - "receivingTouchdowns50Plus": 0.074714873, + "receivingTouchdowns40Plus": 0.020289345, + "receivingTouchdowns50Plus": 0.000628, "receivingYards": 38.67773443, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.942461597625238, - "turnovers": 0.023469131, + "totalTurnovers": 0.023469131, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 6, "receivingTargets": 8, "receivingYards": 47, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 7.833333333333333, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -52943,11 +62991,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.26205189, "receivingTargets": 2.158608023, "receivingTouchdowns": 0.088795955, - "receivingTouchdowns40Plus": 0.100340755, - "receivingTouchdowns50Plus": 0.065572683, + "receivingTouchdowns40Plus": 0.009083009, + "receivingTouchdowns50Plus": 0.000280918, "receivingYards": 16.17449314, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.816028618284466, - "turnovers": 0.00739961, + "totalTurnovers": 0.00739961, "usesPoints": false, }, "rawStats": PlayerStats { @@ -52958,7 +63008,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 10, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 10, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -52995,6 +63049,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -53030,6 +63087,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -53065,6 +63124,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -53100,6 +63161,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -53136,6 +63200,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -53173,6 +63239,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -53212,11 +63280,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.7513477, "receivingTargets": 35.22966502, "receivingTouchdowns": 1.529178142, - "receivingTouchdowns40Plus": 0.082725282, - "receivingTouchdowns50Plus": 0.054060972, + "receivingTouchdowns40Plus": 0.090666177, + "receivingTouchdowns50Plus": 0.002804109, "receivingYards": 236.0977927, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 9.538785344605701, - "turnovers": 0.258426861, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.258426861, "usesPoints": false, }, "rawStats": PlayerStats { @@ -53226,8 +63302,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 12, "receivingYards": 94, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 10.444444444444445, - "turnovers": 1, + "teamLoss": 13, + "teamWin": 3, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -53268,7 +63350,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 20, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10, + "teamLoss": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -53305,6 +63391,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -53340,6 +63428,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -53375,6 +63465,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -53410,6 +63502,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -53446,6 +63541,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -53481,6 +63578,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -53520,11 +63619,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.917468937, "receivingTargets": 2.940974665, "receivingTouchdowns": 0.199248571, - "receivingTouchdowns40Plus": 0.079956425, - "receivingTouchdowns50Plus": 0.052251524, + "receivingTouchdowns40Plus": 0.011073504, + "receivingTouchdowns50Plus": 0.000342479, "receivingYards": 19.5570635, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.199416075338487, - "turnovers": 0.012731493, + "totalTurnovers": 0.012731493, "usesPoints": false, }, "rawStats": PlayerStats { @@ -53534,8 +63635,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 86, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 14.333333333333334, - "turnovers": 1, + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -53572,6 +63680,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -53615,7 +63725,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -53691,7 +63804,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingTouchdowns": 1, "receivingYards": 17, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5.666666666666667, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -53731,11 +63847,15 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.900516454, "receivingTargets": 6.028861037, "receivingTouchdowns": 0.311350331, - "receivingTouchdowns40Plus": 0.076368447, - "receivingTouchdowns50Plus": 0.04990678, + "receivingTouchdowns40Plus": 0.020734687, + "receivingTouchdowns50Plus": 0.000641279, "receivingYards": 39.67827403, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.172569324585139, - "turnovers": 0.025898412, + "totalTurnovers": 0.025898412, "usesPoints": false, }, "rawStats": PlayerStats { @@ -53746,7 +63866,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingTouchdowns": 1, "receivingYards": 86, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 9.555555555555555, + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -53782,6 +63908,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -53818,6 +63946,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -53857,18 +63988,23 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.191850576, "receivingTargets": 2.935805419, "receivingTouchdowns": 0.103395838, - "receivingTouchdowns40Plus": 0.048058092, - "receivingTouchdowns50Plus": 0.031405963, + "receivingTouchdowns40Plus": 0.009857537, + "receivingTouchdowns50Plus": 0.000304872, "receivingYards": 17.24508618, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.86782017388762, "rushing2PtConversions": 0.003077284, "rushingAttempts": 1.90005249, + "rushingGame100To199Yards": 0.0000626488, + "rushingGame200PlusYards": 0.00000213796, "rushingTouchdowns": 0.105871735, "rushingTouchdowns40Plus": 0.003488354, "rushingTouchdowns50Plus": 0.002441848, "rushingYards": 6.287553188, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.309147100457209, - "turnovers": 0.024916338, + "totalTurnovers": 0.024916338, "usesPoints": false, }, "rawStats": PlayerStats { @@ -53879,10 +64015,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 17, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.5, "rushingAttempts": 2, "rushingYards": 3, "rushingYardsPerAttempt": 1.5, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -53919,6 +64059,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -53954,6 +64096,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -53989,6 +64133,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -54025,6 +64171,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -54062,20 +64210,27 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.015886711, "rushing2PtConversions": 0.0033098, "rushingAttempts": 3.665133955, + "rushingGame100To199Yards": 0.000462013, + "rushingGame200PlusYards": 0.0000157667, "rushingTouchdowns": 0.099742183, "rushingTouchdowns40Plus": 0.006735828, "rushingTouchdowns50Plus": 0.004715079, "rushingYards": 14.33131643, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.9101753458285264, - "turnovers": 0.015886711, + "totalTurnovers": 0.015886711, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 3, "defensiveFumbles": 1, "defensiveSoloTackles": 9, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 12, "kickoffReturnYards": 164, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -54115,18 +64270,25 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.719310011, "receivingTargets": 5.619207018, "receivingTouchdowns": 0.366351742, - "receivingTouchdowns40Plus": 0.100358881, - "receivingTouchdowns50Plus": 0.065584529, + "receivingTouchdowns40Plus": 0.020593274, + "receivingTouchdowns50Plus": 0.000636905, "receivingYards": 39.35954957, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.58248692730443, - "turnovers": 0.024695248, + "totalTurnovers": 0.024695248, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 11, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5.5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -54163,6 +64325,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -54198,6 +64362,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -54240,6 +64406,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "rushingAttempts": 1, "rushingYards": -11, "rushingYardsPerAttempt": -11, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -54277,6 +64445,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -54312,6 +64482,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamTie": 1, + "teamWin": 6, "usesPoints": false, }, }, @@ -54347,6 +64520,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -54382,6 +64557,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -54418,6 +64595,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -54454,6 +64633,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -54489,6 +64670,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamTie": 1, + "teamWin": 9, "usesPoints": false, }, }, @@ -54525,6 +64709,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -54560,6 +64746,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -54596,6 +64784,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -54637,7 +64827,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamLoss": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -54674,6 +64867,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 9, "usesPoints": false, }, }, @@ -54713,10 +64908,17 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, "rushingAttempts": 11, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 17, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 1.5454545454545454, + "teamLoss": 13, + "teamWin": 4, "usesPoints": false, }, }, @@ -54785,6 +64987,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -54821,6 +65025,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -54856,6 +65062,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -54891,6 +65099,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -54926,6 +65136,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -54962,6 +65174,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamWin": 4, "usesPoints": false, }, }, @@ -54997,6 +65211,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -55038,7 +65254,10 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 14, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, + "teamLoss": 5, + "teamWin": 3, "usesPoints": false, }, }, @@ -55074,6 +65293,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -55110,6 +65331,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -55146,6 +65370,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -55188,11 +65414,14 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.547159691, "receivingTargets": 2.747318999, "receivingTouchdowns": 0.116469298, - "receivingTouchdowns40Plus": 0.171547659, - "receivingTouchdowns50Plus": 0.112106395, + "receivingTouchdowns40Plus": 0.012249487, + "receivingTouchdowns50Plus": 0.00037885, "receivingYards": 21.83577625, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 14.113459894942414, - "turnovers": 0.007256993, + "totalTurnovers": 0.007256993, "usesPoints": false, }, "rawStats": PlayerStats { @@ -55204,7 +65433,13 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 117, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 8.357142857142858, + "teamLoss": 4, + "teamWin": 12, "usesPoints": false, }, }, @@ -55242,6 +65477,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -55277,6 +65514,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -55314,6 +65553,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -55353,14 +65594,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.719440811, "receivingTargets": 2.809603509, "receivingTouchdowns": 0.136705274, - "receivingTouchdowns40Plus": 0.100586856, - "receivingTouchdowns50Plus": 0.065733511, + "receivingTouchdowns40Plus": 0.011142686, + "receivingTouchdowns50Plus": 0.000344619, "receivingYards": 19.69010106, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 11.451456155997917, - "turnovers": 0.010081353, + "totalTurnovers": 0.010081353, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -55396,6 +65641,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -55432,6 +65679,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -55468,6 +65717,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -55503,6 +65754,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -55538,6 +65791,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -55572,6 +65827,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -55610,7 +65867,12 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 23, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 23, + "teamLoss": 3, + "teamWin": 8, "usesPoints": false, }, }, @@ -55646,6 +65908,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -55681,6 +65946,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 7, + "teamTie": 1, + "teamWin": 8, "usesPoints": false, }, }, @@ -55717,6 +65985,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -55752,6 +66022,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -55788,6 +66060,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -55827,18 +66101,26 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.782865494, "receivingTargets": 5.029149582, "receivingTouchdowns": 0.193222159, - "receivingTouchdowns40Plus": 0.094407012, - "receivingTouchdowns50Plus": 0.061694982, + "receivingTouchdowns40Plus": 0.018507794, + "receivingTouchdowns50Plus": 0.000572406, "receivingYards": 34.7395987, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 9.18340838581241, "rushing2PtConversions": 0.004046967, "rushingAttempts": 4.261666861, + "rushingGame100To199Yards": 0.000687609, + "rushingGame200PlusYards": 0.0000235, "rushingTouchdowns": 0.181624332, "rushingTouchdowns40Plus": 0.007834796, "rushingTouchdowns50Plus": 0.005484357, "rushingYards": 17.19282807, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.034296586468916, - "turnovers": 0.047275427, + "totalTurnovers": 0.047275427, "usesPoints": false, }, "rawStats": PlayerStats { @@ -55848,7 +66130,11 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.5, + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -55885,6 +66171,9 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 8, + "teamTie": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -55924,16 +66213,19 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.619153083, "receivingTargets": 1.061616822, "receivingTouchdowns": 0.053190339, - "receivingTouchdowns40Plus": 0.015295345, - "receivingTouchdowns50Plus": 0.009995508, + "receivingTouchdowns40Plus": 0.00355824, + "receivingTouchdowns50Plus": 0.000110049, "receivingYards": 9.236948816, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 14.918683391260767, - "turnovers": 0.003630192, + "totalTurnovers": 0.003630192, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -55969,6 +66261,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -56004,6 +66298,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 13, "usesPoints": false, }, }, @@ -56040,6 +66336,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 5, + "teamWin": 11, "usesPoints": false, }, }, @@ -56075,6 +66373,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 6, + "teamWin": 10, "usesPoints": false, }, }, @@ -56111,6 +66411,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -56146,6 +66448,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -56182,6 +66486,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -56217,6 +66523,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -56256,18 +66564,30 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.479318526, "receivingTargets": 11.16985858, "receivingTouchdowns": 0.605703711, - "receivingTouchdowns40Plus": 0.099496993, - "receivingTouchdowns50Plus": 0.065021285, + "receivingTouchdowns40Plus": 0.035565731, + "receivingTouchdowns50Plus": 0.001099971, "receivingYards": 78.09081855, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 10.440900234230778, - "turnovers": 0.049660724, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.049660724, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 6, "receivingTargets": 11, "receivingYards": 50, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 8.333333333333334, + "teamLoss": 9, + "teamWin": 7, "usesPoints": false, }, }, @@ -56306,14 +66626,18 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.186653163, "receivingTargets": 3.014430518, "receivingTouchdowns": 0.110046238, - "receivingTouchdowns40Plus": 0.041609465, - "receivingTouchdowns50Plus": 0.027191785, + "receivingTouchdowns40Plus": 0.00972554, + "receivingTouchdowns50Plus": 0.00030079, "receivingYards": 16.99722831, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.773170705627814, - "turnovers": 0.014518806, + "totalTurnovers": 0.014518806, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 11, + "teamWin": 5, "usesPoints": false, }, }, @@ -56349,6 +66673,8 @@ exports[`2018 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, diff --git a/integration-tests/2022-season/__snapshots__/integration.test.js.snap b/integration-tests/2022-season/__snapshots__/integration.test.js.snap index f3ec7ba..247d34a 100644 --- a/integration-tests/2022-season/__snapshots__/integration.test.js.snap +++ b/integration-tests/2022-season/__snapshots__/integration.test.js.snap @@ -53,18 +53,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.378695944, "receivingTargets": 5.610284675, "receivingTouchdowns": 0.229331452, - "receivingTouchdowns40Plus": 0.006830957, - "receivingTouchdowns50Plus": 0.00446403, + "receivingTouchdowns40Plus": 0.052838792, + "receivingTouchdowns50Plus": 0.00163, "receivingYards": 40.16878789, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 9.173687418, "rushing2PtConversions": 0.042, "rushingAttempts": 14.64565404, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.178, + "rushingGame200PlusYards": 0.00609, "rushingTouchdowns": 0.590122556, "rushingTouchdowns40Plus": 0.0305, "rushingTouchdowns50Plus": 0.0213, "rushingYards": 63.85917081, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.360281258, - "turnovers": 0.098049781, + "totalTurnovers": 0.098049781, "usesPoints": false, }, "rawStats": PlayerStats { @@ -72,10 +85,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 36, "receivingYardsAfterCatch": 39, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9, "rushingAttempts": 14, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 36, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 2.571, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9.2, @@ -132,18 +156,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.83538448, "receivingTargets": 5.769455642, "receivingTouchdowns": 0.346809648, - "receivingTouchdowns40Plus": 0.025800593, - "receivingTouchdowns50Plus": 0.016860688, + "receivingTouchdowns40Plus": 0.141087808, + "receivingTouchdowns50Plus": 0.00436, "receivingYards": 57.78000628, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 15.06498412, "rushing2PtConversions": 0.00894, "rushingAttempts": 4.485145317, + "rushingGame100To199Yards": 0.0351, + "rushingGame200PlusYards": 0.0012, "rushingTouchdowns": 0.344826447, "rushingTouchdowns40Plus": 0.00857, "rushingTouchdowns50Plus": 0.006, "rushingYards": 28.38585844, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.328860368, - "turnovers": 0.071309605, + "totalTurnovers": 0.071309605, "usesPoints": false, }, "rawStats": PlayerStats { @@ -153,12 +188,22 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 14, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 52, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6.5, - "turnovers": 1, + "teamLoss": 1, + "teamPointsScored": 6, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 11.6, @@ -208,11 +253,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.646799329, "receivingTargets": 7.108264962, "receivingTouchdowns": 0.238212363, - "receivingTouchdowns40Plus": 0.011928303, - "receivingTouchdowns50Plus": 0.007795146, + "receivingTouchdowns40Plus": 0.143083496, + "receivingTouchdowns50Plus": 0.00443, "receivingYards": 58.0969789, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.50257969, - "turnovers": 0.02513759, + "totalTurnovers": 0.02513759, "usesPoints": false, }, "rawStats": PlayerStats { @@ -220,7 +270,10 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 19, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 2.9000000000000004, @@ -274,18 +327,30 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.428944247, "receivingTargets": 4.528165947, "receivingTouchdowns": 0.125885233, - "receivingTouchdowns40Plus": 0.002831779, - "receivingTouchdowns50Plus": 0.001850567, + "receivingTouchdowns40Plus": 0.017010985, + "receivingTouchdowns50Plus": 0.000526, "receivingYards": 26.29689783, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.669094607, "rushing2PtConversions": 0.0211, "rushingAttempts": 11.32441517, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.109, + "rushingGame200PlusYards": 0.0037, "rushingTouchdowns": 0.302877739, "rushingTouchdowns40Plus": 0.0229, "rushingTouchdowns50Plus": 0.0161, "rushingYards": 49.82742675, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.4, - "turnovers": 0.05847542, + "totalTurnovers": 0.05847542, "usesPoints": false, }, "rawStats": PlayerStats { @@ -294,10 +359,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 18, "receivingYardsAfterCatch": 2, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9, "rushingAttempts": 4, "rushingYards": 47, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 11.75, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7.5, @@ -349,32 +421,57 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 36.11339447, "passingCompletionPercentage": 0.653589222, "passingCompletions": 23.60332538, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.51006909, "passingInterceptions": 0.755160535, "passingTouchdowns": 2.195286179, "passingTouchdowns40Plus": 0.232080412, "passingTouchdowns50Plus": 0.151664549, "passingYards": 263.531673, + "passingYards300To399": 0.273292218, + "passingYards400Plus": 0.036914613, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 52, "rushing2PtConversions": 0.0151, "rushingAttempts": 3.627207962, + "rushingGame100To199Yards": 0.0123, + "rushingGame200PlusYards": 0.000421, "rushingTouchdowns": 0.211922501, "rushingTouchdowns40Plus": 0.00688, "rushingTouchdowns50Plus": 0.00481, "rushingYards": 16.84997904, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.645440575, - "turnovers": 0.932699942, + "totalTurnovers": 0.932699942, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 34, "passingCompletionPercentage": 76.47, "passingCompletions": 26, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 8, + "passingIncompletionsPer5Incompletions": 1, "passingTouchdowns": 3, "passingYards": 279, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 55, "rushingAttempts": 4, "rushingYards": 1, "rushingYardsPerAttempt": 0.25, + "teamPointsScored": 18, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 23.259999999999998, @@ -429,18 +526,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.14224732, "receivingTargets": 7.250094707, "receivingTouchdowns": 0.29273987, - "receivingTouchdowns40Plus": 0.009463052, - "receivingTouchdowns50Plus": 0.006184105, + "receivingTouchdowns40Plus": 0.130255243, + "receivingTouchdowns50Plus": 0.00403, "receivingYards": 56.02271061, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.89459669, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.00211, "rushingAttempts": 0.719466675, + "rushingGame100To199Yards": 0.000859, + "rushingGame200PlusYards": 0.0000293, "rushingTouchdowns": 0.032818436, "rushingTouchdowns40Plus": 0.00133, "rushingTouchdowns50Plus": 0.00093, "rushingYards": 4.511309253, "rushingYardsPerAttempt": 6.270351932, - "turnovers": 0.032990593, + "totalTurnovers": 0.032990593, "usesPoints": false, }, "rawStats": PlayerStats { @@ -449,7 +554,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 64, "receivingYardsAfterCatch": 31, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8, + "receptionsPer5Receptions": 1, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 16.4, @@ -500,11 +613,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.576397345, "receivingTargets": 6.942804289, "receivingTouchdowns": 0.330398952, - "receivingTouchdowns40Plus": 0.007511347, - "receivingTouchdowns50Plus": 0.004908665, + "receivingTouchdowns40Plus": 0.100613447, + "receivingTouchdowns50Plus": 0.00311, "receivingYards": 50.81271454, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 11.10321301, - "turnovers": 0.033216724, + "totalTurnovers": 0.033216724, "usesPoints": false, }, "rawStats": PlayerStats { @@ -512,7 +630,10 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 17, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 5.667, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 3.2, @@ -566,18 +687,28 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.941003078, "receivingTargets": 3.828970537, "receivingTouchdowns": 0.120283307, - "receivingTouchdowns40Plus": 0.002111601, - "receivingTouchdowns50Plus": 0.001379932, + "receivingTouchdowns40Plus": 0.009320749, + "receivingTouchdowns50Plus": 0.000288, "receivingYards": 20.07820183, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 6.826991097, "rushing2PtConversions": 0.0109, "rushingAttempts": 8.056461626, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0613, + "rushingGame200PlusYards": 0.00209, "rushingTouchdowns": 0.213102132, "rushingTouchdowns40Plus": 0.0159, "rushingTouchdowns50Plus": 0.0111, "rushingYards": 37.46857238, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.650747949, - "turnovers": 0.042291069, + "totalTurnovers": 0.042291069, "usesPoints": false, }, "rawStats": PlayerStats { @@ -585,10 +716,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 40, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10, "rushingAttempts": 12, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.083, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 8.5, @@ -637,15 +779,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.8648909, "receivingTargets": 6.283667993, "receivingTouchdowns": 0.476430233, - "receivingTouchdowns40Plus": 0.014743253, - "receivingTouchdowns50Plus": 0.009634716, + "receivingTouchdowns40Plus": 0.119224061, + "receivingTouchdowns50Plus": 0.00369, "receivingYards": 54.16085027, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 14.01355217, - "turnovers": 0.028605325, + "totalTurnovers": 0.028605325, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 4, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0, @@ -703,18 +851,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.342303559, "receivingTargets": 5.307899191, "receivingTouchdowns": 0.411777875, - "receivingTouchdowns40Plus": 0.014728593, - "receivingTouchdowns50Plus": 0.009625135, + "receivingTouchdowns40Plus": 0.075613797, + "receivingTouchdowns50Plus": 0.00234, "receivingYards": 45.73878481, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 13.6848087, "rushing2PtConversions": 0.00053, "rushingAttempts": 0.345011178, + "rushingGame100To199Yards": 0.000192, + "rushingGame200PlusYards": 0.00000656, "rushingTouchdowns": 0.020418833, "rushingTouchdowns40Plus": 0.000635, "rushingTouchdowns50Plus": 0.000444, "rushingYards": 2.178737751, "rushingYardsPerAttempt": 6.314977278, - "turnovers": 0.033599437, + "totalTurnovers": 0.033599437, "usesPoints": false, }, "rawStats": PlayerStats { @@ -722,10 +876,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 40, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 20, "rushingAttempts": 1, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 7, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.7, @@ -777,20 +937,37 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 23.81107759, "passingCompletionPercentage": 0.642412307, "passingCompletions": 15.2965293, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 8.514548295, "passingInterceptions": 0.62318728, "passingTouchdowns": 1.448483835, "passingTouchdowns40Plus": 0.121795006, "passingTouchdowns50Plus": 0.079593037, "passingYards": 185.2446659, + "passingYards300To399": 0.085380119, + "passingYards400Plus": 0.011532615, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 18, + "passingYardsPer20Yards": 9, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 37, "rushing2PtConversions": 0.00842, "rushingAttempts": 7.728981767, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0577, + "rushingGame200PlusYards": 0.00197, "rushingTouchdowns": 0.324580713, "rushingTouchdowns40Plus": 0.0152, "rushingTouchdowns50Plus": 0.0106, "rushingYards": 36.34708169, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.702699888, - "turnovers": 0.730841772, + "totalTurnovers": 0.730841772, "usesPoints": false, }, "rawStats": PlayerStats { @@ -800,13 +977,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 28, "passingCompletionPercentage": 46.43, "passingCompletions": 13, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 15, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 1, "passingYards": 164, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 16, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 32, "rushingAttempts": 13, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 54, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.154, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 9.96, @@ -859,20 +1054,33 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 37.20204, "passingCompletionPercentage": 0.665097366, "passingCompletions": 24.7429788, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.4590612, "passingInterceptions": 0.893436472, "passingTouchdowns": 1.820073574, "passingTouchdowns40Plus": 0.236513589, "passingTouchdowns50Plus": 0.15456163, "passingYards": 266.2244643, + "passingYards300To399": 0.284363823, + "passingYards400Plus": 0.038410096, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushing2PtConversions": 0.00415, "rushingAttempts": 2.145734921, + "rushingGame100To199Yards": 0.0011, + "rushingGame200PlusYards": 0.0000377, "rushingTouchdowns": 0.08899391, "rushingTouchdowns40Plus": 0.00401, "rushingTouchdowns50Plus": 0.00281, "rushingYards": 5.099960087, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.376789434, - "turnovers": 1.110576786, + "totalTurnovers": 1.110576786, "usesPoints": false, }, "rawStats": PlayerStats { @@ -882,14 +1090,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 41, "passingCompletionPercentage": 70.73, "passingCompletions": 29, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 12, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 3, "passingTouchdowns": 1, "passingYards": 240, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, - "turnovers": 3, + "teamLoss": 1, + "teamPointsScored": 6, + "totalTurnovers": 3, "usesPoints": false, }, "totalPoints": 7.8, @@ -953,30 +1173,47 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingTouchdowns40Plus": 0.004157266, "passingTouchdowns50Plus": 0.002716773, "passingYards": 1.041176383, + "passingYards300To399": 0.001672896, + "passingYards400Plus": 0.000225964, "receiving2PtConversions": 0.013567422, "receivingReceptions": 3.219477371, "receivingTargets": 5.289980241, "receivingTouchdowns": 0.228427061, - "receivingTouchdowns40Plus": 0.011094239, - "receivingTouchdowns50Plus": 0.007250085, + "receivingTouchdowns40Plus": 0.061663833, + "receivingTouchdowns50Plus": 0.00191, "receivingYards": 42.47411326, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.1928597, "rushing2PtConversions": 0.00000861, "rushingAttempts": 0.006665725, + "rushingGame100To199Yards": -2.33e-7, + "rushingGame200PlusYards": -7.97e-9, "rushingTouchdowns": 0.000177576, "rushingTouchdowns40Plus": 0.0000122, "rushingTouchdowns50Plus": 0.00000856, "rushingYards": 0.04207185, "rushingYardsPerAttempt": 6.311669283, - "turnovers": 0.043244542, + "totalTurnovers": 0.043244542, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 7, "receivingTargets": 9, + "receivingTouchdowns40Plus": 1, "receivingYards": 114, "receivingYardsAfterCatch": 15, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 16.286, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14.9, @@ -1067,12 +1304,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.063022962, "defensiveForcedFumbles": 0.963033107, "defensiveFumbles": 0.625971519, + "defensiveHalfSacks": 4.9029427, "defensiveInterceptions": 0.809526144, "defensiveOver45PointsAllowed": 0.030612245, "defensiveOver550YardsAllowed": 0.012345679, "defensivePointsAllowed": 21.65972135, "defensiveSacks": 2.45147135, "defensiveSafeties": 0.00704422, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 60.78797483, "defensiveYardsAllowed": 353.006674, "fumbleReturnTouchdown": 0.076297499, @@ -1081,6 +1321,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 41.2350173, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 13.95860566, + "totalReturnTouchdowns": 0.136087735, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1100,15 +1341,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 12, "defensiveForcedFumbles": 3, + "defensiveHalfSacks": 12, "defensiveInterceptions": 3, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 19, "defensiveSacks": 6, "defensiveSoloTackles": 39, + "defensiveStuffs": 1, + "defensiveTacklesPer3Tackles": 17, + "defensiveTacklesPer5Tackles": 10, "defensiveTotalTackles": 51, "defensiveYardsAllowed": 320, "kickoffReturnYards": 15, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12, @@ -1143,6 +1389,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.468550937, "madeFieldGoalsFrom40To49": 1.748295356, + "madeFieldGoalsFrom50To59": 0.94784658, "madeFieldGoalsFromUnder40": 2.7062048489999997, "missedExtraPoints": -0.220543211, "missedFieldGoals": -0.332225524, @@ -1154,15 +1401,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.860936962, "attemptedFieldGoalsFrom40To49": 0.584334206, "attemptedFieldGoalsFrom50Plus": 0.310776473, + "attemptedFieldGoalsFrom50To59": 0.310776473, "madeExtraPoints": 2.468550937, "madeFieldGoals": 1.528711438, "madeFieldGoalsFrom40To49": 0.437073839, "madeFieldGoalsFrom50Plus": 0.189569316, + "madeFieldGoalsFrom50To59": 0.189569316, "madeFieldGoalsFromUnder40": 0.902068283, "missedExtraPoints": 0.220543211, "missedFieldGoals": 0.332225524, "missedFieldGoalsFrom40To49": 0.147260367, "missedFieldGoalsFrom50Plus": 0.121207157, + "missedFieldGoalsFrom50To59": 0.121207157, "missedFieldGoalsFromUnder40": 0.063758, "usesPoints": false, }, @@ -1170,9 +1420,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedExtraPoints": 4, "attemptedFieldGoals": 1, "attemptedFieldGoalsFrom40To49": 1, + "fieldGoalAttemptedYards": 41, + "fieldGoalAttemptedYardsPer10Yards": 4, + "fieldGoalAttemptedYardsPer20Yards": 2, + "fieldGoalAttemptedYardsPer25Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 8, + "fieldGoalMadeYards": 41, + "fieldGoalMadeYardsPer10Yards": 4, + "fieldGoalMadeYardsPer20Yards": 2, + "fieldGoalMadeYardsPer25Yards": 1, + "fieldGoalMadeYardsPer5Yards": 8, "madeExtraPoints": 4, "madeFieldGoals": 1, "madeFieldGoalsFrom40To49": 1, + "teamPointsScored": 7, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 8, @@ -1222,11 +1484,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.835738512, "receivingTargets": 4.339252681, "receivingTouchdowns": 0.274805889, - "receivingTouchdowns40Plus": 0.010837612, - "receivingTouchdowns50Plus": 0.00708238, + "receivingTouchdowns40Plus": 0.03511576, + "receivingTouchdowns50Plus": 0.00109, "receivingYards": 34.64263728, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 12.21644278, - "turnovers": 0.013422826, + "totalTurnovers": 0.013422826, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1234,7 +1500,9 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 1, "receivingYards": 7, "receivingYardsAfterCatch": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1.2000000000000002, @@ -1291,27 +1559,40 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 0.578054424, "receivingTargets": 0.74087733, "receivingTouchdowns": 0.026199941, - "receivingTouchdowns40Plus": 0.002384572, - "receivingTouchdowns50Plus": 0.001558318, + "receivingTouchdowns40Plus": 0.001941915, + "receivingTouchdowns50Plus": 0.0000601, "receivingYards": 4.083528819, "receivingYardsPerReception": 7.064263586, "rushing2PtConversions": 0.00495, "rushingAttempts": 2.865786808, + "rushingGame100To199Yards": 0.00648, + "rushingGame200PlusYards": 0.000221, "rushingTouchdowns": 0.121686836, "rushingTouchdowns40Plus": 0.00539, "rushingTouchdowns50Plus": 0.00378, "rushingYards": 12.24200231, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4.271777047, - "turnovers": 0.013467401, + "totalTurnovers": 0.013467401, "usesPoints": false, }, "rawStats": PlayerStats { "fumbles": 1, "kickoffReturnYards": 22, "rushingAttempts": 12, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 62, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 5.167, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12.2, @@ -1370,18 +1651,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.998311173, "receivingTargets": 5.086524832, "receivingTouchdowns": 0.118499044, - "receivingTouchdowns40Plus": 0.002034961, - "receivingTouchdowns50Plus": 0.001329847, + "receivingTouchdowns40Plus": 0.01670503, + "receivingTouchdowns50Plus": 0.000517, "receivingYards": 26.10405766, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.528770907, "rushing2PtConversions": 0.0224, "rushingAttempts": 16.59198543, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.198, + "rushingGame200PlusYards": 0.00677, "rushingTouchdowns": 0.405, "rushingTouchdowns40Plus": 0.0351, "rushingTouchdowns50Plus": 0.0246, "rushingYards": 67.34979399, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.059176298, - "turnovers": 0.05329714, + "totalTurnovers": 0.05329714, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1392,8 +1686,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingYardsAfterCatch": 7, "receivingYardsPerReception": 1.5, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 23, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 2.3, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9.600000000000001, @@ -1447,18 +1748,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.231350317, "receivingTargets": 4.213438711, "receivingTouchdowns": 0.06619568, - "receivingTouchdowns40Plus": 0.00307536, - "receivingTouchdowns50Plus": 0.002009748, + "receivingTouchdowns40Plus": 0.015061839, + "receivingTouchdowns50Plus": 0.000466, "receivingYards": 25.01362678, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.740920769, "rushing2PtConversions": 0.0309, "rushingAttempts": 16.88726599, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.235, + "rushingGame200PlusYards": 0.00801, "rushingTouchdowns": 0.572233484, "rushingTouchdowns40Plus": 0.0358, "rushingTouchdowns50Plus": 0.0251, "rushingYards": 73.24484737, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.337282745, - "turnovers": 0.096790409, + "totalTurnovers": 0.096790409, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1466,10 +1780,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 18, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6, "rushingAttempts": 20, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 90, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12.3, @@ -1524,18 +1848,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.972256459, "receivingTargets": 8.347021581, "receivingTouchdowns": 0.305696903, - "receivingTouchdowns40Plus": 0.015623431, - "receivingTouchdowns50Plus": 0.010209912, + "receivingTouchdowns40Plus": 0.24805437, + "receivingTouchdowns50Plus": 0.00767, "receivingYards": 73.02377296, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 14.68624427, "rushing2PtConversions": 0.000683, "rushingAttempts": 0.470558375, + "rushingGame100To199Yards": 0.000448, + "rushingGame200PlusYards": 0.0000153, "rushingTouchdowns": 0.014676189, "rushingTouchdowns40Plus": 0.000867, "rushingTouchdowns50Plus": 0.000607, "rushingYards": 3.282834873, "rushingYardsPerAttempt": 6.976466782, - "turnovers": 0.044253927, + "totalTurnovers": 0.044253927, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1543,10 +1874,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 43, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 14.333, "rushingAttempts": 1, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 7, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6.5, @@ -1597,19 +1934,34 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.489693117, "receivingTargets": 7.376479817, "receivingTouchdowns": 0.51865723, - "receivingTouchdowns40Plus": 0.018821979, - "receivingTouchdowns50Plus": 0.012300163, + "receivingTouchdowns40Plus": 0.20910742, + "receivingTouchdowns50Plus": 0.00647, "receivingYards": 67.76047274, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 15.09245086, - "turnovers": 0.026973634, + "totalTurnovers": 0.026973634, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 10, "receivingTargets": 13, + "receivingTouchdowns40Plus": 1, "receivingYards": 155, "receivingYardsAfterCatch": 63, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 15.5, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.5, @@ -1663,18 +2015,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.953626459, "receivingTargets": 9.446403259, "receivingTouchdowns": 0.218133814, - "receivingTouchdowns40Plus": 0.009708219, - "receivingTouchdowns50Plus": 0.006344321, + "receivingTouchdowns40Plus": 0.251189297, + "receivingTouchdowns50Plus": 0.00777, "receivingYards": 73.44120527, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 12.33554133, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000353, "rushingAttempts": 0.212717762, + "rushingGame100To199Yards": 0.0000775, + "rushingGame200PlusYards": 0.00000264, "rushingTouchdowns": 0.006386219, "rushingTouchdowns40Plus": 0.000391, "rushingTouchdowns50Plus": 0.000274, "rushingYards": 1.415713853, "rushingYardsPerAttempt": 6.655362678, - "turnovers": 0.066631503, + "totalTurnovers": 0.066631503, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1683,7 +2043,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 12, "receivingYards": 55, "receivingYardsAfterCatch": -2, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 7.857, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9, @@ -1737,18 +2104,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.596987545, "receivingTargets": 3.291287391, "receivingTouchdowns": 0.06342932, - "receivingTouchdowns40Plus": 0.002395327, - "receivingTouchdowns50Plus": 0.001565346, + "receivingTouchdowns40Plus": 0.007751302, + "receivingTouchdowns50Plus": 0.00024, "receivingYards": 18.16881987, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.996113595, "rushing2PtConversions": 0.01825016, "rushingAttempts": 12.22112895, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.115, + "rushingGame200PlusYards": 0.00394, "rushingTouchdowns": 0.496327326, "rushingTouchdowns40Plus": 0.024945781, "rushingTouchdowns50Plus": 0.017462047, "rushingYards": 51.37910904, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.204121342, - "turnovers": 0.051475074, + "totalTurnovers": 0.051475074, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1756,10 +2134,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 1, "receivingYards": 16, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 16, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 57, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 5.7, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7.800000000000001, @@ -1811,22 +2199,32 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.567277473, "receivingTargets": 7.003295061, "receivingTouchdowns": 0.304050835, - "receivingTouchdowns40Plus": 0.012752609, - "receivingTouchdowns50Plus": 0.00833383, + "receivingTouchdowns40Plus": 0.143703875, + "receivingTouchdowns50Plus": 0.00444, "receivingYards": 58.19511213, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.74175096, - "turnovers": 0.032851679, + "totalTurnovers": 0.032851679, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 5, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 59, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 29.5, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12.9, @@ -1879,20 +2277,37 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 36.09581182, "passingCompletionPercentage": 0.644069363, "passingCompletions": 23.24820653, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.84760529, "passingInterceptions": 0.842774782, "passingTouchdowns": 1.69269999, "passingTouchdowns40Plus": 0.238316666, "passingTouchdowns50Plus": 0.155739941, "passingYards": 267.312356, + "passingYards300To399": 0.288941147, + "passingYards400Plus": 0.039028373, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushing2PtConversions": 0.0116, "rushingAttempts": 5.968500345, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0423, + "rushingGame200PlusYards": 0.00144, "rushingTouchdowns": 0.343290874, "rushingTouchdowns40Plus": 0.0115, "rushingTouchdowns50Plus": 0.00808, "rushingYards": 31.1512061, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 5.219268543, - "turnovers": 1.160242253, + "totalTurnovers": 1.160242253, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1900,12 +2315,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 34, "passingCompletionPercentage": 64.71, "passingCompletions": 22, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 2, "passingYards": 193, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 19, + "passingYardsPer20Yards": 9, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 38, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 29, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 5.8, + "teamLoss": 1, + "teamPointsScored": 12, "usesPoints": false, }, "totalPoints": 20.62, @@ -1957,11 +2389,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.957769007, "receivingTargets": 5.846037238, "receivingTouchdowns": 0.316607536, - "receivingTouchdowns40Plus": 0.006822016, - "receivingTouchdowns50Plus": 0.004458187, + "receivingTouchdowns40Plus": 0.059167705, + "receivingTouchdowns50Plus": 0.00183, "receivingYards": 41.84411657, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.57265255, - "turnovers": 0.018108172, + "totalTurnovers": 0.018108172, "usesPoints": false, }, "rawStats": PlayerStats { @@ -1971,7 +2407,11 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 14, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, + "teamLoss": 1, + "teamPointsScored": 8, "usesPoints": false, }, "totalPoints": 10.4, @@ -2022,11 +2462,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.557399505, "receivingTargets": 7.108264962, "receivingTouchdowns": 0.231453971, - "receivingTouchdowns40Plus": 0.011376127, - "receivingTouchdowns50Plus": 0.007434299, + "receivingTouchdowns40Plus": 0.138863673, + "receivingTouchdowns50Plus": 0.00429, "receivingYards": 57.42437471, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.60025035, - "turnovers": 0.027116278, + "totalTurnovers": 0.027116278, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2034,7 +2479,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 74, "receivingYardsAfterCatch": 18, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 14.8, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 9.9, @@ -2069,6 +2521,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.409678667, "madeFieldGoalsFrom40To49": 2.050410096, + "madeFieldGoalsFrom50To59": 1.136291995, "madeFieldGoalsFromUnder40": 3.0344208690000003, "missedExtraPoints": -0.049177116, "missedFieldGoals": -0.217240652, @@ -2080,15 +2533,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.968575198, "attemptedFieldGoalsFrom40To49": 0.618132612, "attemptedFieldGoalsFrom50Plus": 0.328752058, + "attemptedFieldGoalsFrom50To59": 0.328752058, "madeExtraPoints": 2.409678667, "madeFieldGoals": 1.751334546, "madeFieldGoalsFrom40To49": 0.512602524, "madeFieldGoalsFrom50Plus": 0.227258399, + "madeFieldGoalsFrom50To59": 0.227258399, "madeFieldGoalsFromUnder40": 1.011473623, "missedExtraPoints": 0.049177116, "missedFieldGoals": 0.217240652, "missedFieldGoalsFrom40To49": 0.105530088, "missedFieldGoalsFrom50Plus": 0.101493659, + "missedFieldGoalsFrom50To59": 0.101493659, "missedFieldGoalsFromUnder40": 0.010216905, "usesPoints": false, }, @@ -2096,9 +2552,19 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptFieldGoalsFromUnder40": 1, "attemptedExtraPoints": 3, "attemptedFieldGoals": 1, + "fieldGoalAttemptedYards": 24, + "fieldGoalAttemptedYardsPer10Yards": 2, + "fieldGoalAttemptedYardsPer20Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 4, + "fieldGoalMadeYards": 24, + "fieldGoalMadeYardsPer10Yards": 2, + "fieldGoalMadeYardsPer20Yards": 1, + "fieldGoalMadeYardsPer5Yards": 4, "madeExtraPoints": 3, "madeFieldGoals": 1, "madeFieldGoalsFromUnder40": 1, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6, @@ -2150,11 +2616,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.883510425, "receivingTargets": 2.963509321, "receivingTouchdowns": 0.205126932, - "receivingTouchdowns40Plus": 0.010086849, - "receivingTouchdowns50Plus": 0.006591756, + "receivingTouchdowns40Plus": 0.012707565, + "receivingTouchdowns50Plus": 0.000393, "receivingYards": 23.25226052, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.34517219, - "turnovers": 0.011206784, + "totalTurnovers": 0.011206784, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2164,7 +2633,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 1, "receivingYards": 30, "receivingYardsAfterCatch": 15, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 30, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 3.5, @@ -2221,18 +2695,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.968789912, "receivingTargets": 3.986543253, "receivingTouchdowns": 0.122282283, - "receivingTouchdowns40Plus": 0.0036746, - "receivingTouchdowns50Plus": 0.002401351, + "receivingTouchdowns40Plus": 0.014666988, + "receivingTouchdowns50Plus": 0.000454, "receivingYards": 24.73627256, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.332106109, "rushing2PtConversions": 0.00393, "rushingAttempts": 3.092990064, + "rushingGame100To199Yards": 0.00884, + "rushingGame200PlusYards": 0.000302, "rushingTouchdowns": 0.098491311, "rushingTouchdowns40Plus": 0.00583, "rushingTouchdowns50Plus": 0.00408, "rushingYards": 14.28151868, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4.617382655, - "turnovers": 0.041254719, + "totalTurnovers": 0.041254719, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2242,7 +2723,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 50, "receivingYardsAfterCatch": 39, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 8.333, + "receptionsPer5Receptions": 1, "rushingAttempts": 3, "rushingYards": 4, "rushingYardsPerAttempt": 1.333, @@ -2336,12 +2823,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.065504956, "defensiveForcedFumbles": 0.950300329, "defensiveFumbles": 0.617695214, + "defensiveHalfSacks": 4.951310477, "defensiveInterceptions": 0.759369029, "defensiveOver45PointsAllowed": 0.012345679, "defensiveOver550YardsAllowed": 0.024691358, "defensivePointsAllowed": 23.88205966, "defensiveSacks": 2.475655239, "defensiveSafeties": 0.007847027, + "defensiveTacklesPer3Tackles": 21, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 63.37575223, "defensiveYardsAllowed": 369.5619968, "fumbleReturnTouchdown": 0.078650477, @@ -2350,6 +2840,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 33.75294118, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 10.11764706, + "totalReturnTouchdowns": 0.138355309, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2368,15 +2859,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive500To549YardsAllowed": 0, "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 15, + "defensiveHalfSacks": 8, "defensiveInterceptions": 1, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 3, "defensiveSacks": 4, "defensiveSoloTackles": 42, + "defensiveStuffs": 2, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 57, "defensiveYardsAllowed": 244, "puntReturnYards": 28, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12, @@ -2427,18 +2923,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.331118898, "receivingTargets": 5.846037238, "receivingTouchdowns": 0.348707946, - "receivingTouchdowns40Plus": 0.011914617, - "receivingTouchdowns50Plus": 0.007786202, + "receivingTouchdowns40Plus": 0.085130039, + "receivingTouchdowns50Plus": 0.00263, "receivingYards": 47.76706837, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 14.33964678, - "turnovers": 0.022063483, + "totalTurnovers": 0.022063483, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 2.3, @@ -2493,20 +2996,35 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.47352995, "passingCompletionPercentage": 0.633898739, "passingCompletions": 22.4866259, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.98690405, "passingInterceptions": 0.830805831, "passingTouchdowns": 1.334636781, "passingTouchdowns40Plus": 0.207175812, "passingTouchdowns50Plus": 0.135389393, "passingYards": 247.8933102, + "passingYards300To399": 0.215981006, + "passingYards400Plus": 0.029173371, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 49, "rushing2PtConversions": 0.00936, "rushingAttempts": 4.831233429, + "rushingGame100To199Yards": 0.0266, + "rushingGame200PlusYards": 0.000906, "rushingTouchdowns": 0.185338134, "rushingTouchdowns40Plus": 0.00926, "rushingTouchdowns50Plus": 0.00648, "rushingYards": 24.68968487, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.110430956, - "turnovers": 1.176199364, + "totalTurnovers": 1.176199364, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2516,16 +3034,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 21, "passingCompletionPercentage": 80.95, "passingCompletions": 17, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 4, "passingInterceptions": 1, "passingTouchdowns": 2, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 188, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 18, + "passingYardsPer20Yards": 9, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 37, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4.167, - "turnovers": 2, + "teamPointsScored": 12, + "teamWin": 1, + "totalTurnovers": 2, "usesPoints": false, }, "totalPoints": 16.02, @@ -2577,24 +3110,30 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 0.256902294, "receivingTargets": 0.333880863, "receivingTouchdowns": 0.00763355, - "receivingTouchdowns40Plus": 0.002547605, - "receivingTouchdowns50Plus": 0.00166486, + "receivingTouchdowns40Plus": 0.001020502, + "receivingTouchdowns50Plus": 0.0000316, "receivingYards": 1.880332256, "receivingYardsPerReception": 7.319250532, "rushing2PtConversions": 0.00539, "rushingAttempts": 4.235025376, + "rushingGame100To199Yards": 0.0144, + "rushingGame200PlusYards": 0.000493, "rushingTouchdowns": 0.115839489, "rushingTouchdowns40Plus": 0.00807, "rushingTouchdowns50Plus": 0.00565, "rushingYards": 18.22787902, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.304077875, - "turnovers": 0.026394794, + "totalTurnovers": 0.026394794, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 2, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0.5, @@ -2655,18 +3194,30 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.633615523, "receivingTargets": 3.373228906, "receivingTouchdowns": 0.102708189, - "receivingTouchdowns40Plus": 0.005136257, - "receivingTouchdowns50Plus": 0.003356544, + "receivingTouchdowns40Plus": 0.011955155, + "receivingTouchdowns50Plus": 0.00037, "receivingYards": 22.62566594, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.591104411, "rushing2PtConversions": 0.0367, "rushingAttempts": 21.65093045, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.521, + "rushingGame200PlusYards": 0.0178, "rushingTouchdowns": 0.91884554, "rushingTouchdowns40Plus": 0.0477, "rushingTouchdowns50Plus": 0.0334, "rushingYards": 109.0307768, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 5.035847167, - "turnovers": 0.097720818, + "totalTurnovers": 0.097720818, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2674,11 +3225,23 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 14, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 3.5, "rushingAttempts": 31, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 1, "rushingYards": 161, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 32, "rushingYardsPerAttempt": 5.194, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 25.5, @@ -2728,11 +3291,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.874707254, "receivingTargets": 7.295099022, "receivingTouchdowns": 0.536591296, - "receivingTouchdowns40Plus": 0.014704884, - "receivingTouchdowns50Plus": 0.009609641, + "receivingTouchdowns40Plus": 0.174321833, + "receivingTouchdowns50Plus": 0.00539, "receivingYards": 62.83687721, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.89038991, - "turnovers": 0.036213349, + "totalTurnovers": 0.036213349, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2740,7 +3308,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 52, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.4, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.7, @@ -2797,18 +3372,30 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.055955838, "receivingTargets": 5.155479499, "receivingTouchdowns": 0.222839621, - "receivingTouchdowns40Plus": 0.005666905, - "receivingTouchdowns50Plus": 0.003703322, + "receivingTouchdowns40Plus": 0.037162914, + "receivingTouchdowns50Plus": 0.00115, "receivingYards": 35.36547018, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.71939232, "rushing2PtConversions": 0.0158, "rushingAttempts": 10.59301624, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.106, + "rushingGame200PlusYards": 0.0036, "rushingTouchdowns": 0.32157748, "rushingTouchdowns40Plus": 0.0213, "rushingTouchdowns50Plus": 0.0149, "rushingYards": 49.12786837, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.637760129, - "turnovers": 0.060903502, + "totalTurnovers": 0.060903502, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2816,10 +3403,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 27, "receivingYardsAfterCatch": 36, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 9, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 49, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 9.8, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 9.100000000000001, @@ -2870,11 +3467,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.101647941, "receivingTargets": 7.012855844, "receivingTouchdowns": 0.590997573, - "receivingTouchdowns40Plus": 0.015712131, - "receivingTouchdowns50Plus": 0.010267878, + "receivingTouchdowns40Plus": 0.164868246, + "receivingTouchdowns50Plus": 0.0051, "receivingYards": 61.44150259, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 14.97971144, - "turnovers": 0.014751241, + "totalTurnovers": 0.014751241, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2882,7 +3484,10 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 10, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 2, @@ -2938,18 +3543,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.170699584, "receivingTargets": 2.818970681, "receivingTouchdowns": 0.07893511, - "receivingTouchdowns40Plus": 0.002531936, - "receivingTouchdowns50Plus": 0.00165462, + "receivingTouchdowns40Plus": 0.006239623, + "receivingTouchdowns50Plus": 0.000193, "receivingYards": 15.84535538, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.29965376, "rushing2PtConversions": 0.0217, "rushingAttempts": 9.851424758, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0784, + "rushingGame200PlusYards": 0.00268, "rushingTouchdowns": 0.305370689, "rushingTouchdowns40Plus": 0.0197, "rushingTouchdowns50Plus": 0.0138, "rushingYards": 42.36112646, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.3, - "turnovers": 0.047138724, + "totalTurnovers": 0.047138724, "usesPoints": false, }, "rawStats": PlayerStats { @@ -2959,11 +3573,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 9, "receivingYards": 38, "receivingYardsAfterCatch": 30, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 6.333, + "receptionsPer5Receptions": 1, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 23, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.833, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 7.1000000000000005, @@ -3014,18 +3638,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.789526598, "receivingTargets": 8.043973873, "receivingTouchdowns": 0.349411956, - "receivingTouchdowns40Plus": 0.008150832, - "receivingTouchdowns50Plus": 0.005326569, + "receivingTouchdowns40Plus": 0.155346475, + "receivingTouchdowns50Plus": 0.0048, "receivingYards": 60.00390576, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 12.52814961, - "turnovers": 0.026685933, + "totalTurnovers": 0.026685933, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 12, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1.7000000000000002, @@ -3080,18 +3712,28 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.209986244, "receivingTargets": 2.749589066, "receivingTouchdowns": 0.080014922, - "receivingTouchdowns40Plus": 0.0035642, - "receivingTouchdowns50Plus": 0.002329205, + "receivingTouchdowns40Plus": 0.006899534, + "receivingTouchdowns50Plus": 0.000213, "receivingYards": 16.93605556, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.663421257, "rushing2PtConversions": 0.0147, "rushingAttempts": 10.36763292, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.0889, + "rushingGame200PlusYards": 0.00303, "rushingTouchdowns": 0.30039621, "rushingTouchdowns40Plus": 0.0208, "rushingTouchdowns50Plus": 0.0146, "rushingYards": 45.09854442, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.349936459, - "turnovers": 0.054268049, + "totalTurnovers": 0.054268049, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3099,11 +3741,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 46, "receivingYardsAfterCatch": 45, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.2, + "receptionsPer5Receptions": 1, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 45, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.5, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 17.6, @@ -3161,18 +3816,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.073005135, "receivingTargets": 4.017714979, "receivingTouchdowns": 0.134975511, - "receivingTouchdowns40Plus": 0.004966838, - "receivingTouchdowns50Plus": 0.003245829, + "receivingTouchdowns40Plus": 0.017736003, + "receivingTouchdowns50Plus": 0.000549, "receivingYards": 26.74251035, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 8.702396897, "rushing2PtConversions": 0.00834, "rushingAttempts": 8.969074589, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0524, + "rushingGame200PlusYards": 0.00179, "rushingTouchdowns": 0.177968381, "rushingTouchdowns40Plus": 0.0178, "rushingTouchdowns50Plus": 0.0125, "rushingYards": 34.65681433, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 3.864034576, - "turnovers": 0.059991339, + "totalTurnovers": 0.059991339, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3180,11 +3846,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 16, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 5.333, "rushingAttempts": 22, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 1, "rushingYards": 120, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 5.455, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 21.1, @@ -3236,25 +3915,35 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.19726974, "receivingTargets": 6.434143277, "receivingTouchdowns": 0.317652874, - "receivingTouchdowns40Plus": 0.011699829, - "receivingTouchdowns50Plus": 0.007645838, + "receivingTouchdowns40Plus": 0.10888783, + "receivingTouchdowns50Plus": 0.00337, "receivingYards": 52.33745799, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 12.46940541, "rushing2PtConversions": 0.000217, "rushingAttempts": 0.152600025, + "rushingGame100To199Yards": 0.000033, + "rushingGame200PlusYards": 0.00000113, "rushingTouchdowns": 0.007002838, "rushingTouchdowns40Plus": 0.00028, "rushingTouchdowns50Plus": 0.000196, "rushingYards": 0.956310521, "rushingYardsPerAttempt": 6.266778257, - "turnovers": 0.020084699, + "totalTurnovers": 0.020084699, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 13, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1.8, @@ -3307,18 +3996,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.432910195, "receivingTargets": 1.874892245, "receivingTouchdowns": 0.079717805, - "receivingTouchdowns40Plus": 0.002791425, - "receivingTouchdowns50Plus": 0.001824196, + "receivingTouchdowns40Plus": 0.004067569, + "receivingTouchdowns50Plus": 0.000126, "receivingYards": 10.84506346, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.568557684, "rushing2PtConversions": 0.0187, "rushingAttempts": 8.973754571, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.066, + "rushingGame200PlusYards": 0.00225, "rushingTouchdowns": 0.356015687, "rushingTouchdowns40Plus": 0.0178, "rushingTouchdowns50Plus": 0.0125, "rushingYards": 38.88281572, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.332948423, - "turnovers": 0.048254245, + "totalTurnovers": 0.048254245, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3328,11 +4026,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 14, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, "rushingAttempts": 12, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 58, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.833, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 6.200000000000001, @@ -3383,29 +4091,53 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 36.38794344, "passingCompletionPercentage": 0.65904926, "passingCompletions": 23.98144721, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.40649623, "passingInterceptions": 0.69762354, "passingTouchdowns": 1.542742907, "passingTouchdowns40Plus": 0.2239454, "passingTouchdowns50Plus": 0.146348319, "passingYards": 258.5215464, + "passingYards300To399": 0.253654566, + "passingYards400Plus": 0.034262081, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 51, "rushing2PtConversions": 0.00334, "rushingAttempts": 1.744095689, + "rushingGame100To199Yards": 0.00148, + "rushingGame200PlusYards": 0.0000504, "rushingTouchdowns": 0.061986693, "rushingTouchdowns40Plus": 0.00325, "rushingTouchdowns50Plus": 0.00228, "rushingYards": 5.88944022, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.376787328, - "turnovers": 1.006211645, + "totalTurnovers": 1.006211645, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 32, "passingCompletionPercentage": 71.88, "passingCompletions": 23, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 9, + "passingIncompletionsPer5Incompletions": 1, "passingTouchdowns": 2, "passingYards": 277, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 55, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 19.08, @@ -3458,20 +4190,35 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 30.28838658, "passingCompletionPercentage": 0.636219791, "passingCompletions": 19.27007097, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 11.01831561, "passingInterceptions": 0.858239224, "passingTouchdowns": 1.712127943, "passingTouchdowns40Plus": 0.175782183, "passingTouchdowns50Plus": 0.114873656, "passingYards": 226.7473133, + "passingYards300To399": 0.155855398, + "passingYards400Plus": 0.021051978, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 45, "rushing2PtConversions": 0.00603, "rushingAttempts": 4.596674844, + "rushingGame100To199Yards": 0.0217, + "rushingGame200PlusYards": 0.00074, "rushingTouchdowns": 0.12432735, "rushingTouchdowns40Plus": 0.00879, "rushingTouchdowns50Plus": 0.00615, "rushingYards": 22.31973562, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.855626377, - "turnovers": 1.110194413, + "totalTurnovers": 1.110194413, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3479,12 +4226,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 34, "passingCompletionPercentage": 67.65, "passingCompletions": 23, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 2, "passingYards": 269, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushingAttempts": 2, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4.5, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 21.66, @@ -3535,11 +4295,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.656610739, "receivingTargets": 5.921447777, "receivingTouchdowns": 0.366922431, - "receivingTouchdowns40Plus": 0.0064998, - "receivingTouchdowns50Plus": 0.00424762, + "receivingTouchdowns40Plus": 0.05944534, + "receivingTouchdowns50Plus": 0.00184, "receivingYards": 41.91498914, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11.46279769, - "turnovers": 0.013150701, + "totalTurnovers": 0.013150701, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3547,7 +4311,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 38, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.800000000000001, @@ -3598,11 +4367,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.349989976, "receivingTargets": 5.930374592, "receivingTouchdowns": 0.255304906, - "receivingTouchdowns40Plus": 0.009491107, - "receivingTouchdowns50Plus": 0.006202438, + "receivingTouchdowns40Plus": 0.076152374, + "receivingTouchdowns50Plus": 0.00236, "receivingYards": 45.85736824, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 13.6888076, - "turnovers": 0.021264013, + "totalTurnovers": 0.021264013, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3610,7 +4383,9 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 9, "receivingYardsAfterCatch": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 1.4, @@ -3736,11 +4511,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.070652336, "defensiveForcedFumbles": 0.935656083, "defensiveFumbles": 0.608176454, + "defensiveHalfSacks": 4.111762314, "defensiveInterceptions": 0.808145618, "defensiveOver45PointsAllowed": 0.037037037, "defensivePointsAllowed": 26.02972156, "defensiveSacks": 2.055881157, "defensiveSafeties": 0.007553832, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 62.21911707, "defensiveYardsAllowed": 371.6262432, "fumbleReturnTouchdown": 0.080715166, @@ -3749,6 +4527,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 40.00611765, "puntReturnTouchdown": 0.013379576, "puntReturnYards": 12.41513122, + "totalReturnTouchdowns": 0.143308321, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3767,16 +4546,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive500To549YardsAllowed": 0, "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 24, + "defensiveHalfSacks": 4, "defensiveInterceptions": 1, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 19, "defensiveSacks": 2, "defensiveSoloTackles": 44, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 22, + "defensiveTacklesPer5Tackles": 13, "defensiveTotalTackles": 68, "defensiveYardsAllowed": 347, "kickoffReturnYards": 77, "puntReturnYards": 3, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4, @@ -3813,6 +4597,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.645537367, "madeFieldGoalsFrom40To49": 1.85424122, + "madeFieldGoalsFrom50To59": 1.019470725, "madeFieldGoalsFromUnder40": 2.8345488420000002, "missedExtraPoints": -0.088183969, "missedFieldGoals": -0.238302301, @@ -3824,15 +4609,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.850606365, "attemptedFieldGoalsFrom40To49": 0.581090399, "attemptedFieldGoalsFrom50Plus": 0.309051263, + "attemptedFieldGoalsFrom50To59": 0.309051263, "madeExtraPoints": 2.645537367, "madeFieldGoals": 1.612304064, "madeFieldGoalsFrom40To49": 0.463560305, "madeFieldGoalsFrom50Plus": 0.203894145, + "madeFieldGoalsFrom50To59": 0.203894145, "madeFieldGoalsFromUnder40": 0.944849614, "missedExtraPoints": 0.088183969, "missedFieldGoals": 0.238302301, "missedFieldGoalsFrom40To49": 0.117530094, "missedFieldGoalsFrom50Plus": 0.105157118, + "missedFieldGoalsFrom50To59": 0.105157118, "missedFieldGoalsFromUnder40": 0.01561509, "usesPoints": false, }, @@ -3843,6 +4631,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoalsFrom40To49": 1, "attemptedFieldGoalsFrom50Plus": 1, "attemptedFieldGoalsFrom60Plus": 1, + "fieldGoalAttemptedYards": 160, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 16, + "fieldGoalAttemptedYardsPer20Yards": 8, + "fieldGoalAttemptedYardsPer25Yards": 6, + "fieldGoalAttemptedYardsPer50Yards": 3, + "fieldGoalAttemptedYardsPer5Yards": 32, + "fieldGoalMadeYards": 96, + "fieldGoalMadeYardsPer10Yards": 9, + "fieldGoalMadeYardsPer20Yards": 4, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 19, + "fieldGoalMissedYards": 64, + "fieldGoalMissedYardsPer10Yards": 6, + "fieldGoalMissedYardsPer20Yards": 3, + "fieldGoalMissedYardsPer25Yards": 2, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 12, "madeExtraPoints": 1, "madeFieldGoals": 3, "madeFieldGoalsFrom40To49": 1, @@ -3850,6 +4657,8 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "missedFieldGoals": 1, "missedFieldGoalsFrom50Plus": 1, "missedFieldGoalsFrom60Plus": 1, + "teamLoss": 1, + "teamPointsScored": 10, "usesPoints": false, }, "totalPoints": 10, @@ -3937,10 +4746,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.059744307, "defensiveForcedFumbles": 0.753276139, "defensiveFumbles": 0.489629491, + "defensiveHalfSacks": 5.047814845, "defensiveInterceptions": 0.830805831, "defensivePointsAllowed": 19.88581366, "defensiveSacks": 2.523907423, "defensiveSafeties": 0.007684159, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 58.25492559, "defensiveYardsAllowed": 339.7666977, "fumbleReturnTouchdown": 0.075246003, @@ -3949,6 +4761,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 40.4621861, "puntReturnTouchdown": 0.013962353, "puntReturnYards": 12.44470588, + "totalReturnTouchdowns": 0.137026076, "usesPoints": false, }, "rawStats": PlayerStats { @@ -3969,16 +4782,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveAssistedTackles": 27, "defensiveForcedFumbles": 2, "defensiveFumbles": 1, + "defensiveHalfSacks": 10, "defensiveInterceptions": 1, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 21, "defensiveSacks": 5, "defensiveSoloTackles": 50, + "defensiveStuffs": 2, + "defensiveTacklesPer3Tackles": 25, + "defensiveTacklesPer5Tackles": 15, "defensiveTotalTackles": 77, "defensiveYardsAllowed": 394, "kickoffReturnYards": 33, "puntReturnYards": 62, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 8, @@ -4037,18 +4855,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.103081084, "receivingTargets": 7.908392656, "receivingTouchdowns": 0.585966634, - "receivingTouchdowns40Plus": 0.022516202, - "receivingTouchdowns50Plus": 0.014714338, + "receivingTouchdowns40Plus": 0.272396777, + "receivingTouchdowns50Plus": 0.00842, "receivingYards": 76.25620535, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 14.94316945, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.00169, "rushingAttempts": 0.910816158, + "rushingGame100To199Yards": 0.00117, + "rushingGame200PlusYards": 0.0000399, "rushingTouchdowns": 0.035192923, "rushingTouchdowns40Plus": 0.00168, "rushingTouchdowns50Plus": 0.00118, "rushingYards": 5.244431278, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5.757947123, - "turnovers": 0.048578848, + "totalTurnovers": 0.048578848, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4057,9 +4884,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 10, "receivingTargets": 16, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 129, "receivingYardsAfterCatch": 64, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 12.9, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 23.9, @@ -4113,18 +4951,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.929864255, "receivingTargets": 5.583868032, "receivingTouchdowns": 0.248524706, - "receivingTouchdowns40Plus": 0.006823779, - "receivingTouchdowns50Plus": 0.00445934, + "receivingTouchdowns40Plus": 0.052117489, + "receivingTouchdowns50Plus": 0.00161, "receivingYards": 39.96997019, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.17082718, "rushing2PtConversions": 0.0242, "rushingAttempts": 15.35448116, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.176, + "rushingGame200PlusYards": 0.00602, "rushingTouchdowns": 0.499184549, "rushingTouchdowns40Plus": 0.0322, "rushingTouchdowns50Plus": 0.0225, "rushingYards": 63.49049166, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.134981246, - "turnovers": 0.052067977, + "totalTurnovers": 0.052067977, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4132,10 +4983,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 7, "receivingYardsAfterCatch": 14, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.333, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 39, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.333, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6.1000000000000005, @@ -4186,11 +5044,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.485042129, "receivingTargets": 8.06478422, "receivingTouchdowns": 0.442029663, - "receivingTouchdowns40Plus": 0.007512918, - "receivingTouchdowns50Plus": 0.004909692, + "receivingTouchdowns40Plus": 0.149010625, + "receivingTouchdowns50Plus": 0.00461, "receivingYards": 59.02708149, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.76146365, - "turnovers": 0.039324806, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.039324806, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4198,7 +5062,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 66, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 16.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 8.600000000000001, @@ -4250,18 +5120,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.729875677, "receivingTargets": 3.809861815, "receivingTouchdowns": 0.144908097, - "receivingTouchdowns40Plus": 0.001937695, - "receivingTouchdowns50Plus": 0.001266284, + "receivingTouchdowns40Plus": 0.007940761, + "receivingTouchdowns50Plus": 0.000246, "receivingYards": 18.42136283, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.748059256, "rushing2PtConversions": 0.0299, "rushingAttempts": 12.71475913, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.113, + "rushingGame200PlusYards": 0.00386, "rushingTouchdowns": 0.463710144, "rushingTouchdowns40Plus": 0.0261, "rushingTouchdowns50Plus": 0.0182, "rushingYards": 50.88239697, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.00183727, - "turnovers": 0.058248409, + "totalTurnovers": 0.058248409, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4270,8 +5151,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingYards": -3, "receivingYardsPerReception": -3, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 52, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 5.2, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.4, @@ -4323,11 +5212,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.558436283, "receivingTargets": 7.530670284, "receivingTouchdowns": 0.3328136, - "receivingTouchdowns40Plus": 0.015698736, - "receivingTouchdowns50Plus": 0.010259124, + "receivingTouchdowns40Plus": 0.196181664, + "receivingTouchdowns50Plus": 0.00607, "receivingYards": 65.96369403, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 14.47068467, - "turnovers": 0.039405724, + "totalTurnovers": 0.039405724, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4337,8 +5231,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 36, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 5.143, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 5.1, @@ -4390,11 +5290,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.664580792, "receivingTargets": 7.038334638, "receivingTouchdowns": 0.416856142, - "receivingTouchdowns40Plus": 0.008612478, - "receivingTouchdowns50Plus": 0.005628255, + "receivingTouchdowns40Plus": 0.113639259, + "receivingTouchdowns50Plus": 0.00351, "receivingYards": 53.18602006, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 11.40210073, - "turnovers": 0.034745429, + "totalTurnovers": 0.034745429, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4404,8 +5309,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 8, "receivingYards": 79, "receivingYardsAfterCatch": 25, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 13.167, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 8.9, @@ -4462,18 +5374,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.160817335, "receivingTargets": 2.794544717, "receivingTouchdowns": 0.091456219, - "receivingTouchdowns40Plus": 0.002884883, - "receivingTouchdowns50Plus": 0.001885271, + "receivingTouchdowns40Plus": 0.006511586, + "receivingTouchdowns50Plus": 0.000201, "receivingYards": 16.31161104, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.54881534, "rushing2PtConversions": 0.041, "rushingAttempts": 16.84308409, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.228, + "rushingGame200PlusYards": 0.00778, "rushingTouchdowns": 0.665142292, "rushingTouchdowns40Plus": 0.0357, "rushingTouchdowns50Plus": 0.025, "rushingYards": 72.19381331, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.286258557, - "turnovers": 0.114043111, + "totalTurnovers": 0.114043111, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4481,10 +5404,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 8, "receivingYards": 72, "receivingYardsAfterCatch": 44, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.286, + "receptionsPer5Receptions": 1, "rushingAttempts": 14, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 58, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.143, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 16.5, @@ -4541,18 +5478,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.072763243, "receivingTargets": 4.933198693, "receivingTouchdowns": 0.226752343, - "receivingTouchdowns40Plus": 0.010127172, - "receivingTouchdowns50Plus": 0.006618107, + "receivingTouchdowns40Plus": 0.047808822, + "receivingTouchdowns50Plus": 0.00148, "receivingYards": 38.74398726, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.60884234, "rushing2PtConversions": 0.000354, "rushingAttempts": 0.114551451, + "rushingGame100To199Yards": 0.0000155, + "rushingGame200PlusYards": 5.3e-7, "rushingTouchdowns": 0.004971801, "rushingTouchdowns40Plus": 0.00021, "rushingTouchdowns50Plus": 0.000147, "rushingYards": 0.685128593, "rushingYardsPerAttempt": 5.98096828, - "turnovers": 0.018842639, + "totalTurnovers": 0.018842639, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4560,7 +5503,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 8, "receivingYards": 52, "receivingYardsAfterCatch": 19, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7.2, @@ -4615,20 +5564,34 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 32.71915246, "passingCompletionPercentage": 0.668124888, "passingCompletions": 21.86048009, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 10.85867237, "passingInterceptions": 0.697522671, "passingTouchdowns": 1.903693723, "passingTouchdowns40Plus": 0.210602063, "passingTouchdowns50Plus": 0.137628448, "passingYards": 250.0993483, + "passingYards300To399": 0.223368146, + "passingYards400Plus": 0.03017118, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 50, "rushing2PtConversions": 0.00789, "rushingAttempts": 3.189038701, + "rushingGame100To199Yards": 0.00519, + "rushingGame200PlusYards": 0.000177, "rushingTouchdowns": 0.164062142, "rushingTouchdowns40Plus": 0.006020899, "rushingTouchdowns50Plus": 0.004214629, "rushingYards": 10.95668139, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.43573171, - "turnovers": 0.908818031, + "totalTurnovers": 0.908818031, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4638,14 +5601,32 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 53, "passingCompletionPercentage": 62.26, "passingCompletions": 33, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 6, "passingIncompletions": 20, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 4, "passingTouchdowns": 2, "passingYards": 338, + "passingYards300To399": 1, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 33, + "passingYardsPer20Yards": 16, + "passingYardsPer25Yards": 13, + "passingYardsPer50Yards": 6, + "passingYardsPer5Yards": 67, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 47, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 7.833, - "turnovers": 5, + "teamLoss": 1, + "teamPointsScored": 12, + "totalTurnovers": 5, "usesPoints": false, }, "totalPoints": 18.22, @@ -4735,11 +5716,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.269612986, "receivingTargets": 5.813171236, "receivingTouchdowns": 0.243363978, - "receivingTouchdowns40Plus": 0.004336706, - "receivingTouchdowns50Plus": 0.002834037, + "receivingTouchdowns40Plus": 0.043693698, + "receivingTouchdowns50Plus": 0.00135, "receivingYards": 37.5040701, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 8.783950729, - "turnovers": 0.030568964, + "totalTurnovers": 0.030568964, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4747,7 +5732,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 10, "receivingYards": 75, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 15, + "receptionsPer5Receptions": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 10, @@ -4807,18 +5799,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.543420706, "receivingTargets": 4.094454813, "receivingTouchdowns": 0.265555102, - "receivingTouchdowns40Plus": 0.012931133, - "receivingTouchdowns50Plus": 0.008450495, + "receivingTouchdowns40Plus": 0.033744213, + "receivingTouchdowns50Plus": 0.00104, "receivingYards": 34.14181213, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 13.42358032, "rushing2PtConversions": 0.000549, "rushingAttempts": 0.457800076, + "rushingGame100To199Yards": 0.000319, + "rushingGame200PlusYards": 0.0000109, "rushingTouchdowns": 0.017735371, "rushingTouchdowns40Plus": 0.000843, "rushingTouchdowns50Plus": 0.00059, "rushingYards": 2.783867742, "rushingYardsPerAttempt": 6.08096828, - "turnovers": 0.017370692, + "totalTurnovers": 0.017370692, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4826,7 +5824,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 55, "receivingYardsAfterCatch": 30, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 18.333, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7, @@ -4874,15 +5878,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.321258254, "receivingTargets": 5.060242201, "receivingTouchdowns": 0.190886464, - "receivingTouchdowns40Plus": 0.00544934, - "receivingTouchdowns50Plus": 0.003561144, + "receivingTouchdowns40Plus": 0.034455163, + "receivingTouchdowns50Plus": 0.00107, "receivingYards": 34.4031578, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.35847115, - "turnovers": 0.021966663, + "totalTurnovers": 0.021966663, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0, @@ -4934,11 +5943,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.355770953, "receivingTargets": 5.449848034, "receivingTouchdowns": 0.155923464, - "receivingTouchdowns40Plus": 0.01024384, - "receivingTouchdowns50Plus": 0.00669435, + "receivingTouchdowns40Plus": 0.063468241, + "receivingTouchdowns50Plus": 0.00196, "receivingYards": 42.91984599, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.78986158, - "turnovers": 0.019966654, + "totalTurnovers": 0.019966654, "usesPoints": false, }, "rawStats": PlayerStats { @@ -4946,6 +5959,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 3, "receivingYardsPerReception": 3, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0.8, @@ -5036,12 +6050,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.064960847, "defensiveForcedFumbles": 0.71576211, "defensiveFumbles": 0.465245371, + "defensiveHalfSacks": 5.048806471, "defensiveInterceptions": 0.859255847, "defensiveOver45PointsAllowed": 0.020618557, "defensiveOver550YardsAllowed": 0.024691358, "defensivePointsAllowed": 17.96708259, "defensiveSacks": 2.524403236, "defensiveSafeties": 0.00719179, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 58.11740671, "defensiveYardsAllowed": 329.9226735, "fumbleReturnTouchdown": 0.075150256, @@ -5050,6 +6067,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 49.42535948, "puntReturnTouchdown": 0.020684325, "puntReturnYards": 18.42857143, + "totalReturnTouchdowns": 0.149006152, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5070,11 +6088,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveAssistedTackles": 11, "defensiveForcedFumbles": 1, "defensiveFumbles": 1, + "defensiveHalfSacks": 6, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 20, "defensiveSacks": 3, "defensiveSoloTackles": 49, + "defensiveStuffs": 3, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 60, "defensiveYardsAllowed": 299, "puntReturnYards": 34, @@ -5114,6 +6136,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.70934188, "madeFieldGoalsFrom40To49": 1.653539352, + "madeFieldGoalsFrom50To59": 0.8927905, "madeFieldGoalsFromUnder40": 2.568788997, "missedExtraPoints": -0.285587846, "missedFieldGoals": -0.343837848, @@ -5125,15 +6148,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.792043786, "attemptedFieldGoalsFrom40To49": 0.562701749, "attemptedFieldGoalsFrom50Plus": 0.299271312, + "attemptedFieldGoalsFrom50To59": 0.299271312, "madeExtraPoints": 2.70934188, "madeFieldGoals": 1.448205938, "madeFieldGoalsFrom40To49": 0.413384838, "madeFieldGoalsFrom50Plus": 0.1785581, + "madeFieldGoalsFrom50To59": 0.1785581, "madeFieldGoalsFromUnder40": 0.856262999, "missedExtraPoints": 0.285587846, "missedFieldGoals": 0.343837848, "missedFieldGoalsFrom40To49": 0.14931691, "missedFieldGoalsFrom50Plus": 0.120713212, + "missedFieldGoalsFrom50To59": 0.120713212, "missedFieldGoalsFromUnder40": 0.073807726, "usesPoints": false, }, @@ -5142,12 +6168,33 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedExtraPoints": 1, "attemptedFieldGoals": 5, "attemptedFieldGoalsFrom40To49": 2, + "fieldGoalAttemptedYards": 194, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 19, + "fieldGoalAttemptedYardsPer20Yards": 9, + "fieldGoalAttemptedYardsPer25Yards": 7, + "fieldGoalAttemptedYardsPer50Yards": 3, + "fieldGoalAttemptedYardsPer5Yards": 38, + "fieldGoalMadeYards": 158, + "fieldGoalMadeYardsPer100Yards": 1, + "fieldGoalMadeYardsPer10Yards": 15, + "fieldGoalMadeYardsPer20Yards": 7, + "fieldGoalMadeYardsPer25Yards": 6, + "fieldGoalMadeYardsPer50Yards": 3, + "fieldGoalMadeYardsPer5Yards": 31, + "fieldGoalMissedYards": 36, + "fieldGoalMissedYardsPer10Yards": 3, + "fieldGoalMissedYardsPer20Yards": 1, + "fieldGoalMissedYardsPer25Yards": 1, + "fieldGoalMissedYardsPer5Yards": 7, "madeExtraPoints": 1, "madeFieldGoals": 4, "madeFieldGoalsFrom40To49": 2, "madeFieldGoalsFromUnder40": 2, "missedFieldGoals": 1, "missedFieldGoalsFromUnder40": 1, + "teamPointsScored": 13, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14, @@ -5243,18 +6290,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.275778552, "receivingTargets": 5.155479499, "receivingTouchdowns": 0.342960082, - "receivingTouchdowns40Plus": 0.012668856, - "receivingTouchdowns50Plus": 0.008279097, + "receivingTouchdowns40Plus": 0.062858526, + "receivingTouchdowns50Plus": 0.00194, "receivingYards": 42.7701072, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.05647086, "rushing2PtConversions": 0.00043, "rushingAttempts": 0.225383324, + "rushingGame100To199Yards": 0.0000748, + "rushingGame200PlusYards": 0.00000255, "rushingTouchdowns": 0.008753606, "rushingTouchdowns40Plus": 0.000414, "rushingTouchdowns50Plus": 0.00029, "rushingYards": 1.393087178, "rushingYardsPerAttempt": 6.18096828, - "turnovers": 0.020592255, + "totalTurnovers": 0.020592255, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5262,10 +6315,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 37, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.25, "rushingAttempts": 1, "rushingYards": 11, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 11, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6.800000000000001, @@ -5323,20 +6383,37 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.746513371, "receivingTargets": 9.508163574, "receivingTouchdowns": 0.404092696, - "receivingTouchdowns40Plus": 0.014568045, - "receivingTouchdowns50Plus": 0.009520217, + "receivingTouchdowns40Plus": 0.313152758, + "receivingTouchdowns50Plus": 0.00969, "receivingYards": 81.70428017, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 12.11059338, - "turnovers": 0.030445543, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.030445543, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 10, "receivingTargets": 17, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 141, "receivingYardsAfterCatch": 62, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 14.1, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 25.1, @@ -5390,27 +6467,45 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.39180582, "receivingTargets": 7.408773304, "receivingTouchdowns": 0.439599708, - "receivingTouchdowns40Plus": 0.012505301, - "receivingTouchdowns50Plus": 0.008172214, + "receivingTouchdowns40Plus": 0.163688535, + "receivingTouchdowns50Plus": 0.00506, "receivingYards": 61.26523325, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 11.36265572, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000585187, "rushingAttempts": 0.102349529, + "rushingGame100To199Yards": 0.00000467, + "rushingGame200PlusYards": 1.6e-7, "rushingTouchdowns": 0.01439515, "rushingTouchdowns40Plus": 0.000187877, "rushingTouchdowns50Plus": 0.000131514, "rushingYards": 0.421435287, "rushingYardsPerAttempt": 4.117608474, - "turnovers": 0.031683401, + "totalTurnovers": 0.031683401, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 8, "receivingTargets": 9, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 121, "receivingYardsAfterCatch": 34, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 15.125, + "receptionsPer5Receptions": 1, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 22.1, @@ -5461,11 +6556,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.878574563, "receivingTargets": 7.59205695, "receivingTouchdowns": 0.518577697, - "receivingTouchdowns40Plus": 0.015557039, - "receivingTouchdowns50Plus": 0.010166525, + "receivingTouchdowns40Plus": 0.198912611, + "receivingTouchdowns50Plus": 0.00615, "receivingYards": 66.34612201, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 13.59948918, - "turnovers": 0.033479657, + "totalTurnovers": 0.033479657, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5473,7 +6573,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 27, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 13.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3.7, @@ -5564,11 +6669,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.096268406, "receivingTargets": 7.909344498, "receivingTouchdowns": 0.404461209, - "receivingTouchdowns40Plus": 0.016444476, - "receivingTouchdowns50Plus": 0.010746465, + "receivingTouchdowns40Plus": 0.226393133, + "receivingTouchdowns50Plus": 0.007, "receivingYards": 70.11860083, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 13.75881238, - "turnovers": 0.048777265, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.048777265, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5577,7 +6688,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 43, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.75, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 12.3, @@ -5632,18 +6749,28 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.189020322, "receivingTargets": 2.963509321, "receivingTouchdowns": 0.12803764, - "receivingTouchdowns40Plus": 0.002721054, - "receivingTouchdowns50Plus": 0.001778209, + "receivingTouchdowns40Plus": 0.006953178, + "receivingTouchdowns50Plus": 0.000215, "receivingYards": 17.01898341, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.774703247, "rushing2PtConversions": 0.0152, "rushingAttempts": 10.23495289, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.0982, + "rushingGame200PlusYards": 0.00335, "rushingTouchdowns": 0.374, "rushingTouchdowns40Plus": 0.0205, "rushingTouchdowns50Plus": 0.0144, "rushingYards": 47.39875, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.63106675, - "turnovers": 0.049216683, + "totalTurnovers": 0.049216683, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5652,10 +6779,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 2, "receivingYards": 32, "receivingYardsAfterCatch": 42, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.667, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 42, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 6, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.9, @@ -5707,11 +6845,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.585716222, "receivingTargets": 6.465531405, "receivingTouchdowns": 0.567980591, - "receivingTouchdowns40Plus": 0.010411543, - "receivingTouchdowns50Plus": 0.006803943, + "receivingTouchdowns40Plus": 0.102246446, + "receivingTouchdowns50Plus": 0.00316, "receivingYards": 51.11869648, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 11.14737459, - "turnovers": 0.028080809, + "totalTurnovers": 0.028080809, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5720,7 +6863,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 2, "receivingYards": 57, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.4, + "receptionsPer5Receptions": 1, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 20.2, @@ -5776,18 +6927,28 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.864002661, "receivingTargets": 3.760685657, "receivingTouchdowns": 0.135010642, - "receivingTouchdowns40Plus": 0.004672159, - "receivingTouchdowns50Plus": 0.003053256, + "receivingTouchdowns40Plus": 0.01459219, + "receivingTouchdowns50Plus": 0.000451, "receivingYards": 24.68299264, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.618355345, "rushing2PtConversions": 0.0121, "rushingAttempts": 8.873574234, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0684, + "rushingGame200PlusYards": 0.00234, "rushingTouchdowns": 0.320342946, "rushingTouchdowns40Plus": 0.0176, "rushingTouchdowns50Plus": 0.0123, "rushingYards": 39.58551217, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.461056067, - "turnovers": 0.030477185, + "totalTurnovers": 0.030477185, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5796,11 +6957,22 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 24, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 6, "rushingAttempts": 11, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 46, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.182, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 21, @@ -5854,18 +7026,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.741257026, "receivingTargets": 2.29194313, "receivingTouchdowns": 0.057330594, - "receivingTouchdowns40Plus": 0.002700709, - "receivingTouchdowns50Plus": 0.001764913, + "receivingTouchdowns40Plus": 0.004918201, + "receivingTouchdowns50Plus": 0.000152, "receivingYards": 13.13398123, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.54281593, "rushing2PtConversions": 0.013545837, "rushingAttempts": 15.06183473, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.231, + "rushingGame200PlusYards": 0.00789, "rushingTouchdowns": 0.427733336, "rushingTouchdowns40Plus": 0.031469977, "rushingTouchdowns50Plus": 0.022028984, "rushingYards": 72.66077818, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.824165149, - "turnovers": 0.040391403, + "totalTurnovers": 0.040391403, "usesPoints": false, }, "rawStats": PlayerStats { @@ -5874,10 +7057,19 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 7, "receivingYardsAfterCatch": 15, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3.5, "rushingAttempts": 12, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 60, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.7, @@ -5969,34 +7161,61 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 32.64139429, "passingCompletionPercentage": 0.630158013, "passingCompletions": 20.56923617, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.07215812, "passingInterceptions": 0.616546813, "passingTouchdowns": 1.934112063, "passingTouchdowns40Plus": 0.212651097, "passingTouchdowns50Plus": 0.138967492, "passingYards": 251.4099401, + "passingYards300To399": 0.227862391, + "passingYards400Plus": 0.030778234, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 50, "rushing2PtConversions": 0.00786, "rushingAttempts": 3.995705199, + "rushingGame100To199Yards": 0.0163, + "rushingGame200PlusYards": 0.000557, "rushingTouchdowns": 0.149579739, "rushingTouchdowns40Plus": 0.0076, "rushingTouchdowns50Plus": 0.00532, "rushingYards": 19.36495939, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.846443475, - "turnovers": 0.872190252, + "totalTurnovers": 0.872190252, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 42, "passingCompletionPercentage": 69.05, "passingCompletions": 29, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 13, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 1, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 340, + "passingYards300To399": 1, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 34, + "passingYardsPer20Yards": 17, + "passingYardsPer25Yards": 13, + "passingYardsPer50Yards": 6, + "passingYardsPer5Yards": 68, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 17.8, @@ -6088,20 +7307,33 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 38.33516833, "passingCompletionPercentage": 0.667438078, "passingCompletions": 25.58635106, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 12.74881727, "passingInterceptions": 0.809526144, "passingTouchdowns": 1.509238256, "passingTouchdowns40Plus": 0.253846184, "passingTouchdowns50Plus": 0.165888482, "passingYards": 276.5145208, + "passingYards300To399": 0.330126061, + "passingYards400Plus": 0.044591375, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 55, "rushing2PtConversions": 0.00221, "rushingAttempts": 1.985284817, + "rushingGame100To199Yards": 0.0017, + "rushingGame200PlusYards": 0.000058, "rushingTouchdowns": 0.060080183, "rushingTouchdowns40Plus": 0.00371, "rushingTouchdowns50Plus": 0.0026, "rushingYards": 6.308025614, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.177390749, - "turnovers": 1.127522962, + "totalTurnovers": 1.127522962, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6109,11 +7341,23 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 37, "passingCompletionPercentage": 59.46, "passingCompletions": 22, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 15, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 3, "passingTouchdowns": 2, "passingYards": 295, - "turnovers": 3, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 29, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 59, + "teamLoss": 1, + "teamPointsScored": 12, + "totalTurnovers": 3, "usesPoints": false, }, "totalPoints": 13.8, @@ -6163,11 +7407,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.29817649, "receivingTargets": 5.060324749, "receivingTouchdowns": 0.3516005, - "receivingTouchdowns40Plus": 0.009877265, - "receivingTouchdowns50Plus": 0.006454793, + "receivingTouchdowns40Plus": 0.050453701, + "receivingTouchdowns50Plus": 0.00156, "receivingYards": 39.50457418, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 11.97770171, - "turnovers": 0.020386146, + "totalTurnovers": 0.020386146, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6175,7 +7423,9 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 5, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1, @@ -6265,10 +7515,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.064913577, "defensiveForcedFumbles": 0.772818122, "defensiveFumbles": 0.50233178, + "defensiveHalfSacks": 4.538184276, "defensiveInterceptions": 0.698565603, "defensivePointsAllowed": 20.14582679, "defensiveSacks": 2.269092138, "defensiveSafeties": 0.006982145, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 58.03100149, "defensiveYardsAllowed": 342.8357948, "fumbleReturnTouchdown": 0.076313771, @@ -6277,6 +7530,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 45.26447059, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 20.53882353, + "totalReturnTouchdowns": 0.139557016, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6297,15 +7551,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveAssistedTackles": 22, "defensiveForcedFumbles": 2, "defensiveFumbles": 1, + "defensiveHalfSacks": 6, "defensiveInterceptions": 1, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 9, "defensiveSacks": 3, "defensiveSoloTackles": 53, + "defensiveStuffs": 5, + "defensiveTacklesPer3Tackles": 25, + "defensiveTacklesPer5Tackles": 15, "defensiveTotalTackles": 75, "defensiveYardsAllowed": 380, "puntReturnYards": 17, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9, @@ -6357,11 +7616,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.083425633, "receivingTargets": 5.60234591, "receivingTouchdowns": 0.285508649, - "receivingTouchdowns40Plus": 0.01244985, - "receivingTouchdowns50Plus": 0.008135977, + "receivingTouchdowns40Plus": 0.078072694, + "receivingTouchdowns50Plus": 0.00241, "receivingYards": 46.27627352, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 15.00807187, - "turnovers": 0.019001617, + "totalTurnovers": 0.019001617, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6370,7 +7633,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 52, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 13, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 13.2, @@ -6405,6 +7675,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.676798867, "madeFieldGoalsFrom40To49": 1.69868934, + "madeFieldGoalsFrom50To59": 0.927586445, "madeFieldGoalsFromUnder40": 2.612746248, "missedExtraPoints": -0.163048307, "missedFieldGoals": -0.269457977, @@ -6416,15 +7687,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.750563017, "attemptedFieldGoalsFrom40To49": 0.549676787, "attemptedFieldGoalsFrom50Plus": 0.292344024, + "attemptedFieldGoalsFrom50To59": 0.292344024, "madeExtraPoints": 2.676798867, "madeFieldGoals": 1.48110504, "madeFieldGoalsFrom40To49": 0.424672335, "madeFieldGoalsFrom50Plus": 0.185517289, + "madeFieldGoalsFrom50To59": 0.185517289, "madeFieldGoalsFromUnder40": 0.870915416, "missedExtraPoints": 0.163048307, "missedFieldGoals": 0.269457977, "missedFieldGoalsFrom40To49": 0.125004453, "missedFieldGoalsFrom50Plus": 0.106826735, + "missedFieldGoalsFrom50To59": 0.106826735, "missedFieldGoalsFromUnder40": 0.03762679, "usesPoints": false, }, @@ -6432,9 +7706,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptFieldGoalsFromUnder40": 1, "attemptedExtraPoints": 1, "attemptedFieldGoals": 1, + "fieldGoalAttemptedYards": 25, + "fieldGoalAttemptedYardsPer10Yards": 2, + "fieldGoalAttemptedYardsPer20Yards": 1, + "fieldGoalAttemptedYardsPer25Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 5, + "fieldGoalMadeYards": 25, + "fieldGoalMadeYardsPer10Yards": 2, + "fieldGoalMadeYardsPer20Yards": 1, + "fieldGoalMadeYardsPer25Yards": 1, + "fieldGoalMadeYardsPer5Yards": 5, "madeExtraPoints": 1, "madeFieldGoals": 1, "madeFieldGoalsFromUnder40": 1, + "teamLoss": 1, + "teamPointsScored": 4, "usesPoints": false, }, "totalPoints": 4, @@ -6493,18 +7779,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 7.477198042, "receivingTargets": 10.23778493, "receivingTouchdowns": 0.576922409, - "receivingTouchdowns40Plus": 0.01352631, - "receivingTouchdowns50Plus": 0.008839443, + "receivingTouchdowns40Plus": 0.346462408, + "receivingTouchdowns50Plus": 0.0107, "receivingYards": 86.33680036, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 11.5466783, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000417, "rushingAttempts": 0.23513161, + "rushingGame100To199Yards": 0.0000724, + "rushingGame200PlusYards": 0.00000247, "rushingTouchdowns": 0.008943468, "rushingTouchdowns40Plus": 0.000432, "rushingTouchdowns50Plus": 0.000303, "rushingYards": 1.37201542, "rushingYardsPerAttempt": 5.835095577, - "turnovers": 0.047729969, + "totalTurnovers": 0.047729969, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6513,9 +7807,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 13, "receivingTargets": 15, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 128, "receivingYardsAfterCatch": 57, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 9.846, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 25.3, @@ -6569,18 +7874,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.596443594, "receivingTargets": 3.163357063, "receivingTouchdowns": 0.146747117, - "receivingTouchdowns40Plus": 0.002329299, - "receivingTouchdowns50Plus": 0.001522197, + "receivingTouchdowns40Plus": 0.007133108, + "receivingTouchdowns50Plus": 0.000221, "receivingYards": 17.29154512, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.659703745, "rushing2PtConversions": 0.0331, "rushingAttempts": 18.99702273, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.281, + "rushingGame200PlusYards": 0.00958, "rushingTouchdowns": 0.688346289, "rushingTouchdowns40Plus": 0.041, "rushingTouchdowns50Plus": 0.0287, "rushingYards": 80.07478627, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.215122938, - "turnovers": 0.065317283, + "totalTurnovers": 0.065317283, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6588,10 +7904,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 9, "receivingYards": 63, "receivingYardsAfterCatch": 62, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 9, + "receptionsPer5Receptions": 1, "rushingAttempts": 27, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, "rushingYards": 82, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 3.037, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 18, @@ -6643,18 +7973,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.145072412, "receivingTargets": 5.156329252, "receivingTouchdowns": 0.14214462, - "receivingTouchdowns40Plus": 0.002212208, - "receivingTouchdowns50Plus": 0.001445678, + "receivingTouchdowns40Plus": 0.019248557, + "receivingTouchdowns50Plus": 0.000595, "receivingYards": 27.62570129, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.664708972, "rushing2PtConversions": 0.0221, "rushingAttempts": 13.56911531, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.15, + "rushingGame200PlusYards": 0.00513, "rushingTouchdowns": 0.596119643, "rushingTouchdowns40Plus": 0.028, "rushingTouchdowns50Plus": 0.0196, "rushingYards": 58.60359458, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.31889576, - "turnovers": 0.049223755, + "totalTurnovers": 0.049223755, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6662,10 +8005,22 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 10, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5, "rushingAttempts": 21, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 1, "rushingYards": 127, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 25, "rushingYardsPerAttempt": 6.048, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14.700000000000001, @@ -6719,18 +8074,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.629945481, "receivingTargets": 3.373494801, "receivingTouchdowns": 0.098143214, - "receivingTouchdowns40Plus": 0.002257588, - "receivingTouchdowns50Plus": 0.001475334, + "receivingTouchdowns40Plus": 0.007792024, + "receivingTouchdowns50Plus": 0.000241, "receivingYards": 18.22369857, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.929306595, "rushing2PtConversions": 0.0187, "rushingAttempts": 17.0723796, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.182, + "rushingGame200PlusYards": 0.0062, "rushingTouchdowns": 0.507, "rushingTouchdowns40Plus": 0.0363, "rushingTouchdowns50Plus": 0.0254, "rushingYards": 64.42868555, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 3.773855027, - "turnovers": 0.05874647, + "totalTurnovers": 0.05874647, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6738,10 +8104,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 24, "receivingYardsAfterCatch": 30, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8, "rushingAttempts": 17, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 1.529, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6.5, @@ -6792,11 +8168,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.871287035, "receivingTargets": 6.562122859, "receivingTouchdowns": 0.522119453, - "receivingTouchdowns40Plus": 0.016272868, - "receivingTouchdowns50Plus": 0.010634319, + "receivingTouchdowns40Plus": 0.142577015, + "receivingTouchdowns50Plus": 0.00441, "receivingYards": 58.01672247, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 14.98641716, - "turnovers": 0.021109245, + "totalTurnovers": 0.021109245, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6806,7 +8187,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 72, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 18, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 9.2, @@ -6861,18 +8248,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.378197479, "receivingTargets": 7.18708694, "receivingTouchdowns": 0.383579583, - "receivingTouchdowns40Plus": 0.018678148, - "receivingTouchdowns50Plus": 0.012206169, + "receivingTouchdowns40Plus": 0.195628694, + "receivingTouchdowns50Plus": 0.00605, "receivingYards": 65.88606171, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 15.04867289, "rushing2PtConversions": 0.000616, "rushingAttempts": 0.256392988, + "rushingGame100To199Yards": 0.000091, + "rushingGame200PlusYards": 0.0000031, "rushingTouchdowns": 0.011716355, "rushingTouchdowns40Plus": 0.000471, "rushingTouchdowns50Plus": 0.00033, "rushingYards": 1.526768558, "rushingYardsPerAttempt": 5.954798419, - "turnovers": 0.043164342, + "totalTurnovers": 0.043164342, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6880,10 +8274,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingTouchdowns": 1, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 102, "receivingYardsAfterCatch": 71, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 25.5, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 18.200000000000003, @@ -6938,18 +8339,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.786017851, "receivingTargets": 2.458826606, "receivingTouchdowns": 0.086096284, - "receivingTouchdowns40Plus": 0.004003907, - "receivingTouchdowns50Plus": 0.002616553, + "receivingTouchdowns40Plus": 0.00608616, + "receivingTouchdowns50Plus": 0.000188, "receivingYards": 15.57067407, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.718095434, "rushing2PtConversions": 0.0155, "rushingAttempts": 14.01207061, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.214, + "rushingGame200PlusYards": 0.00731, "rushingTouchdowns": 0.345392603, "rushingTouchdowns40Plus": 0.029, "rushingTouchdowns50Plus": 0.0203, "rushingYards": 69.97621073, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.993995011, - "turnovers": 0.065016304, + "totalTurnovers": 0.065016304, "usesPoints": false, }, "rawStats": PlayerStats { @@ -6957,11 +8369,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 9, "receivingYardsAfterCatch": 12, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4.5, "rushingAttempts": 13, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 96, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 7.385, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 17.5, @@ -7013,33 +8435,60 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 39.02689215, "passingCompletionPercentage": 0.659818151, "passingCompletions": 25.75065182, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 13.27624034, "passingInterceptions": 0.759369029, "passingTouchdowns": 1.796606146, "passingTouchdowns40Plus": 0.256104565, "passingTouchdowns50Plus": 0.167364333, "passingYards": 277.8287191, + "passingYards300To399": 0.336376161, + "passingYards400Plus": 0.0454356, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 55, "rushing2PtConversions": 0.0116, "rushingAttempts": 3.18664885, + "rushingGame100To199Yards": 0.00553, + "rushingGame200PlusYards": 0.000189, "rushingTouchdowns": 0.179780708, "rushingTouchdowns40Plus": 0.00602, "rushingTouchdowns50Plus": 0.00421, "rushingYards": 11.3136102, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.550315937, - "turnovers": 1.079712003, + "totalTurnovers": 1.079712003, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 29, "passingCompletionPercentage": 48.28, "passingCompletions": 14, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 15, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 1, "passingYards": 134, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 13, + "passingYardsPer20Yards": 6, + "passingYardsPer25Yards": 5, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 26, "rushingAttempts": 2, "rushingYards": 11, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.5, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 4.460000000000001, @@ -7089,11 +8538,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.297631266, "receivingTargets": 6.261445429, "receivingTouchdowns": 0.284378896, - "receivingTouchdowns40Plus": 0.00607569, - "receivingTouchdowns50Plus": 0.003970463, + "receivingTouchdowns40Plus": 0.066457152, + "receivingTouchdowns50Plus": 0.00206, "receivingYards": 43.64154405, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.15479024, - "turnovers": 0.019014929, + "totalTurnovers": 0.019014929, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7101,7 +8554,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 38, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.800000000000001, @@ -7155,18 +8613,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.420101661, "receivingTargets": 7.399798039, "receivingTouchdowns": 0.315349217, - "receivingTouchdowns40Plus": 0.0128783, - "receivingTouchdowns50Plus": 0.008415969, + "receivingTouchdowns40Plus": 0.166204268, + "receivingTouchdowns50Plus": 0.00514, "receivingYards": 61.640531, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 13.94550075, "rushing2PtConversions": 0.00123, "rushingAttempts": 0.343654352, + "rushingGame100To199Yards": 0.000196, + "rushingGame200PlusYards": 0.00000668, "rushingTouchdowns": 0.017342217, "rushingTouchdowns40Plus": 0.000632, "rushingTouchdowns50Plus": 0.000443, "rushingYards": 2.19757161, "rushingYardsPerAttempt": 6.394714914, - "turnovers": 0.033823516, + "totalTurnovers": 0.033823516, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7174,7 +8639,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 49, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.8, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7.4, @@ -7265,12 +8736,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.059626699, "defensiveForcedFumbles": 0.700974637, "defensiveFumbles": 0.455633514, + "defensiveHalfSacks": 4.629444186, "defensiveInterceptions": 0.893436472, "defensiveOver45PointsAllowed": 0.030927835, "defensiveOver550YardsAllowed": 0.012345679, "defensivePointsAllowed": 24.17373065, "defensiveSacks": 2.314722093, "defensiveSafeties": 0.007585658, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 60.38020388, "defensiveYardsAllowed": 350.9703398, "fumbleReturnTouchdown": 0.077099939, @@ -7279,6 +8753,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 37.16086435, "puntReturnTouchdown": 0.015235083, "puntReturnYards": 13.41922482, + "totalReturnTouchdowns": 0.13832224, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7297,15 +8772,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive500To549YardsAllowed": 0, "defensive7To13PointsAllowed": 1, "defensiveAssistedTackles": 23, + "defensiveHalfSacks": 14, "defensiveInterceptions": 3, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 10, "defensiveSacks": 7, "defensiveSoloTackles": 50, + "defensiveStuffs": 5, + "defensiveTacklesPer3Tackles": 24, + "defensiveTacklesPer5Tackles": 14, "defensiveTotalTackles": 73, "defensiveYardsAllowed": 243, "puntReturnYards": 20, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 18, @@ -7360,18 +8840,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.99937809, "receivingTargets": 6.903140843, "receivingTouchdowns": 0.228242241, - "receivingTouchdowns40Plus": 0.012882924, - "receivingTouchdowns50Plus": 0.008418991, + "receivingTouchdowns40Plus": 0.139388455, + "receivingTouchdowns50Plus": 0.00431, "receivingYards": 57.50851549, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 14.37936454, "rushing2PtConversions": 0.0018, "rushingAttempts": 0.638153286, + "rushingGame100To199Yards": 0.000622, + "rushingGame200PlusYards": 0.0000212, "rushingTouchdowns": 0.032533141, "rushingTouchdowns40Plus": 0.00118, "rushingTouchdowns50Plus": 0.000824, "rushingYards": 3.851504596, "rushingYardsPerAttempt": 6.035390998, - "turnovers": 0.031169859, + "totalTurnovers": 0.031169859, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7379,10 +8866,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 18, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 4.5, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 36, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.3999999999999995, @@ -7436,18 +8931,30 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.036207026, "receivingTargets": 4.228456022, "receivingTouchdowns": 0.103542045, - "receivingTouchdowns40Plus": 0.003532347, - "receivingTouchdowns50Plus": 0.002308389, + "receivingTouchdowns40Plus": 0.016523855, + "receivingTouchdowns50Plus": 0.000511, "receivingYards": 25.98845408, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 8.559513189, "rushing2PtConversions": 0.0236, "rushingAttempts": 10.99693927, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.0928, + "rushingGame200PlusYards": 0.00317, "rushingTouchdowns": 0.331834042, "rushingTouchdowns40Plus": 0.0222, "rushingTouchdowns50Plus": 0.0156, "rushingYards": 46.08438695, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.190655767, - "turnovers": 0.046403565, + "totalTurnovers": 0.046403565, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7455,10 +8962,23 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 9, "receivingYards": 40, "receivingYardsAfterCatch": 45, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 5.714, + "receptionsPer5Receptions": 1, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 60, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 6, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 13.5, @@ -7511,24 +9031,35 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.827782346, "receivingTargets": 7.183813172, "receivingTouchdowns": 0.248026277, - "receivingTouchdowns40Plus": 0.010471614, - "receivingTouchdowns50Plus": 0.0068432, + "receivingTouchdowns40Plus": 0.135469905, + "receivingTouchdowns50Plus": 0.00419, "receivingYards": 56.87670767, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.78112508, "rushing2PtConversions": 0.000594, "rushingAttempts": 0.22921965, + "rushingGame100To199Yards": 0.0000659, + "rushingGame200PlusYards": 0.00000225, "rushingTouchdowns": 0.0118, "rushingTouchdowns40Plus": 0.000421, "rushingTouchdowns50Plus": 0.000295, "rushingYards": 1.312937017, "rushingYardsPerAttempt": 5.72785543, - "turnovers": 0.03607977, + "totalTurnovers": 0.03607977, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 2, "rushingYards": 23, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 11.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 2.3000000000000003, @@ -7579,20 +9110,34 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.6158078, "passingCompletionPercentage": 0.66520258, "passingCompletions": 23.69172726, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11.92408055, "passingInterceptions": 0.83861781, "passingTouchdowns": 1.746732264, "passingTouchdowns40Plus": 0.204282074, "passingTouchdowns50Plus": 0.133498335, "passingYards": 246.0156538, + "passingYards300To399": 0.209867028, + "passingYards400Plus": 0.028347533, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 49, "rushing2PtConversions": 0.011243895, "rushingAttempts": 3.368361964, + "rushingGame100To199Yards": 0.00563, + "rushingGame200PlusYards": 0.000192, "rushingTouchdowns": 0.219424726, "rushingTouchdowns40Plus": 0.006369706, "rushingTouchdowns50Plus": 0.004458794, "rushingYards": 11.41305947, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.388311468, - "turnovers": 1.124658789, + "totalTurnovers": 1.124658789, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7600,11 +9145,23 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 33, "passingCompletionPercentage": 69.7, "passingCompletions": 23, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 10, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingTouchdowns": 1, "passingTouchdowns40Plus": 1, "passingYards": 270, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 54, "rushingAttempts": 2, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14.8, @@ -7638,6 +9195,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.428319934, "madeFieldGoalsFrom40To49": 1.996787752, + "madeFieldGoalsFrom50To59": 1.10147029, "madeFieldGoalsFromUnder40": 3.0233593680000004, "missedExtraPoints": -0.04955755, "missedFieldGoals": -0.234121618, @@ -7649,21 +9207,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.961399069, "attemptedFieldGoalsFrom40To49": 0.615879308, "attemptedFieldGoalsFrom50Plus": 0.327553645, + "attemptedFieldGoalsFrom50To59": 0.327553645, "madeExtraPoints": 2.428319934, "madeFieldGoals": 1.727277452, "madeFieldGoalsFrom40To49": 0.499196938, "madeFieldGoalsFrom50Plus": 0.220294058, + "madeFieldGoalsFrom50To59": 0.220294058, "madeFieldGoalsFromUnder40": 1.007786456, "missedExtraPoints": 0.04955755, "missedFieldGoals": 0.234121618, "missedFieldGoalsFrom40To49": 0.11668237, "missedFieldGoalsFrom50Plus": 0.107259587, + "missedFieldGoalsFrom50To59": 0.107259587, "missedFieldGoalsFromUnder40": 0.010179661, "usesPoints": false, }, "rawStats": PlayerStats { "attemptedExtraPoints": 1, "madeExtraPoints": 1, + "teamLoss": 1, + "teamPointsScored": 1, "usesPoints": false, }, "totalPoints": 1, @@ -7771,31 +9334,51 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingTouchdowns40Plus": 0.004163159, "passingTouchdowns50Plus": 0.002720624, "passingYards": 1.101071374, + "passingYards300To399": 0.001768092, + "passingYards400Plus": 0.000238823, "receiving2PtConversions": 0.023765383, "receivingReceptions": 6.427585949, "receivingTargets": 9.831356993, "receivingTouchdowns": 0.410050217, - "receivingTouchdowns40Plus": 0.016849322, - "receivingTouchdowns50Plus": 0.011011032, + "receivingTouchdowns40Plus": 0.35593294, + "receivingTouchdowns50Plus": 0.011, "receivingYards": 87.71205252, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 13.64618898, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000545, "rushingAttempts": 0.238907095, + "rushingGame100To199Yards": 0.0000653, + "rushingGame200PlusYards": 0.00000223, "rushingTouchdowns": 0.010104266, "rushingTouchdowns40Plus": 0.000439, "rushingTouchdowns50Plus": 0.000307, "rushingYards": 1.307244418, "rushingYardsPerAttempt": 5.471768922, - "turnovers": 0.049403235, + "totalTurnovers": 0.049403235, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 9, "receivingTargets": 11, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 184, "receivingYardsAfterCatch": 81, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 20.444, + "receptionsPer5Receptions": 1, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 34.900000000000006, @@ -7850,18 +9433,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.445127184, "receivingTargets": 5.60234591, "receivingTouchdowns": 0.158465996, - "receivingTouchdowns40Plus": 0.003163589, - "receivingTouchdowns50Plus": 0.002067405, + "receivingTouchdowns40Plus": 0.032046856, + "receivingTouchdowns50Plus": 0.000991, "receivingYards": 33.50180536, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.536748437, "rushing2PtConversions": 0.0251, "rushingAttempts": 11.99111124, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.111, + "rushingGame200PlusYards": 0.00378, "rushingTouchdowns": 0.390554915, "rushingTouchdowns40Plus": 0.0244, "rushingTouchdowns50Plus": 0.0171, "rushingYards": 50.35425734, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.199298657, - "turnovers": 0.080157461, + "totalTurnovers": 0.080157461, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7869,11 +9465,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 31, "receivingYardsAfterCatch": 41, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.333, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 1, "rushingYards": 144, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 9.6, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 25, @@ -7929,18 +9540,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.774031046, "receivingTargets": 5.131295123, "receivingTouchdowns": 0.141478761, - "receivingTouchdowns40Plus": 0.003259092, - "receivingTouchdowns50Plus": 0.002129817, + "receivingTouchdowns40Plus": 0.025810786, + "receivingTouchdowns50Plus": 0.000798, "receivingYards": 30.91678224, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.191978779, "rushing2PtConversions": 0.0204, "rushingAttempts": 14.89927725, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.15, + "rushingGame200PlusYards": 0.0051, "rushingTouchdowns": 0.403732613, "rushingTouchdowns40Plus": 0.0311, "rushingTouchdowns50Plus": 0.0218, "rushingYards": 58.46704721, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 3.924153247, - "turnovers": 0.064239192, + "totalTurnovers": 0.064239192, "usesPoints": false, }, "rawStats": PlayerStats { @@ -7950,11 +9574,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 7, "receivingYards": 30, "receivingYardsAfterCatch": 42, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 5, + "receptionsPer5Receptions": 1, "rushingAttempts": 18, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 1, "rushingYards": 164, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 32, "rushingYardsPerAttempt": 9.111, + "teamPointsScored": 8, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 30.400000000000002, @@ -8006,11 +9646,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.916954296, "receivingTargets": 7.932814234, "receivingTouchdowns": 0.504624301, - "receivingTouchdowns40Plus": 0.014665618, - "receivingTouchdowns50Plus": 0.009583981, + "receivingTouchdowns40Plus": 0.21291101, + "receivingTouchdowns50Plus": 0.00658, "receivingYards": 68.28329154, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 13.88731467, - "turnovers": 0.023925603, + "totalTurnovers": 0.023925603, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8021,7 +9666,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 71, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 14.2, + "receptionsPer5Receptions": 1, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 15.600000000000001, @@ -8071,11 +9724,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.487034859, "receivingTargets": 6.948273381, "receivingTouchdowns": 0.291123934, - "receivingTouchdowns40Plus": 0.01222827, - "receivingTouchdowns50Plus": 0.007991174, + "receivingTouchdowns40Plus": 0.137089866, + "receivingTouchdowns50Plus": 0.00424, "receivingYards": 57.13889911, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.73422224, - "turnovers": 0.023609129, + "totalTurnovers": 0.023609129, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8083,7 +9741,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 79, "receivingYardsAfterCatch": 27, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 19.75, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 9.9, @@ -8137,18 +9801,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.427259988, "receivingTargets": 8.027616417, "receivingTouchdowns": 0.254012258, - "receivingTouchdowns40Plus": 0.011808835, - "receivingTouchdowns50Plus": 0.007717074, + "receivingTouchdowns40Plus": 0.192520772, + "receivingTouchdowns50Plus": 0.00595, "receivingYards": 65.44845516, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.05920765, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000428, "rushingAttempts": 0.219726066, + "rushingGame100To199Yards": 0.000078, + "rushingGame200PlusYards": 0.00000266, "rushingTouchdowns": 0.00813, "rushingTouchdowns40Plus": 0.000404, "rushingTouchdowns50Plus": 0.000283, "rushingYards": 1.420633267, "rushingYardsPerAttempt": 6.465474446, - "turnovers": 0.022432479, + "totalTurnovers": 0.022432479, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8156,7 +9828,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 12, "receivingYards": 82, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.714, + "receptionsPer5Receptions": 1, "usesPoints": false, }, "totalPoints": 11.700000000000001, @@ -8210,18 +9888,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.998727296, "receivingTargets": 5.552969964, "receivingTouchdowns": 0.284222738, - "receivingTouchdowns40Plus": 0.01146671, - "receivingTouchdowns50Plus": 0.007493495, + "receivingTouchdowns40Plus": 0.072075161, + "receivingTouchdowns50Plus": 0.00223, "receivingYards": 44.947098, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11.24035091, "rushing2PtConversions": 0.000567068, "rushingAttempts": 0.226151922, + "rushingGame100To199Yards": 0.0000716, + "rushingGame200PlusYards": 0.00000244, "rushingTouchdowns": 0.01528975, "rushingTouchdowns40Plus": 0.000415609, "rushingTouchdowns50Plus": 0.000290926, "rushingYards": 1.364251585, "rushingYardsPerAttempt": 6.032456297, - "turnovers": 0.03775781, + "totalTurnovers": 0.03775781, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8229,7 +9913,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 35, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 11.667, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 5, @@ -8323,18 +10012,28 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.288392521, "receivingTargets": 1.647326275, "receivingTouchdowns": 0.037207883, - "receivingTouchdowns40Plus": 0.002300785, - "receivingTouchdowns50Plus": 0.001503563, + "receivingTouchdowns40Plus": 0.003475872, + "receivingTouchdowns50Plus": 0.000108, "receivingYards": 8.963839342, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6.957382314, "rushing2PtConversions": 0.0207, "rushingAttempts": 11.72522503, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.113, + "rushingGame200PlusYards": 0.00384, "rushingTouchdowns": 0.590761751, "rushingTouchdowns40Plus": 0.0238, "rushingTouchdowns50Plus": 0.0167, "rushingYards": 50.7329723, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.326822912, - "turnovers": 0.050547991, + "totalTurnovers": 0.050547991, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8342,10 +10041,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 10, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 48, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 5.333, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6.800000000000001, @@ -8398,34 +10105,57 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 40.76372649, "passingCompletionPercentage": 0.66597199, "passingCompletions": 27.14750005, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 13.61622645, "passingInterceptions": 0.808145618, "passingTouchdowns": 2.081011838, "passingTouchdowns40Plus": 0.276854702, "passingTouchdowns50Plus": 0.180924548, "passingYards": 289.6390203, + "passingYards300To399": 0.396853783, + "passingYards400Plus": 0.053604541, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 57, "rushing2PtConversions": 0.00493, "rushingAttempts": 1.695959779, + "rushingGame100To199Yards": 0.000293, + "rushingGame200PlusYards": 0.00000998, "rushingTouchdowns": 0.132868184, "rushingTouchdowns40Plus": 0.00316, "rushingTouchdowns50Plus": 0.00221, "rushingYards": 2.667924292, "rushingYardsPerAttempt": 1.573105875, - "turnovers": 1.022967465, + "totalTurnovers": 1.022967465, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 27, "passingCompletionPercentage": 66.67, "passingCompletions": 18, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 9, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 212, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 21, + "passingYardsPer20Yards": 10, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 42, "rushingAttempts": 2, "rushingYards": -1, "rushingYardsPerAttempt": -0.5, - "turnovers": 1, + "teamPointsScored": 6, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 10.38, @@ -8479,18 +10209,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.921757228, "receivingTargets": 6.87582939, "receivingTouchdowns": 0.233448075, - "receivingTouchdowns40Plus": 0.01372998, - "receivingTouchdowns50Plus": 0.008972542, + "receivingTouchdowns40Plus": 0.143757961, + "receivingTouchdowns50Plus": 0.00445, "receivingYards": 58.20365877, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.82578824, "rushing2PtConversions": 0.000107, "rushingAttempts": 0.115860267, + "rushingGame100To199Yards": 0.0000134, + "rushingGame200PlusYards": 4.57e-7, "rushingTouchdowns": 0.003369787, "rushingTouchdowns40Plus": 0.000213, "rushingTouchdowns50Plus": 0.000149, "rushingYards": 0.642981579, "rushingYardsPerAttempt": 5.549629698, - "turnovers": 0.026367356, + "totalTurnovers": 0.026367356, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8498,7 +10235,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 28, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 9.333, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4.300000000000001, @@ -8548,11 +10290,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.312702936, "receivingTargets": 5.22132346, "receivingTouchdowns": 0.28207611, - "receivingTouchdowns40Plus": 0.005586596, - "receivingTouchdowns50Plus": 0.00365084, + "receivingTouchdowns40Plus": 0.038139218, + "receivingTouchdowns50Plus": 0.00118, "receivingYards": 35.70056306, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.77686824, - "turnovers": 0.016765708, + "totalTurnovers": 0.016765708, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8561,6 +10307,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingYards": 1, "receivingYardsAfterCatch": 1, "receivingYardsPerReception": 1, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 0.6, @@ -8615,18 +10362,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.680021235, "receivingTargets": 5.186141313, "receivingTouchdowns": 0.373707521, - "receivingTouchdowns40Plus": 0.027189527, - "receivingTouchdowns50Plus": 0.017768356, + "receivingTouchdowns40Plus": 0.110986914, + "receivingTouchdowns50Plus": 0.00343, "receivingYards": 52.71461627, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 19.66947708, "rushing2PtConversions": 0.000213, "rushingAttempts": 0.102349529, + "rushingGame100To199Yards": 0.000013, + "rushingGame200PlusYards": 4.44e-7, "rushingTouchdowns": 0.005235575, "rushingTouchdowns40Plus": 0.000188, "rushingTouchdowns50Plus": 0.000132, "rushingYards": 0.635508216, "rushingYardsPerAttempt": 6.209195326, - "turnovers": 0.017234086, + "totalTurnovers": 0.017234086, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8634,10 +10388,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 44, "receivingYardsAfterCatch": 22, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11, "rushingAttempts": 1, "rushingYards": -3, "rushingYardsPerAttempt": -3, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 6.1000000000000005, @@ -8665,6 +10424,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul }, "pointBreakdown": PlayerStats { "madeExtraPoints": 1, + "madeFieldGoalsFrom50To59": 5, "madeFieldGoalsFromUnder40": 3, "usesPoints": true, }, @@ -8672,6 +10432,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.207496384, "madeFieldGoalsFrom40To49": 1.917253348, + "madeFieldGoalsFrom50To59": 1.052789605, "madeFieldGoalsFromUnder40": 2.9342057639999997, "missedExtraPoints": -0.084874649, "missedFieldGoals": -0.257058128, @@ -8683,15 +10444,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.924997974, "attemptedFieldGoalsFrom40To49": 0.604449364, "attemptedFieldGoalsFrom50Plus": 0.321474662, + "attemptedFieldGoalsFrom50To59": 0.321474662, "madeExtraPoints": 2.207496384, "madeFieldGoals": 1.667939846, "madeFieldGoalsFrom40To49": 0.479313337, "madeFieldGoalsFrom50Plus": 0.210557921, + "madeFieldGoalsFrom50To59": 0.210557921, "madeFieldGoalsFromUnder40": 0.978068588, "missedExtraPoints": 0.084874649, "missedFieldGoals": 0.257058128, "missedFieldGoalsFrom40To49": 0.125136027, "missedFieldGoalsFrom50Plus": 0.110916741, + "missedFieldGoalsFrom50To59": 0.110916741, "missedFieldGoalsFromUnder40": 0.021005361, "usesPoints": false, }, @@ -8700,10 +10464,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedExtraPoints": 1, "attemptedFieldGoals": 2, "attemptedFieldGoalsFrom50Plus": 1, + "attemptedFieldGoalsFrom50To59": 1, + "fieldGoalAttemptedYards": 78, + "fieldGoalAttemptedYardsPer10Yards": 7, + "fieldGoalAttemptedYardsPer20Yards": 3, + "fieldGoalAttemptedYardsPer25Yards": 3, + "fieldGoalAttemptedYardsPer50Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 15, + "fieldGoalMadeYards": 78, + "fieldGoalMadeYardsPer10Yards": 7, + "fieldGoalMadeYardsPer20Yards": 3, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 15, "madeExtraPoints": 1, "madeFieldGoals": 2, "madeFieldGoalsFrom50Plus": 1, + "madeFieldGoalsFrom50To59": 1, "madeFieldGoalsFromUnder40": 1, + "teamLoss": 1, + "teamPointsScored": 7, "usesPoints": false, }, "totalPoints": 9, @@ -8757,18 +10537,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 0.785372451, "receivingTargets": 1.044264692, "receivingTouchdowns": 0.040695832, - "receivingTouchdowns40Plus": 0.002412369, - "receivingTouchdowns50Plus": 0.001576483, + "receivingTouchdowns40Plus": 0.002518132, + "receivingTouchdowns50Plus": 0.0000779, "receivingYards": 5.778532815, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7.357697367, "rushing2PtConversions": 0.0181, "rushingAttempts": 9.478190149, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.104, + "rushingGame200PlusYards": 0.00354, "rushingTouchdowns": 0.352453439, "rushingTouchdowns40Plus": 0.0189, "rushingTouchdowns50Plus": 0.0132, "rushingYards": 48.74034085, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 5.142367909, - "turnovers": 0.046973866, + "totalTurnovers": 0.046973866, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8777,10 +10565,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 1, "receivingYards": 16, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 16, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 3.7, @@ -8869,11 +10663,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.065523909, "defensiveForcedFumbles": 0.717989603, "defensiveFumbles": 0.466693242, + "defensiveHalfSacks": 3.958076276, "defensiveInterceptions": 0.83861781, "defensiveOver45PointsAllowed": 0.010309278, "defensivePointsAllowed": 22.81185295, "defensiveSacks": 1.979038138, "defensiveSafeties": 0.00698934, + "defensiveTacklesPer3Tackles": 21, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 63.91126487, "defensiveYardsAllowed": 351.160918, "fumbleReturnTouchdown": 0.077605207, @@ -8882,6 +10679,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 36.86176471, "puntReturnTouchdown": 0.013962353, "puntReturnYards": 12.44470588, + "totalReturnTouchdowns": 0.137926815, "usesPoints": false, }, "rawStats": PlayerStats { @@ -8901,15 +10699,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 17, "defensiveForcedFumbles": 2, + "defensiveHalfSacks": 6, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 14, "defensiveSacks": 3, "defensiveSoloTackles": 40, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 57, "defensiveYardsAllowed": 307, "kickoffReturnYards": 28, "puntReturnYards": 12, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4, @@ -8962,36 +10765,70 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 30.30532717, "passingCompletionPercentage": 0.648874223, "passingCompletions": 19.66434562, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 10.64098155, "passingInterceptions": 0.860402289, "passingTouchdowns": 1.570898961, "passingTouchdowns40Plus": 0.173075735, "passingTouchdowns50Plus": 0.113104993, "passingYards": 224.8372896, + "passingYards300To399": 0.151319762, + "passingYards400Plus": 0.020439332, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 44, "rushing2PtConversions": 0.0174, "rushingAttempts": 10.39186085, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.165, + "rushingGame200PlusYards": 0.00563, "rushingTouchdowns": 0.300509089, "rushingTouchdowns40Plus": 0.0209, "rushingTouchdowns50Plus": 0.0146, "rushingYards": 61.40895997, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 5.909332397, - "turnovers": 1.160564596, + "totalTurnovers": 1.160564596, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 30, "passingCompletionPercentage": 56.67, "passingCompletions": 17, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 13, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 213, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 21, + "passingYardsPer20Yards": 10, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 42, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 17, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 2.833, - "turnovers": 1, + "teamPointsScored": 18, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 20.22, @@ -9050,18 +10887,32 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.021932288, "receivingTargets": 7.011498128, "receivingTouchdowns": 0.156353871, - "receivingTouchdowns40Plus": 0.004486341, - "receivingTouchdowns50Plus": 0.002931824, + "receivingTouchdowns40Plus": 0.074947372, + "receivingTouchdowns50Plus": 0.00232, "receivingYards": 45.59136963, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 7.570887126, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.0225, "rushingAttempts": 15.057868, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.193, + "rushingGame200PlusYards": 0.0066, "rushingTouchdowns": 0.484594014, "rushingTouchdowns40Plus": 0.0315, "rushingTouchdowns50Plus": 0.022, "rushingYards": 66.46724076, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 4.414120295, - "turnovers": 0.07915176, + "totalTurnovers": 0.07915176, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9069,11 +10920,22 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 24, "receivingYardsAfterCatch": 36, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 6, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 33, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 3.3, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 13.700000000000001, @@ -9128,18 +10990,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.63359157, "receivingTargets": 8.354117535, "receivingTouchdowns": 0.475218414, - "receivingTouchdowns40Plus": 0.012527842, - "receivingTouchdowns50Plus": 0.008186945, + "receivingTouchdowns40Plus": 0.21898584, + "receivingTouchdowns50Plus": 0.00677, "receivingYards": 69.11347208, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.2681013, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.00117, "rushingAttempts": 0.473909507, + "rushingGame100To199Yards": 0.000505, + "rushingGame200PlusYards": 0.0000172, "rushingTouchdowns": 0.022904089, "rushingTouchdowns40Plus": 0.000873, "rushingTouchdowns50Plus": 0.000611, "rushingYards": 3.479025951, "rushingYardsPerAttempt": 7.341118708, - "turnovers": 0.043305081, + "totalTurnovers": 0.043305081, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9148,10 +11018,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 12, "receivingYards": 94, "receivingYardsAfterCatch": 40, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 11.75, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14, @@ -9206,18 +11084,31 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.280630101, "receivingTargets": 3.782729977, "receivingTouchdowns": 0.112579709, - "receivingTouchdowns40Plus": 0.004827433, - "receivingTouchdowns50Plus": 0.003154727, + "receivingTouchdowns40Plus": 0.015063417, + "receivingTouchdowns50Plus": 0.000466, "receivingYards": 25.01472267, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.624975049, "rushing2PtConversions": 0.0254, "rushingAttempts": 14.70513491, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.165, + "rushingGame200PlusYards": 0.00562, "rushingTouchdowns": 0.74928682, "rushingTouchdowns40Plus": 0.0306, "rushingTouchdowns50Plus": 0.0214, "rushingYards": 61.33921132, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.17127838, - "turnovers": 0.075035366, + "totalTurnovers": 0.075035366, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9226,11 +11117,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 29, "receivingYardsAfterCatch": 38, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 5.8, + "receptionsPer5Receptions": 1, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.6, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 14, @@ -9285,27 +11189,44 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.289342583, "receivingTargets": 7.973086506, "receivingTouchdowns": 0.420871182, - "receivingTouchdowns40Plus": 0.014394429, - "receivingTouchdowns50Plus": 0.009406759, + "receivingTouchdowns40Plus": 0.213065846, + "receivingTouchdowns50Plus": 0.00659, "receivingYards": 68.30452317, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.91361301, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.000469, "rushingAttempts": 0.281180915, + "rushingGame100To199Yards": 0.000144, + "rushingGame200PlusYards": 0.00000491, "rushingTouchdowns": 0.011754287, "rushingTouchdowns40Plus": 0.000517, "rushingTouchdowns50Plus": 0.000362, "rushingYards": 1.897004408, "rushingYardsPerAttempt": 6.74656176, - "turnovers": 0.039563619, + "totalTurnovers": 0.039563619, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 9, "receivingTargets": 13, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 121, "receivingYardsAfterCatch": 44, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 13.444, + "receptionsPer5Receptions": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 22.6, @@ -9357,20 +11278,35 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 38.84237881, "passingCompletionPercentage": 0.643236819, "passingCompletions": 24.98484819, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.85753061, "passingInterceptions": 0.745249041, "passingTouchdowns": 2.301868248, "passingTouchdowns40Plus": 0.284601918, "passingTouchdowns50Plus": 0.185987354, "passingYards": 293.9330112, + "passingYards300To399": 0.420827313, + "passingYards400Plus": 0.056842736, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 29, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 58, "rushing2PtConversions": 0.00825, "rushingAttempts": 3.891279031, + "rushingGame100To199Yards": 0.0229, + "rushingGame200PlusYards": 0.000782, "rushingTouchdowns": 0.20289244, "rushingTouchdowns40Plus": 0.00739, "rushingTouchdowns50Plus": 0.00518, "rushingYards": 22.94367981, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.89617954, - "turnovers": 1.007205959, + "totalTurnovers": 1.007205959, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9378,12 +11314,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 39, "passingCompletionPercentage": 76.92, "passingCompletions": 30, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 6, "passingIncompletions": 9, + "passingIncompletionsPer5Incompletions": 1, "passingTouchdowns": 5, "passingYards": 360, + "passingYards300To399": 1, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 36, + "passingYardsPer20Yards": 18, + "passingYardsPer25Yards": 14, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 72, "rushingAttempts": 3, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.667, + "teamPointsScored": 30, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 34.9, @@ -9437,18 +11386,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.880689197, "receivingTargets": 2.530162375, "receivingTouchdowns": 0.053632281, - "receivingTouchdowns40Plus": 0.001952219, - "receivingTouchdowns50Plus": 0.001275775, + "receivingTouchdowns40Plus": 0.004653766, + "receivingTouchdowns50Plus": 0.000144, "receivingYards": 12.4762836, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.633889121, "rushing2PtConversions": 0.0195, "rushingAttempts": 11.51963087, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.113, + "rushingGame200PlusYards": 0.00386, "rushingTouchdowns": 0.386911434, "rushingTouchdowns40Plus": 0.0234, "rushingTouchdowns50Plus": 0.0164, "rushingYards": 50.86253455, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.415292047, - "turnovers": 0.078701026, + "totalTurnovers": 0.078701026, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9456,10 +11416,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 14, "receivingYardsAfterCatch": 22, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 48, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.200000000000001, @@ -9513,18 +11481,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.335937609, "receivingTargets": 7.309238735, "receivingTouchdowns": 0.177968325, - "receivingTouchdowns40Plus": 0.012002679, - "receivingTouchdowns50Plus": 0.007843751, + "receivingTouchdowns40Plus": 0.154218539, + "receivingTouchdowns50Plus": 0.00477, "receivingYards": 59.83125273, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 13.7989192, "rushing2PtConversions": 0.000495, "rushingAttempts": 0.279875075, + "rushingGame100To199Yards": 0.000103, + "rushingGame200PlusYards": 0.00000351, "rushingTouchdowns": 0.01341972, "rushingTouchdowns40Plus": 0.000515, "rushingTouchdowns50Plus": 0.00036, "rushingYards": 1.617937114, "rushingYardsPerAttempt": 5.78092605, - "turnovers": 0.021467101, + "totalTurnovers": 0.021467101, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9532,7 +11507,9 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 8, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1.3, @@ -9581,11 +11558,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.141472123, "receivingTargets": 7.373517744, "receivingTouchdowns": 0.372899825, - "receivingTouchdowns40Plus": 0.00839938, - "receivingTouchdowns50Plus": 0.005488995, + "receivingTouchdowns40Plus": 0.126462487, + "receivingTouchdowns50Plus": 0.00391, "receivingYards": 55.39144277, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.77345971, - "turnovers": 0.039568933, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.039568933, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9593,7 +11576,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 36, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 5.1, @@ -9643,11 +11631,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.084600744, "receivingTargets": 6.857751267, "receivingTouchdowns": 0.318825173, - "receivingTouchdowns40Plus": 0.005843256, - "receivingTouchdowns50Plus": 0.003818568, + "receivingTouchdowns40Plus": 0.083231945, + "receivingTouchdowns50Plus": 0.00257, "receivingYards": 47.37324192, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.317003302, - "turnovers": 0.022464136, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.022464136, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9655,7 +11648,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 9, "receivingYards": 62, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.857, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 9.7, @@ -9708,20 +11708,33 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 35.81619526, "passingCompletionPercentage": 0.662745879, "passingCompletions": 23.73703582, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.07915944, "passingInterceptions": 0.450475528, "passingTouchdowns": 2.106998068, "passingTouchdowns40Plus": 0.237922943, "passingTouchdowns50Plus": 0.155482643, "passingYards": 267.0751593, + "passingYards300To399": 0.28793798, + "passingYards400Plus": 0.038892871, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushing2PtConversions": 0.00642, "rushingAttempts": 2.227479807, + "rushingGame100To199Yards": 0.00334, + "rushingGame200PlusYards": 0.000114, "rushingTouchdowns": 0.130780652, "rushingTouchdowns40Plus": 0.00417, "rushingTouchdowns50Plus": 0.00292, "rushingYards": 8.815740162, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.957719453, - "turnovers": 0.649101801, + "totalTurnovers": 0.649101801, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9730,13 +11743,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 34, "passingCompletionPercentage": 64.71, "passingCompletions": 22, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1, "passingYards": 195, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 19, + "passingYardsPer20Yards": 9, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 39, "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, - "turnovers": 2, + "teamLoss": 1, + "totalTurnovers": 2, "usesPoints": false, }, "totalPoints": 3.7, @@ -9792,18 +11816,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.775306631, "receivingTargets": 2.438243202, "receivingTouchdowns": 0.04754177, - "receivingTouchdowns40Plus": 0.00222644, - "receivingTouchdowns50Plus": 0.001454979, + "receivingTouchdowns40Plus": 0.004903269, + "receivingTouchdowns50Plus": 0.000152, "receivingYards": 13.09805123, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.377909263, "rushing2PtConversions": 0.019959639, "rushingAttempts": 8.153578922, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0548, + "rushingGame200PlusYards": 0.00187, "rushingTouchdowns": 0.286273971, "rushingTouchdowns40Plus": 0.016080545, "rushingTouchdowns50Plus": 0.011256381, "rushingYards": 35.42100298, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.344227647, - "turnovers": 0.059622448, + "totalTurnovers": 0.059622448, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9813,9 +11846,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingYards": 3, "receivingYardsPerReception": 3, "rushingAttempts": 11, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 66, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 6, + "teamLoss": 1, + "teamPointsScored": 12, "usesPoints": false, }, "totalPoints": 19.400000000000002, @@ -9901,12 +11943,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.053909488, "defensiveForcedFumbles": 0.710484981, "defensiveFumbles": 0.461815238, + "defensiveHalfSacks": 4.490110736, "defensiveInterceptions": 0.705152029, "defensiveOver45PointsAllowed": 0.020833333, "defensiveOver550YardsAllowed": 0.024691358, "defensivePointsAllowed": 22.1186915, "defensiveSacks": 2.245055368, "defensiveSafeties": 0.007506209, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 57.62821004, "defensiveYardsAllowed": 346.8829257, "fumbleReturnTouchdown": 0.075540595, @@ -9915,6 +11960,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 40.00611765, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 12.21016043, + "totalReturnTouchdowns": 0.134849862, "usesPoints": false, }, "rawStats": PlayerStats { @@ -9933,15 +11979,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive500To549YardsAllowed": 0, "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 20, + "defensiveHalfSacks": 2, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 23, "defensiveSacks": 1, "defensiveSoloTackles": 48, + "defensiveStuffs": 7, + "defensiveTacklesPer3Tackles": 22, + "defensiveTacklesPer5Tackles": 13, "defensiveTotalTackles": 68, "defensiveYardsAllowed": 395, "kickoffReturnYards": 14, "puntReturnYards": 12, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0, @@ -9991,11 +12042,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.280810005, "receivingTargets": 4.941978826, "receivingTouchdowns": 0.379957153, - "receivingTouchdowns40Plus": 0.006811487, - "receivingTouchdowns50Plus": 0.004451307, + "receivingTouchdowns40Plus": 0.037148761, + "receivingTouchdowns50Plus": 0.00115, "receivingYards": 35.36056846, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.77799946, - "turnovers": 0.013704744, + "totalTurnovers": 0.013704744, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10003,7 +12058,11 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 20, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3, @@ -10031,12 +12090,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul }, "pointBreakdown": PlayerStats { "madeExtraPoints": 4, + "madeFieldGoalsFrom50To59": 5, "usesPoints": true, }, "position": "K", "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 3.10757873, "madeFieldGoalsFrom40To49": 1.752388976, + "madeFieldGoalsFrom50To59": 0.966345805, "madeFieldGoalsFromUnder40": 2.6574452820000003, "missedExtraPoints": -0.06574209, "missedFieldGoals": -0.206831451, @@ -10048,15 +12109,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 1.72401295, "attemptedFieldGoalsFrom40To49": 0.541340066, "attemptedFieldGoalsFrom50Plus": 0.287910163, + "attemptedFieldGoalsFrom50To59": 0.287910163, "madeExtraPoints": 3.10757873, "madeFieldGoals": 1.517181499, "madeFieldGoalsFrom40To49": 0.438097244, "madeFieldGoalsFrom50Plus": 0.193269161, + "madeFieldGoalsFrom50To59": 0.193269161, "madeFieldGoalsFromUnder40": 0.885815094, "missedExtraPoints": 0.06574209, "missedFieldGoals": 0.206831451, "missedFieldGoalsFrom40To49": 0.103242822, "missedFieldGoalsFrom50Plus": 0.094641001, + "missedFieldGoalsFrom50To59": 0.094641001, "missedFieldGoalsFromUnder40": 0.008947627, "usesPoints": false, }, @@ -10064,9 +12128,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedExtraPoints": 4, "attemptedFieldGoals": 1, "attemptedFieldGoalsFrom50Plus": 1, + "attemptedFieldGoalsFrom50To59": 1, + "fieldGoalAttemptedYards": 54, + "fieldGoalAttemptedYardsPer10Yards": 5, + "fieldGoalAttemptedYardsPer20Yards": 2, + "fieldGoalAttemptedYardsPer25Yards": 2, + "fieldGoalAttemptedYardsPer50Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 10, + "fieldGoalMadeYards": 54, + "fieldGoalMadeYardsPer10Yards": 5, + "fieldGoalMadeYardsPer20Yards": 2, + "fieldGoalMadeYardsPer25Yards": 2, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 10, "madeExtraPoints": 4, "madeFieldGoals": 1, "madeFieldGoalsFrom50Plus": 1, + "madeFieldGoalsFrom50To59": 1, + "teamPointsScored": 7, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9, @@ -10127,18 +12207,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.14486419, "receivingTargets": 4.445263982, "receivingTouchdowns": 0.31710241, - "receivingTouchdowns40Plus": 0.018943174, - "receivingTouchdowns50Plus": 0.012379364, + "receivingTouchdowns40Plus": 0.055561589, + "receivingTouchdowns50Plus": 0.00172, "receivingYards": 40.9041703, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.00665715, "rushing2PtConversions": 0.00149, "rushingAttempts": 0.614097173, + "rushingGame100To199Yards": 0.000728, + "rushingGame200PlusYards": 0.0000248, "rushingTouchdowns": 0.036697993, "rushingTouchdowns40Plus": 0.00113, "rushingTouchdowns50Plus": 0.000793, "rushingYards": 4.157874283, "rushingYardsPerAttempt": 6.77071067, - "turnovers": 0.040872173, + "totalTurnovers": 0.040872173, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10148,7 +12234,11 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 16, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 5.333, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 9.1, @@ -10200,24 +12290,35 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.098105348, "receivingTargets": 1.40447957, "receivingTouchdowns": 0.032228565, - "receivingTouchdowns40Plus": 0.002127524, - "receivingTouchdowns50Plus": 0.001390337, + "receivingTouchdowns40Plus": 0.003010153, + "receivingTouchdowns50Plus": 0.0000931, "receivingYards": 7.392666943, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6.732201933, "rushing2PtConversions": 0.00619, "rushingAttempts": 4.163983394, + "rushingGame100To199Yards": 0.0115, + "rushingGame200PlusYards": 0.000393, "rushingTouchdowns": 0.115, "rushingTouchdowns40Plus": 0.00793, "rushingTouchdowns50Plus": 0.00555, "rushingYards": 16.28251964, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.910322904, - "turnovers": 0.017380548, + "totalTurnovers": 0.017380548, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 36, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 3.6, @@ -10306,11 +12407,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.066265091, "defensiveForcedFumbles": 0.825946736, "defensiveFumbles": 0.536865378, + "defensiveHalfSacks": 4.578922376, "defensiveInterceptions": 0.941033727, "defensiveOver550YardsAllowed": 0.012345679, "defensivePointsAllowed": 17.13252217, "defensiveSacks": 2.289461188, "defensiveSafeties": 0.007407244, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 61.47013832, "defensiveYardsAllowed": 344.5180482, "fumbleReturnTouchdown": 0.075797862, @@ -10319,6 +12423,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 40.00611765, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 14.66242884, + "totalReturnTouchdowns": 0.134912297, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10338,14 +12443,19 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 17, "defensiveForcedFumbles": 1, + "defensiveHalfSacks": 2, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 17, "defensiveSacks": 1, "defensiveSoloTackles": 41, + "defensiveStuffs": 4, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 58, "defensiveYardsAllowed": 267, "puntReturnYards": 31, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4, @@ -10403,11 +12513,17 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 6.165049335, "receivingTargets": 9.397745963, "receivingTouchdowns": 0.480031757, - "receivingTouchdowns40Plus": 0.011712932, - "receivingTouchdowns50Plus": 0.007654401, + "receivingTouchdowns40Plus": 0.273974326, + "receivingTouchdowns50Plus": 0.00847, "receivingYards": 76.46542705, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 12.40305193, - "turnovers": 0.038183525, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.038183525, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10415,10 +12531,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 9, "receivingTouchdowns": 1, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 122, "receivingYardsAfterCatch": 27, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 15.25, + "receptionsPer5Receptions": 1, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 22.200000000000003, @@ -10475,18 +12599,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.923618155, "receivingTargets": 9.143668357, "receivingTouchdowns": 0.455278342, - "receivingTouchdowns40Plus": 0.014568731, - "receivingTouchdowns50Plus": 0.009520666, + "receivingTouchdowns40Plus": 0.289836759, + "receivingTouchdowns50Plus": 0.00896, "receivingYards": 78.57309173, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 13.26437486, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.00153, "rushingAttempts": 0.479802231, + "rushingGame100To199Yards": 0.000403, + "rushingGame200PlusYards": 0.0000138, "rushingTouchdowns": 0.02364925, "rushingTouchdowns40Plus": 0.000884, "rushingTouchdowns50Plus": 0.000619, "rushingYards": 3.117178571, "rushingYardsPerAttempt": 6.496798822, - "turnovers": 0.034851304, + "totalTurnovers": 0.034851304, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10494,7 +12626,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 11, "receivingYards": 29, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 14.5, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3.9000000000000004, @@ -10545,22 +12682,34 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.227610139, "receivingTargets": 2.925081408, "receivingTouchdowns": 0.092680073, - "receivingTouchdowns40Plus": 0.002333081, - "receivingTouchdowns50Plus": 0.001524669, + "receivingTouchdowns40Plus": 0.006327327, + "receivingTouchdowns50Plus": 0.000196, "receivingYards": 15.9984878, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.181906531, "rushing2PtConversions": 0.01874469, "rushingAttempts": 13.87276501, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.142292811, + "rushingGame200PlusYards": 0.00486, "rushingTouchdowns": 0.401928755, "rushingTouchdowns40Plus": 0.028705751, "rushingTouchdowns50Plus": 0.020094026, "rushingYards": 57.03757296, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.111478346, - "turnovers": 0.092139354, + "totalTurnovers": 0.092139354, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 3, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 0, @@ -10612,21 +12761,32 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 4.784203368, "receivingTargets": 7.762624214, "receivingTouchdowns": 0.422193992, - "receivingTouchdowns40Plus": 0.016499597, - "receivingTouchdowns50Plus": 0.010782487, + "receivingTouchdowns40Plus": 0.217257308, + "receivingTouchdowns50Plus": 0.00672, "receivingYards": 68.87782499, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 14.39692665, - "turnovers": 0.020685417, + "totalTurnovers": 0.020685417, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 2, "receivingTargets": 4, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 58, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 29, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 12.8, @@ -10678,24 +12838,41 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.456457481, "receivingTargets": 1.846225805, "receivingTouchdowns": 0.063488912, - "receivingTouchdowns40Plus": 0.002983637, - "receivingTouchdowns50Plus": 0.001949807, + "receivingTouchdowns40Plus": 0.004077192, + "receivingTouchdowns50Plus": 0.000126, "receivingYards": 10.87383372, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.465946558, "rushing2PtConversions": 0.0167, "rushingAttempts": 19.66563716, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.315, + "rushingGame200PlusYards": 0.0107, "rushingTouchdowns": 0.642165273, "rushingTouchdowns40Plus": 0.0426, "rushingTouchdowns50Plus": 0.0298, "rushingYards": 84.78921923, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.311541932, - "turnovers": 0.04076223, + "totalTurnovers": 0.04076223, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 41, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 6.833, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4.1000000000000005, @@ -10757,31 +12934,46 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.290697605, "receivingTargets": 7.657941074, "receivingTouchdowns": 0.36999172, - "receivingTouchdowns40Plus": 0.007077879, - "receivingTouchdowns50Plus": 0.004625394, + "receivingTouchdowns40Plus": 0.125801856, + "receivingTouchdowns50Plus": 0.00389, "receivingYards": 55.28056914, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.44863518, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.00154, "rushingAttempts": 0.473909507, + "rushingGame100To199Yards": 0.000328, + "rushingGame200PlusYards": 0.0000112, "rushingTouchdowns": 0.029985378, "rushingTouchdowns40Plus": 0.000873, "rushingTouchdowns50Plus": 0.000611, "rushingYards": 2.822035586, "rushingYardsPerAttempt": 5.954798419, - "turnovers": 0.050435028, + "totalTurnovers": 0.050435028, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 4, "receivingTargets": 5, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 69, "receivingYardsAfterCatch": 30, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 17.25, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 15.700000000000001, @@ -10833,32 +13025,69 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 29.12794399, "passingCompletionPercentage": 0.615635524, "passingCompletions": 17.93219707, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 11.19574692, "passingInterceptions": 0.724621882, "passingTouchdowns": 1.738107068, "passingTouchdowns40Plus": 0.173984417, "passingTouchdowns50Plus": 0.113698817, "passingYards": 225.4802616, + "passingYards300To399": 0.152830978, + "passingYards400Plus": 0.020643458, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 45, "rushing2PtConversions": 0.0275, "rushingAttempts": 9.034167491, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.11, + "rushingGame200PlusYards": 0.00375, "rushingTouchdowns": 0.612892063, "rushingTouchdowns40Plus": 0.018, "rushingTouchdowns50Plus": 0.0126, "rushingYards": 50.16670819, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 5.552997355, - "turnovers": 1.037158211, + "totalTurnovers": 1.037158211, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 32, "passingCompletionPercentage": 56.25, "passingCompletions": 18, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 14, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingYards": 243, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushingAttempts": 17, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 90, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 5.294, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 24.72, @@ -10912,18 +13141,28 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.71169128, "receivingTargets": 3.428875634, "receivingTouchdowns": 0.104028164, - "receivingTouchdowns40Plus": 0.002915864, - "receivingTouchdowns50Plus": 0.001905517, + "receivingTouchdowns40Plus": 0.00931508, + "receivingTouchdowns50Plus": 0.000288, "receivingYards": 20.07195588, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.40200628, "rushing2PtConversions": 0.0134, "rushingAttempts": 8.87634128, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0738, + "rushingGame200PlusYards": 0.00252, "rushingTouchdowns": 0.207077959, "rushingTouchdowns40Plus": 0.0176, "rushingTouchdowns50Plus": 0.0123, "rushingYards": 41.10100019, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.63039882, - "turnovers": 0.04840554, + "totalTurnovers": 0.04840554, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10933,10 +13172,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 14, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.333, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3.2, @@ -10986,11 +13230,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.673140982, "receivingTargets": 5.190856168, "receivingTouchdowns": 0.306523607, - "receivingTouchdowns40Plus": 0.015763039, - "receivingTouchdowns50Plus": 0.010301146, + "receivingTouchdowns40Plus": 0.074610077, + "receivingTouchdowns50Plus": 0.00231, "receivingYards": 45.51646775, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 12.39170181, - "turnovers": 0.027954675, + "totalTurnovers": 0.027954675, "usesPoints": false, }, "rawStats": PlayerStats { @@ -10998,7 +13246,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 60, "receivingYardsAfterCatch": 52, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 20, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.5, @@ -11052,18 +13306,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.572685631, "receivingTargets": 3.294652551, "receivingTouchdowns": 0.100237177, - "receivingTouchdowns40Plus": 0.003223459, - "receivingTouchdowns50Plus": 0.002106531, + "receivingTouchdowns40Plus": 0.009068111, + "receivingTouchdowns50Plus": 0.00028, "receivingYards": 19.79585884, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.694627981, "rushing2PtConversions": 0.0129, "rushingAttempts": 9.431159263, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0699, + "rushingGame200PlusYards": 0.00239, "rushingTouchdowns": 0.367301917, "rushingTouchdowns40Plus": 0.0188, "rushingTouchdowns50Plus": 0.0132, "rushingYards": 40.00116889, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.241384095, - "turnovers": 0.060232883, + "totalTurnovers": 0.060232883, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11073,8 +13336,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingYardsAfterCatch": 8, "receivingYardsPerReception": 1, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.125, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3.7, @@ -11128,18 +13397,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 2.209137351, "receivingTargets": 2.891614142, "receivingTouchdowns": 0.086930541, - "receivingTouchdowns40Plus": 0.002560506, - "receivingTouchdowns50Plus": 0.001673291, + "receivingTouchdowns40Plus": 0.006510733, + "receivingTouchdowns50Plus": 0.000201, "receivingYards": 16.31018851, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.38305769, "rushing2PtConversions": 0.00476, "rushingAttempts": 3.413223961, + "rushingGame100To199Yards": 0.00891, + "rushingGame200PlusYards": 0.000304, "rushingTouchdowns": 0.094638094, "rushingTouchdowns40Plus": 0.00646, "rushingTouchdowns50Plus": 0.00452, "rushingYards": 14.33554063, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4.2, - "turnovers": 0.023024557, + "totalTurnovers": 0.023024557, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11148,7 +13423,8 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, - "turnovers": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": -1.8, @@ -11175,6 +13451,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "seasonId": 2022, }, "pointBreakdown": PlayerStats { + "madeFieldGoalsFrom50To59": 5, "madeFieldGoalsFromUnder40": 3, "missedExtraPoints": -1, "missedFieldGoals": -1, @@ -11184,6 +13461,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.651924398, "madeFieldGoalsFrom40To49": 2.141187896, + "madeFieldGoalsFrom50To59": 1.1761727149999999, "madeFieldGoalsFromUnder40": 3.275870394, "missedExtraPoints": -0.09813793, "missedFieldGoals": -0.28372441, @@ -11195,15 +13473,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 2.146212726, "attemptedFieldGoalsFrom40To49": 0.673910796, "attemptedFieldGoalsFrom50Plus": 0.358417525, + "attemptedFieldGoalsFrom50To59": 0.358417525, "madeExtraPoints": 2.651924398, "madeFieldGoals": 1.862488315, "madeFieldGoalsFrom40To49": 0.535296974, "madeFieldGoalsFrom50Plus": 0.235234543, + "madeFieldGoalsFrom50To59": 0.235234543, "madeFieldGoalsFromUnder40": 1.091956798, "missedExtraPoints": 0.09813793, "missedFieldGoals": 0.28372441, "missedFieldGoalsFrom40To49": 0.138613821, "missedFieldGoalsFrom50Plus": 0.123182982, + "missedFieldGoalsFrom50To59": 0.123182982, "missedFieldGoalsFromUnder40": 0.021927607, "usesPoints": false, }, @@ -11212,12 +13493,34 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedExtraPoints": 1, "attemptedFieldGoals": 3, "attemptedFieldGoalsFrom50Plus": 1, + "attemptedFieldGoalsFrom50To59": 1, + "fieldGoalAttemptedYards": 114, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 11, + "fieldGoalAttemptedYardsPer20Yards": 5, + "fieldGoalAttemptedYardsPer25Yards": 4, + "fieldGoalAttemptedYardsPer50Yards": 2, + "fieldGoalAttemptedYardsPer5Yards": 22, + "fieldGoalMadeYards": 85, + "fieldGoalMadeYardsPer10Yards": 8, + "fieldGoalMadeYardsPer20Yards": 4, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 17, + "fieldGoalMissedYards": 29, + "fieldGoalMissedYardsPer10Yards": 2, + "fieldGoalMissedYardsPer20Yards": 1, + "fieldGoalMissedYardsPer25Yards": 1, + "fieldGoalMissedYardsPer5Yards": 5, "madeFieldGoals": 2, "madeFieldGoalsFrom50Plus": 1, + "madeFieldGoalsFrom50To59": 1, "madeFieldGoalsFromUnder40": 1, "missedExtraPoints": 1, "missedFieldGoals": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 6, @@ -11306,10 +13609,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.064313703, "defensiveForcedFumbles": 0.749571527, "defensiveFumbles": 0.487221493, + "defensiveHalfSacks": 5.538357742, "defensiveInterceptions": 0.96748595, "defensivePointsAllowed": 18.37658438, "defensiveSacks": 2.769178871, "defensiveSafeties": 0.007342463, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 59.15601092, "defensiveYardsAllowed": 340.1841603, "fumbleReturnTouchdown": 0.075635501, @@ -11318,6 +13624,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 38.13490196, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 10.3750759, + "totalReturnTouchdowns": 0.133234749, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11337,16 +13644,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 18, "defensiveForcedFumbles": 1, + "defensiveHalfSacks": 8, "defensiveInterceptions": 1, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 24, "defensiveSacks": 4, "defensiveSoloTackles": 29, + "defensiveStuffs": 2, + "defensiveTacklesPer3Tackles": 15, + "defensiveTacklesPer5Tackles": 9, "defensiveTotalTackles": 47, "defensiveYardsAllowed": 261, "kickoffReturnYards": 29, "puntReturnYards": 29, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 8, @@ -11404,18 +13716,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.608261004, "receivingTargets": 2.18562365, "receivingTouchdowns": 0.082416119, - "receivingTouchdowns40Plus": 0.003450998, - "receivingTouchdowns50Plus": 0.002255228, + "receivingTouchdowns40Plus": 0.005012152, + "receivingTouchdowns50Plus": 0.000155, "receivingYards": 13.35688027, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.305169518, "rushing2PtConversions": 0.00831, "rushingAttempts": 4.575369996, + "rushingGame100To199Yards": 0.0179, + "rushingGame200PlusYards": 0.000611, "rushingTouchdowns": 0.185031835, "rushingTouchdowns40Plus": 0.00875, "rushingTouchdowns50Plus": 0.00612, "rushingYards": 20.27871996, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4.432148652, - "turnovers": 0.0405088, + "totalTurnovers": 0.0405088, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11423,11 +13742,19 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 4, "receivingYards": 12, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 20, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 4, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 10.2, @@ -11517,11 +13844,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.056676793, "defensiveForcedFumbles": 0.761083919, "defensiveFumbles": 0.494704547, + "defensiveHalfSacks": 5.382920917, "defensiveInterceptions": 0.715094437, "defensiveOver550YardsAllowed": 0.012345679, "defensivePointsAllowed": 19.18647916, "defensiveSacks": 2.691460458, "defensiveSafeties": 0.00753635, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 60.23129376, "defensiveYardsAllowed": 345.0870395, "fumbleReturnTouchdown": 0.073073098, @@ -11530,6 +13860,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 40.00611765, "puntReturnTouchdown": 0.013962353, "puntReturnYards": 12.44470588, + "totalReturnTouchdowns": 0.134711319, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11550,15 +13881,20 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveAssistedTackles": 24, "defensiveForcedFumbles": 3, "defensiveFumbles": 1, + "defensiveHalfSacks": 4, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 17, "defensiveSacks": 2, "defensiveSoloTackles": 35, + "defensiveStuffs": 3, + "defensiveTacklesPer3Tackles": 19, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 59, "defensiveYardsAllowed": 253, "kickoffReturnYards": 51, "puntReturnYards": 3, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 7, @@ -11608,25 +13944,38 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.584911206, "receivingTargets": 2.042627726, "receivingTouchdowns": 0.071722816, - "receivingTouchdowns40Plus": 0.002055373, - "receivingTouchdowns50Plus": 0.001343186, + "receivingTouchdowns40Plus": 0.003970208, + "receivingTouchdowns50Plus": 0.000123, "receivingYards": 10.55036418, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.656754104, "rushing2PtConversions": 0.0258, "rushingAttempts": 12.39251414, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.108, + "rushingGame200PlusYards": 0.00368, "rushingTouchdowns": 0.446481306, "rushingTouchdowns40Plus": 0.0253, "rushingTouchdowns50Plus": 0.0177, "rushingYards": 49.65256011, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.006657531, - "turnovers": 0.071139927, + "totalTurnovers": 0.071139927, "usesPoints": false, }, "rawStats": PlayerStats { "fumbles": 1, "rushingAttempts": 2, "rushingYards": 11, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.5, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 1.1, @@ -11680,18 +14029,22 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 0.48618294, "receivingTargets": 0.692334677, "receivingTouchdowns": 0.038246466, - "receivingTouchdowns40Plus": 0.002908229, - "receivingTouchdowns50Plus": 0.001900528, + "receivingTouchdowns40Plus": 0.001929549, + "receivingTouchdowns50Plus": 0.0000597, "receivingYards": 4.049931395, "receivingYardsPerReception": 8.33005657, "rushing2PtConversions": 0.00273, "rushingAttempts": 2.415078248, + "rushingGame100To199Yards": 0.00447, + "rushingGame200PlusYards": 0.000153, "rushingTouchdowns": 0.105286198, "rushingTouchdowns40Plus": 0.00453, "rushingTouchdowns50Plus": 0.00317, "rushingYards": 10.18112383, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4.215649673, - "turnovers": 0.016388336, + "totalTurnovers": 0.016388336, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11699,10 +14052,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 2, "receivingYards": 8, "receivingYardsAfterCatch": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 22, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 2.444, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 4, @@ -11758,26 +14117,45 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.806020017, "receivingTargets": 2.339688464, "receivingTouchdowns": 0.061702606, - "receivingTouchdowns40Plus": 0.003243668, - "receivingTouchdowns50Plus": 0.002119737, + "receivingTouchdowns40Plus": 0.005333568, + "receivingTouchdowns50Plus": 0.000165, "receivingYards": 14.08014691, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.796229708, "rushing2PtConversions": 0.0241, "rushingAttempts": 23.19520386, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.422, + "rushingGame200PlusYards": 0.0144, "rushingTouchdowns": 0.779050858, "rushingTouchdowns40Plus": 0.0517, "rushingTouchdowns50Plus": 0.0362, "rushingYards": 98.21667362, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.23435268, - "turnovers": 0.084555665, + "totalTurnovers": 0.084555665, "usesPoints": false, }, "rawStats": PlayerStats { "fumbles": 1, "receivingTargets": 1, "rushingAttempts": 21, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 82, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 3.905, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 8.200000000000001, @@ -11831,18 +14209,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.496712201, "receivingTargets": 2.024984584, "receivingTouchdowns": 0.052906242, - "receivingTouchdowns40Plus": 0.003768896, - "receivingTouchdowns50Plus": 0.002462974, + "receivingTouchdowns40Plus": 0.004718375, + "receivingTouchdowns50Plus": 0.000146, "receivingYards": 12.64124547, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 8.446009503, "rushing2PtConversions": 0.0185, "rushingAttempts": 16.0833533, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.274, + "rushingGame200PlusYards": 0.00936, "rushingTouchdowns": 0.491885245, "rushingTouchdowns40Plus": 0.0339, "rushingTouchdowns50Plus": 0.0237, "rushingYards": 79.15480237, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.921536007, - "turnovers": 0.06162568, + "totalTurnovers": 0.06162568, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11852,8 +14241,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingYardsAfterCatch": 9, "receivingYardsPerReception": 2, "rushingAttempts": 22, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 1, "rushingYards": 141, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 6.409, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 14.8, @@ -11908,18 +14307,30 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.056282239, "receivingTargets": 3.749784491, "receivingTouchdowns": 0.136116924, - "receivingTouchdowns40Plus": 0.003270949, - "receivingTouchdowns50Plus": 0.002137565, + "receivingTouchdowns40Plus": 0.011941071, + "receivingTouchdowns50Plus": 0.000369, "receivingYards": 22.61358498, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.399049962, "rushing2PtConversions": 0.0252, "rushingAttempts": 14.6144003, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.175, + "rushingGame200PlusYards": 0.00599, "rushingTouchdowns": 0.479048979, "rushingTouchdowns40Plus": 0.0304, "rushingTouchdowns50Plus": 0.0213, "rushingYards": 63.32367804, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.332964524, - "turnovers": 0.069146325, + "totalTurnovers": 0.069146325, "usesPoints": false, }, "rawStats": PlayerStats { @@ -11929,11 +14340,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 12, "receivingYards": 65, "receivingYardsAfterCatch": 85, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 5.909, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushingAttempts": 7, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 43, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 6.143, - "turnovers": 1, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, "totalPoints": 14.3, @@ -11987,37 +14411,72 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "passingAttempts": 37.72790216, "passingCompletionPercentage": 0.642607204, "passingCompletions": 24.24422173, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.48368044, "passingInterceptions": 0.801332295, "passingTouchdowns": 1.891071155, "passingTouchdowns40Plus": 0.237830357, "passingTouchdowns50Plus": 0.155422138, "passingYards": 267.0193526, + "passingYards300To399": 0.287702377, + "passingYards400Plus": 0.038861048, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 53, "rushing2PtConversions": 0.0196, "rushingAttempts": 6.818157525, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0704, + "rushingGame200PlusYards": 0.0024, "rushingTouchdowns": 0.388522554, "rushingTouchdowns40Plus": 0.0133, "rushingTouchdowns50Plus": 0.0093, "rushingYards": 40.13711823, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 5.886798315, - "turnovers": 1.101222496, + "totalTurnovers": 1.101222496, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 31, "passingCompletionPercentage": 83.87, "passingCompletions": 26, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 5, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 2, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 297, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 29, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 59, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 56, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 5.6, - "turnovers": 2, + "teamPointsScored": 24, + "teamWin": 1, + "totalTurnovers": 2, "usesPoints": false, }, "totalPoints": 31.480000000000004, @@ -12069,11 +14528,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.85277015, "receivingTargets": 6.50613182, "receivingTouchdowns": 0.474795468, - "receivingTouchdowns40Plus": 0.014740396, - "receivingTouchdowns50Plus": 0.009632849, + "receivingTouchdowns40Plus": 0.130575174, + "receivingTouchdowns50Plus": 0.00404, "receivingYards": 56.07555981, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 14.55460815, - "turnovers": 0.027246467, + "totalTurnovers": 0.027246467, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12082,7 +14546,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 88, "receivingYardsAfterCatch": 18, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 22, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 16.8, @@ -12178,18 +14649,26 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.200174119, "receivingTargets": 6.948273381, "receivingTouchdowns": 0.331248495, - "receivingTouchdowns40Plus": 0.008758141, - "receivingTouchdowns50Plus": 0.005723445, + "receivingTouchdowns40Plus": 0.110980902, + "receivingTouchdowns50Plus": 0.00343, "receivingYards": 52.7135413, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.13688005, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.00037, "rushingAttempts": 0.21070912, + "rushingGame100To199Yards": 0.0000579, + "rushingGame200PlusYards": 0.00000198, "rushingTouchdowns": 0.0101, "rushingTouchdowns40Plus": 0.000387, "rushingTouchdowns50Plus": 0.000271, "rushingYards": 1.23632475, "rushingYardsPerAttempt": 5.867447746, - "turnovers": 0.060180474, + "totalTurnovers": 0.060180474, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12201,7 +14680,11 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 21, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 3.6, @@ -12255,19 +14738,34 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 5.26413457, "receivingTargets": 7.663050064, "receivingTouchdowns": 0.281564759, - "receivingTouchdowns40Plus": 0.00907269, - "receivingTouchdowns50Plus": 0.005929003, + "receivingTouchdowns40Plus": 0.146426434, + "receivingTouchdowns50Plus": 0.00453, "receivingYards": 58.62358563, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.1364147, - "turnovers": 0.032697448, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.032697448, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 6, "receivingTargets": 12, + "receivingTouchdowns40Plus": 1, "receivingYards": 117, "receivingYardsAfterCatch": 50, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 19.5, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 14.700000000000001, @@ -12322,18 +14820,29 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.886477096, "receivingTargets": 2.443187605, "receivingTouchdowns": 0.062522548, - "receivingTouchdowns40Plus": 0.00248279, - "receivingTouchdowns50Plus": 0.001622503, + "receivingTouchdowns40Plus": 0.005138483, + "receivingTouchdowns50Plus": 0.000159, "receivingYards": 13.64819931, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.234754845, "rushing2PtConversions": 0.0171, "rushingAttempts": 12.96383791, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.13, + "rushingGame200PlusYards": 0.00442, "rushingTouchdowns": 0.324752704, "rushingTouchdowns40Plus": 0.0266, "rushingTouchdowns50Plus": 0.0186, "rushingYards": 54.44811922, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.2, - "turnovers": 0.057576098, + "totalTurnovers": 0.057576098, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12341,9 +14850,16 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 1, "receivingYards": 6, "receivingYardsAfterCatch": 3, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, "rushingAttempts": 11, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 33, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 3, "usesPoints": false, }, @@ -12396,11 +14912,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.156211389, "receivingTargets": 5.289980241, "receivingTouchdowns": 0.306091074, - "receivingTouchdowns40Plus": 0.014755721, - "receivingTouchdowns50Plus": 0.009642864, + "receivingTouchdowns40Plus": 0.075012427, + "receivingTouchdowns50Plus": 0.00232, "receivingYards": 45.60579353, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 14.44953709, - "turnovers": 0.018779286, + "totalTurnovers": 0.018779286, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12409,7 +14929,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 3, "receivingYards": 41, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 13.667, + "teamPointsScored": 2, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 7.6000000000000005, @@ -12464,18 +14990,24 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.332940864, "receivingTargets": 4.745035594, "receivingTouchdowns": 0.228052887, - "receivingTouchdowns40Plus": 0.009040013, - "receivingTouchdowns50Plus": 0.005907648, + "receivingTouchdowns40Plus": 0.03983594, + "receivingTouchdowns50Plus": 0.00123, "receivingYards": 36.26926185, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.88205982, "rushing2PtConversions": 0.000237, "rushingAttempts": 0.130116594, + "rushingGame100To199Yards": 0.0000239, + "rushingGame200PlusYards": 8.17e-7, "rushingTouchdowns": 0.00493706, "rushingTouchdowns40Plus": 0.000239, "rushingTouchdowns50Plus": 0.000167, "rushingYards": 0.827898863, "rushingYardsPerAttempt": 6.36274619, - "turnovers": 0.023149339, + "totalTurnovers": 0.023149339, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12484,7 +15016,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTouchdowns": 1, "receivingYards": 33, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 8.25, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, "totalPoints": 11.3, @@ -12572,11 +15110,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.057752631, "defensiveForcedFumbles": 0.704494017, "defensiveFumbles": 0.457921111, + "defensiveHalfSacks": 6.450359744, "defensiveInterceptions": 0.756530038, "defensiveOver550YardsAllowed": 0.012345679, "defensivePointsAllowed": 16.18700171, "defensiveSacks": 3.225179872, "defensiveSafeties": 0.006713375, + "defensiveTacklesPer3Tackles": 18, + "defensiveTacklesPer5Tackles": 11, "defensiveTotalTackles": 56.92147188, "defensiveYardsAllowed": 319.9196988, "fumbleReturnTouchdown": 0.074627647, @@ -12585,6 +15126,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 46.30991136, "puntReturnTouchdown": 0.014705451, "puntReturnYards": 15.92615167, + "totalReturnTouchdowns": 0.135326473, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12610,9 +15152,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 26, "defensiveSoloTackles": 55, + "defensiveStuffs": 3, + "defensiveTacklesPer3Tackles": 24, + "defensiveTacklesPer5Tackles": 14, "defensiveTotalTackles": 72, "defensiveYardsAllowed": 416, "puntReturnYards": 12, + "teamWin": 1, "usesPoints": false, }, "totalPoints": 4, @@ -12664,18 +15210,27 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 1.430508025, "receivingTargets": 2.010993468, "receivingTouchdowns": 0.087617346, - "receivingTouchdowns40Plus": 0.00203386, - "receivingTouchdowns50Plus": 0.001329127, + "receivingTouchdowns40Plus": 0.003894473, + "receivingTouchdowns50Plus": 0.00012, "receivingYards": 10.31664543, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.211875259, "rushing2PtConversions": 0.0119, "rushingAttempts": 7.524211533, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.0485, + "rushingGame200PlusYards": 0.00166, "rushingTouchdowns": 0.255808687, "rushingTouchdowns40Plus": 0.0148, "rushingTouchdowns50Plus": 0.0103, "rushingYards": 33.33927074, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.430932144, - "turnovers": 0.01761722, + "totalTurnovers": 0.01761722, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12683,10 +15238,22 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 26, "receivingYardsAfterCatch": 24, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 5.2, + "receptionsPer5Receptions": 1, "rushingAttempts": 13, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 47, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.615, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 9.8, @@ -12814,11 +15381,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensiveBlockedKicks": 0.054505359, "defensiveForcedFumbles": 0.818923272, "defensiveFumbles": 0.532300127, + "defensiveHalfSacks": 5.397331739, "defensiveInterceptions": 0.885935186, "defensiveLessThan100YardsAllowed": 0.012345679, "defensivePointsAllowed": 17.19579507, "defensiveSacks": 2.69866587, "defensiveSafeties": 0.007276807, + "defensiveTacklesPer3Tackles": 20, + "defensiveTacklesPer5Tackles": 12, "defensiveTotalTackles": 61.7498317, "defensiveYardsAllowed": 315.9532589, "fumbleReturnTouchdown": 0.075505755, @@ -12827,6 +15397,7 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "kickoffReturnYards": 40.04734931, "puntReturnTouchdown": 0.011048471, "puntReturnYards": 13.66101217, + "totalReturnTouchdowns": 0.132523095, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12845,16 +15416,21 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "defensive500To549YardsAllowed": 0, "defensive7To13PointsAllowed": 0, "defensiveAssistedTackles": 14, + "defensiveHalfSacks": 4, "defensiveInterceptions": 1, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 19, "defensiveSacks": 2, "defensiveSoloTackles": 38, + "defensiveStuffs": 6, + "defensiveTacklesPer3Tackles": 17, + "defensiveTacklesPer5Tackles": 10, "defensiveTotalTackles": 52, "defensiveYardsAllowed": 204, "kickoffReturnYards": 42, "puntReturnYards": 23, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 6, @@ -12882,12 +15458,14 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul }, "pointBreakdown": PlayerStats { "madeExtraPoints": 1, + "madeFieldGoalsFrom50To59": 5, "usesPoints": true, }, "position": "K", "projectedPointBreakdown": PlayerStats { "madeExtraPoints": 2.402064325, "madeFieldGoalsFrom40To49": 2.198235484, + "madeFieldGoalsFrom50To59": 1.2055004, "madeFieldGoalsFromUnder40": 3.368198511, "missedExtraPoints": -0.105104619, "missedFieldGoals": -0.307437464, @@ -12899,15 +15477,18 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedFieldGoals": 2.220829252, "attemptedFieldGoalsFrom40To49": 0.697340385, "attemptedFieldGoalsFrom50Plus": 0.370878485, + "attemptedFieldGoalsFrom50To59": 0.370878485, "madeExtraPoints": 2.402064325, "madeFieldGoals": 1.913391788, "madeFieldGoalsFrom40To49": 0.549558871, "madeFieldGoalsFrom50Plus": 0.24110008, + "madeFieldGoalsFrom50To59": 0.24110008, "madeFieldGoalsFromUnder40": 1.122732837, "missedExtraPoints": 0.105104619, "missedFieldGoals": 0.307437464, "missedFieldGoalsFrom40To49": 0.147781514, "missedFieldGoalsFrom50Plus": 0.129778405, + "missedFieldGoalsFrom50To59": 0.129778405, "missedFieldGoalsFromUnder40": 0.029877544, "usesPoints": false, }, @@ -12915,9 +15496,25 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "attemptedExtraPoints": 1, "attemptedFieldGoals": 1, "attemptedFieldGoalsFrom50Plus": 1, + "attemptedFieldGoalsFrom50To59": 1, + "fieldGoalAttemptedYards": 57, + "fieldGoalAttemptedYardsPer10Yards": 5, + "fieldGoalAttemptedYardsPer20Yards": 2, + "fieldGoalAttemptedYardsPer25Yards": 2, + "fieldGoalAttemptedYardsPer50Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 11, + "fieldGoalMadeYards": 57, + "fieldGoalMadeYardsPer10Yards": 5, + "fieldGoalMadeYardsPer20Yards": 2, + "fieldGoalMadeYardsPer25Yards": 2, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 11, "madeExtraPoints": 1, "madeFieldGoals": 1, "madeFieldGoalsFrom50Plus": 1, + "madeFieldGoalsFrom50To59": 1, + "teamLoss": 1, + "teamPointsScored": 4, "usesPoints": false, }, "totalPoints": 6, @@ -12967,11 +15564,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.026756771, "receivingTargets": 4.062266532, "receivingTouchdowns": 0.329696789, - "receivingTouchdowns40Plus": 0.010123442, - "receivingTouchdowns50Plus": 0.00661567, + "receivingTouchdowns40Plus": 0.028069738, + "receivingTouchdowns50Plus": 0.000868, "receivingYards": 31.9010979, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.53969655, - "turnovers": 0.020467145, + "totalTurnovers": 0.020467145, "usesPoints": false, }, "rawStats": PlayerStats { @@ -12979,7 +15580,13 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 6, "receivingYards": 33, "receivingYardsAfterCatch": 22, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 6.6, + "receptionsPer5Receptions": 1, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.800000000000001, @@ -13029,11 +15636,15 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingReceptions": 3.25555737, "receivingTargets": 4.468082233, "receivingTouchdowns": 0.316053282, - "receivingTouchdowns40Plus": 0.010192878, - "receivingTouchdowns50Plus": 0.006661046, + "receivingTouchdowns40Plus": 0.036532202, + "receivingTouchdowns50Plus": 0.00113, "receivingYards": 35.1457679, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.79562235, - "turnovers": 0.017611449, + "totalTurnovers": 0.017611449, "usesPoints": false, }, "rawStats": PlayerStats { @@ -13041,7 +15652,12 @@ exports[`2022 season client integration tests getBoxscoreForWeek returns a popul "receivingTargets": 5, "receivingYards": 36, "receivingYardsAfterCatch": 26, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12, + "teamLoss": 1, "usesPoints": false, }, "totalPoints": 5.1, @@ -16965,18 +19581,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 28.74480399, "receivingTargets": 37.28763809, "receivingTouchdowns": 0.832684991, - "receivingTouchdowns40Plus": 0.050974518, - "receivingTouchdowns50Plus": 0.033311848, + "receivingTouchdowns40Plus": 0.081827516, + "receivingTouchdowns50Plus": 0.002530748, "receivingYards": 218.6998098, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 7.608324962, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.339815222, "rushingAttempts": 341.4767747, + "rushingAttemptsPer10Attempts": 34, + "rushingAttemptsPer5Attempts": 68, + "rushingGame100To199Yards": 5.458606966, + "rushingGame200PlusYards": 0.186281313, "rushingTouchdowns": 10.90479812, "rushingTouchdowns40Plus": 0.743116202, "rushingTouchdowns50Plus": 0.520181342, "rushingYards": 1451.016716, + "rushingYardsPer10Yards": 145, + "rushingYardsPer20Yards": 72, + "rushingYardsPer25Yards": 58, + "rushingYardsPer50Yards": 29, + "rushingYardsPer5Yards": 290, "rushingYardsPerAttempt": 4.249239842, - "turnovers": 1.253560431, + "totalTurnovers": 1.253560431, "usesPoints": false, }, "rawStats": PlayerStats { @@ -16991,13 +19623,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 41, "receivingYards": 398, "receivingYardsAfterCatch": 386, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 73, "receivingYardsPerReception": 12.06060606, + "receptionsPer5Receptions": 1, "rushingAttempts": 349, + "rushingAttemptsPer10Attempts": 29, + "rushingAttemptsPer5Attempts": 64, + "rushingGame100To199Yards": 8, + "rushingGame200PlusYards": 1, "rushingTouchdowns": 13, "rushingTouchdowns40Plus": 1, "rushingYards": 1538, + "rushingYardsPer100Yards": 10, + "rushingYardsPer10Yards": 146, + "rushingYardsPer20Yards": 70, + "rushingYardsPer25Yards": 56, + "rushingYardsPer50Yards": 24, + "rushingYardsPer5Yards": 301, "rushingYardsPerAttempt": 4.40687679, - "turnovers": 3, + "teamLoss": 9, + "teamPointsScored": 84, + "teamWin": 7, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -17037,11 +19688,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 68.49070968, "receivingTargets": 106.0769472, "receivingTouchdowns": 5.251278003, - "receivingTouchdowns40Plus": 0.21602901, - "receivingTouchdowns50Plus": 0.141174958, + "receivingTouchdowns40Plus": 1.800544089, + "receivingTouchdowns50Plus": 0.055686931, "receivingYards": 879.6698399, + "receivingYardsPer10Yards": 87, + "receivingYardsPer20Yards": 43, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 17, + "receivingYardsPer5Yards": 175, "receivingYardsPerReception": 12.84363739, - "turnovers": 0.360372953, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 13, + "totalTurnovers": 0.360372953, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17050,7 +19708,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 388, "receivingYardsAfterCatch": 80, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 13.85714286, + "receptionsPer5Receptions": 1, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 2, "usesPoints": false, }, }, @@ -17090,11 +19757,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 49.89384542, "receivingTargets": 76.49818187, "receivingTouchdowns": 6.025094685, - "receivingTouchdowns40Plus": 0.177838879, - "receivingTouchdowns50Plus": 0.116217707, + "receivingTouchdowns40Plus": 0.644478746, + "receivingTouchdowns50Plus": 0.019932332, "receivingYards": 604.6765346, + "receivingYardsPer10Yards": 60, + "receivingYardsPer20Yards": 30, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 120, "receivingYardsPerReception": 12.11926099, - "turnovers": 0.308395636, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.308395636, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17106,7 +19780,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 6, "receivingYards": 517, "receivingYardsAfterCatch": 193, + "receivingYardsPer10Yards": 46, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 100, "receivingYardsPerReception": 10.77083333, + "receptionsPer5Receptions": 2, + "teamLoss": 3, + "teamPointsScored": 36, + "teamWin": 12, "usesPoints": false, }, }, @@ -17147,11 +19830,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 73.64473464, "receivingTargets": 118.2191979, "receivingTouchdowns": 4.434936384, - "receivingTouchdowns40Plus": 0.175486936, - "receivingTouchdowns50Plus": 0.114680713, + "receivingTouchdowns40Plus": 2.081704311, + "receivingTouchdowns50Plus": 0.064382608, "receivingYards": 928.9061599, + "receivingYardsPer10Yards": 92, + "receivingYardsPer20Yards": 46, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 185, "receivingYardsPerReception": 12.61334112, - "turnovers": 0.438182154, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, + "totalTurnovers": 0.438182154, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17164,10 +19854,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 72, "receivingTargets": 117, "receivingTouchdowns": 4, + "receivingTouchdowns40Plus": 1, "receivingYards": 866, "receivingYardsAfterCatch": 231, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 79, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 167, "receivingYardsPerReception": 12.02777778, - "turnovers": 3, + "receptionsPer5Receptions": 8, + "teamLoss": 10, + "teamPointsScored": 26, + "teamWin": 7, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -17203,15 +19904,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.97273413, "attemptedFieldGoalsFrom40To49": 10.35343852, "attemptedFieldGoalsFrom50Plus": 5.5064466, + "attemptedFieldGoalsFrom50To59": 5.5064466, "madeExtraPoints": 42.27568405, "madeFieldGoals": 29.03695688, "madeFieldGoalsFrom40To49": 8.391911763, "madeFieldGoalsFrom50Plus": 3.703324587, + "madeFieldGoalsFrom50To59": 3.703324587, "madeFieldGoalsFromUnder40": 16.94172052, "missedExtraPoints": 0.862769062, "missedFieldGoals": 3.935777258, "missedFieldGoalsFrom40To49": 1.961526754, "missedFieldGoalsFrom50Plus": 1.803122013, + "missedFieldGoalsFrom50To59": 1.803122013, "missedFieldGoalsFromUnder40": 0.17112849, "usesPoints": false, }, @@ -17221,15 +19925,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 37, "attemptedFieldGoalsFrom40To49": 14, "attemptedFieldGoalsFrom50Plus": 5, + "attemptedFieldGoalsFrom50To59": 5, + "fieldGoalAttemptedYards": 1425, + "fieldGoalAttemptedYardsPer100Yards": 7, + "fieldGoalAttemptedYardsPer10Yards": 135, + "fieldGoalAttemptedYardsPer20Yards": 65, + "fieldGoalAttemptedYardsPer25Yards": 50, + "fieldGoalAttemptedYardsPer50Yards": 21, + "fieldGoalAttemptedYardsPer5Yards": 278, + "fieldGoalMadeYards": 1193, + "fieldGoalMadeYardsPer100Yards": 6, + "fieldGoalMadeYardsPer10Yards": 110, + "fieldGoalMadeYardsPer20Yards": 52, + "fieldGoalMadeYardsPer25Yards": 40, + "fieldGoalMadeYardsPer50Yards": 16, + "fieldGoalMadeYardsPer5Yards": 230, + "fieldGoalMissedYards": 232, + "fieldGoalMissedYardsPer10Yards": 21, + "fieldGoalMissedYardsPer20Yards": 10, + "fieldGoalMissedYardsPer25Yards": 7, + "fieldGoalMissedYardsPer50Yards": 2, + "fieldGoalMissedYardsPer5Yards": 45, "madeExtraPoints": 32, "madeFieldGoals": 32, "madeFieldGoalsFrom40To49": 10, "madeFieldGoalsFrom50Plus": 4, + "madeFieldGoalsFrom50To59": 4, "madeFieldGoalsFromUnder40": 18, "missedExtraPoints": 3, "missedFieldGoals": 5, "missedFieldGoalsFrom40To49": 4, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, + "teamLoss": 9, + "teamPointsScored": 128, + "teamWin": 8, "usesPoints": false, }, }, @@ -17265,15 +19995,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.89668775, "attemptedFieldGoalsFrom40To49": 10.32955995, "attemptedFieldGoalsFrom50Plus": 5.493746854, + "attemptedFieldGoalsFrom50To59": 5.493746854, "madeExtraPoints": 32.90575021, "madeFieldGoals": 29.02521935, "madeFieldGoalsFrom40To49": 8.40861271, "madeFieldGoalsFrom50Plus": 3.713959503, + "madeFieldGoalsFrom50To59": 3.713959503, "madeFieldGoalsFromUnder40": 16.90264713, "missedExtraPoints": 0.671545923, "missedFieldGoals": 3.871468404, "missedFieldGoalsFrom40To49": 1.920947243, "missedFieldGoalsFrom50Plus": 1.779787351, + "missedFieldGoalsFrom50To59": 1.779787351, "missedFieldGoalsFromUnder40": 0.170733809, "usesPoints": false, }, @@ -17283,18 +20016,44 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32, "attemptedFieldGoalsFrom40To49": 11, "attemptedFieldGoalsFrom50Plus": 9, + "attemptedFieldGoalsFrom50To59": 9, "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 1419, + "fieldGoalAttemptedYardsPer100Yards": 8, + "fieldGoalAttemptedYardsPer10Yards": 137, + "fieldGoalAttemptedYardsPer20Yards": 66, + "fieldGoalAttemptedYardsPer25Yards": 51, + "fieldGoalAttemptedYardsPer50Yards": 21, + "fieldGoalAttemptedYardsPer5Yards": 278, + "fieldGoalMadeYards": 1277, + "fieldGoalMadeYardsPer100Yards": 6, + "fieldGoalMadeYardsPer10Yards": 122, + "fieldGoalMadeYardsPer20Yards": 59, + "fieldGoalMadeYardsPer25Yards": 46, + "fieldGoalMadeYardsPer50Yards": 18, + "fieldGoalMadeYardsPer5Yards": 250, + "fieldGoalMissedYards": 142, + "fieldGoalMissedYardsPer10Yards": 12, + "fieldGoalMissedYardsPer20Yards": 5, + "fieldGoalMissedYardsPer25Yards": 4, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 27, "madeExtraPoints": 32, "madeFieldGoals": 29, "madeFieldGoalsFrom40To49": 10, "madeFieldGoalsFrom50Plus": 8, + "madeFieldGoalsFrom50To59": 8, "madeFieldGoalsFromUnder40": 11, "missedExtraPoints": 2, "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 7, + "teamPointsScored": 119, + "teamWin": 9, "usesPoints": false, }, }, @@ -17342,12 +20101,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.1180667, "defensiveForcedFumbles": 12.25140989, "defensiveFumbles": 7.963416426, + "defensiveHalfSacks": 77.75972332, "defensiveInterceptions": 13.66004512, "defensiveOver45PointsAllowed": 0.525773196, "defensiveOver550YardsAllowed": 0.209876543, "defensivePointsAllowed": 400.0996729, "defensiveSacks": 38.87986166, "defensiveSafeties": 0.119262539, + "defensiveTacklesPer3Tackles": 363, + "defensiveTacklesPer5Tackles": 218, "defensiveTotalTackles": 1090.549361, "defensiveYardsAllowed": 5850.134634, "fumbleReturnTouchdown": 1.324215841, @@ -17356,6 +20118,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 626.65, "puntReturnTouchdown": 0.23736, "puntReturnYards": 211.56, + "totalReturnTouchdowns": 2.351958887, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17377,12 +20140,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 13, "defensiveFumbles": 11, + "defensiveHalfSacks": 108, "defensiveInterceptions": 19, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 335, "defensiveSacks": 54, "defensiveSoloTackles": 729, + "defensiveStuffs": 52, + "defensiveTacklesPer3Tackles": 390, + "defensiveTacklesPer5Tackles": 230, "defensiveTotalTackles": 1182, "defensiveYardsAllowed": 5474, "fumbleReturnTouchdown": 5, @@ -17390,6 +20157,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 856, "puntReturnTouchdown": 1, "puntReturnYards": 418, + "teamLoss": 9, + "teamWin": 8, + "totalReturnTouchdowns": 8, "usesPoints": false, }, }, @@ -17429,18 +20199,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.901517254, "receivingTargets": 14.19866336, "receivingTouchdowns": 0.645770876, - "receivingTouchdowns40Plus": 0.039836428, - "receivingTouchdowns50Plus": 0.026033106, + "receivingTouchdowns40Plus": 0.035879627, + "receivingTouchdowns50Plus": 0.001109679, "receivingYards": 77.42550597, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 7.819559769, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.051928544, "rushingAttempts": 44.74602565, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.086575788, + "rushingGame200PlusYards": 0.0029545, "rushingTouchdowns": 1.795589043, "rushingTouchdowns40Plus": 0.08407755, "rushingTouchdowns50Plus": 0.058854285, "rushingYards": 183.4765136, + "rushingYardsPer10Yards": 18, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 36, "rushingYardsPerAttempt": 4.100397988, - "turnovers": 0.309568585, + "totalTurnovers": 0.309568585, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17453,12 +20238,28 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 185, "receivingYardsAfterCatch": 136, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 8.40909091, "rushingAttempts": 176, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 27, + "rushingGame100To199Yards": 2, "rushingTouchdowns": 5, "rushingYards": 860, + "rushingYardsPer100Yards": 2, + "rushingYardsPer10Yards": 79, + "rushingYardsPer20Yards": 35, + "rushingYardsPer25Yards": 27, + "rushingYardsPer50Yards": 10, + "rushingYardsPer5Yards": 165, "rushingYardsPerAttempt": 4.88636364, - "turnovers": 2, + "teamLoss": 8, + "teamPointsScored": 36, + "teamWin": 8, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -17505,11 +20306,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.050034672, "defensiveForcedFumbles": 15.22759826, "defensiveFumbles": 9.897938868, + "defensiveHalfSacks": 89.56679043, "defensiveInterceptions": 14.47488054, "defensiveOver550YardsAllowed": 0.419753086, "defensivePointsAllowed": 362.6511578, "defensiveSacks": 44.78339521, "defensiveSafeties": 0.125786664, + "defensiveTacklesPer3Tackles": 338, + "defensiveTacklesPer5Tackles": 203, "defensiveTotalTackles": 1015.783605, "defensiveYardsAllowed": 5799.085587, "fumbleReturnTouchdown": 1.260755406, @@ -17518,6 +20322,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 573.8, "puntReturnTouchdown": 0.187824, "puntReturnYards": 172, + "totalReturnTouchdowns": 2.238736398, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17539,17 +20344,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 12, "defensiveFumbles": 10, + "defensiveHalfSacks": 88, "defensiveInterceptions": 10, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 358, "defensiveSacks": 44, "defensiveSoloTackles": 730, + "defensiveStuffs": 83, + "defensiveTacklesPer3Tackles": 367, + "defensiveTacklesPer5Tackles": 217, "defensiveTotalTackles": 1119, "defensiveYardsAllowed": 5513, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 595, "puntReturnYards": 391, + "teamLoss": 9, + "teamWin": 8, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -17587,20 +20399,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 566.7152587, "passingCompletionPercentage": 0.65508608, "passingCompletions": 371.2472773, + "passingCompletionsPer10Completions": 37, + "passingCompletionsPer5Completions": 74, "passingIncompletions": 195.4679814, "passingInterceptions": 13.15241396, "passingTouchdowns": 25.58928396, "passingTouchdowns40Plus": 3.528185932, "passingTouchdowns50Plus": 2.305669506, "passingYards": 4100.779877, + "passingYards300To399": 3.942125794, + "passingYards400Plus": 0.532477831, + "passingYardsPer100Yards": 41, + "passingYardsPer10Yards": 410, + "passingYardsPer20Yards": 205, + "passingYardsPer25Yards": 164, + "passingYardsPer50Yards": 82, + "passingYardsPer5Yards": 820, "rushing2PtConversions": 0.177078559, "rushingAttempts": 96.77189245, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 19, + "rushingGame100To199Yards": 0.660254276, + "rushingGame200PlusYards": 0.022531945, "rushingTouchdowns": 5.206314921, "rushingTouchdowns40Plus": 0.187402123, "rushingTouchdowns50Plus": 0.131181486, "rushingYards": 491.8204942, + "rushingYardsPer10Yards": 49, + "rushingYardsPer20Yards": 24, + "rushingYardsPer25Yards": 19, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 98, "rushingYardsPerAttempt": 5.082265953, - "turnovers": 18.14739188, + "totalTurnovers": 18.14739188, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17610,16 +20441,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 390, "passingCompletionPercentage": 0.66410256, "passingCompletions": 259, + "passingCompletionsPer10Completions": 22, + "passingCompletionsPer5Completions": 48, "passingIncompletions": 131, + "passingIncompletionsPer10Incompletions": 9, + "passingIncompletionsPer5Incompletions": 21, "passingInterceptions": 7, "passingTouchdowns": 14, "passingYards": 2368, + "passingYards300To399": 2, + "passingYardsPer100Yards": 19, + "passingYardsPer10Yards": 232, + "passingYardsPer20Yards": 113, + "passingYardsPer25Yards": 91, + "passingYardsPer50Yards": 43, + "passingYardsPer5Yards": 469, "rushing2PtConversions": 1, "rushingAttempts": 67, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 3, "rushingYards": 418, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 37, + "rushingYardsPer20Yards": 17, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 80, "rushingYardsPerAttempt": 6.23880597, - "turnovers": 9, + "teamLoss": 8, + "teamPointsScored": 104, + "teamWin": 3, + "totalTurnovers": 9, "usesPoints": false, }, }, @@ -17660,11 +20514,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 49.62863587, "receivingTargets": 87.21307807, "receivingTouchdowns": 5.520430032, - "receivingTouchdowns40Plus": 0.205910949, - "receivingTouchdowns50Plus": 0.134562805, + "receivingTouchdowns40Plus": 1.382012596, + "receivingTouchdowns50Plus": 0.042742658, "receivingYards": 737.2640222, + "receivingYardsPer10Yards": 73, + "receivingYardsPer20Yards": 36, + "receivingYardsPer25Yards": 29, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 147, "receivingYardsPerReception": 14.85561731, - "turnovers": 0.249879459, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.249879459, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17675,7 +20536,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 424, "receivingYardsAfterCatch": 107, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 10.87179487, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamPointsScored": 24, + "teamWin": 10, "usesPoints": false, }, }, @@ -17713,20 +20583,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 579.3520944, "passingCompletionPercentage": 0.66556249, "passingCompletions": 385.5950227, + "passingCompletionsPer10Completions": 38, + "passingCompletionsPer5Completions": 77, "passingIncompletions": 193.7570717, "passingInterceptions": 12.48814791, "passingTouchdowns": 27.17658492, "passingTouchdowns40Plus": 3.676005364, "passingTouchdowns50Plus": 2.402269506, "passingYards": 4191.850114, + "passingYards300To399": 4.299589335, + "passingYards400Plus": 0.580761783, + "passingYardsPer100Yards": 41, + "passingYardsPer10Yards": 419, + "passingYardsPer20Yards": 209, + "passingYardsPer25Yards": 167, + "passingYardsPer50Yards": 83, + "passingYardsPer5Yards": 838, "rushing2PtConversions": 0.036609082, "rushingAttempts": 32.22742349, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.027713123, + "rushingGame200PlusYards": 0.000945743, "rushingTouchdowns": 1.001463037, "rushingTouchdowns40Plus": 0.060203184, "rushingTouchdowns50Plus": 0.042142229, "rushingYards": 101.8066225, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 3.159005949, - "turnovers": 17.31640125, + "totalTurnovers": 17.31640125, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17734,16 +20623,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 502, "passingCompletionPercentage": 0.60756972, "passingCompletions": 305, + "passingCompletionsPer10Completions": 25, + "passingCompletionsPer5Completions": 57, "passingIncompletions": 197, + "passingIncompletionsPer10Incompletions": 13, + "passingIncompletionsPer5Incompletions": 32, "passingInterceptions": 14, "passingTouchdowns": 24, "passingTouchdowns40Plus": 4, "passingTouchdowns50Plus": 1, "passingYards": 3522, + "passingYards300To399": 2, + "passingYardsPer100Yards": 28, + "passingYardsPer10Yards": 346, + "passingYardsPer20Yards": 169, + "passingYardsPer25Yards": 134, + "passingYardsPer50Yards": 63, + "passingYardsPer5Yards": 699, "rushingAttempts": 24, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 102, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.25, - "turnovers": 14, + "teamLoss": 9, + "teamPointsScored": 144, + "teamWin": 6, + "totalTurnovers": 14, "usesPoints": false, }, }, @@ -17784,18 +20692,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 59.83086679, "receivingTargets": 105.9187821, "receivingTouchdowns": 3.967809611, - "receivingTouchdowns40Plus": 0.200336313, - "receivingTouchdowns50Plus": 0.130919781, + "receivingTouchdowns40Plus": 1.709980213, + "receivingTouchdowns50Plus": 0.052885986, "receivingYards": 862.5294141, + "receivingYardsPer10Yards": 86, + "receivingYardsPer20Yards": 43, + "receivingYardsPer25Yards": 34, + "receivingYardsPer50Yards": 17, + "receivingYardsPer5Yards": 172, "receivingYardsPerReception": 14.41612767, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.033610754, "rushingAttempts": 11.71678418, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.012669043, + "rushingGame200PlusYards": 0.000432346, "rushingTouchdowns": 0.610605108, "rushingTouchdowns40Plus": 0.021624842, "rushingTouchdowns50Plus": 0.015137389, "rushingYards": 71.36768605, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 6.091064321, - "turnovers": 0.478584702, + "totalTurnovers": 0.478584702, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17813,11 +20737,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 451, "receivingYardsAfterCatch": 143, + "receivingYardsPer10Yards": 39, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 86, "receivingYardsPerReception": 9.80434783, + "receptionsPer5Receptions": 4, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 59, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6.55555556, - "turnovers": 1, + "teamLoss": 13, + "teamPointsScored": 12, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -17858,18 +20796,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 45.12077546, "receivingTargets": 87.23421786, "receivingTouchdowns": 6.216834663, - "receivingTouchdowns40Plus": 0.454149825, - "receivingTouchdowns50Plus": 0.296786911, + "receivingTouchdowns40Plus": 1.806825505, + "receivingTouchdowns50Plus": 0.055881201, "receivingYards": 881.3629399, + "receivingYardsPer10Yards": 88, + "receivingYardsPer20Yards": 44, + "receivingYardsPer25Yards": 35, + "receivingYardsPer50Yards": 17, + "receivingYardsPer5Yards": 176, "receivingYardsPerReception": 19.53341739, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, "rushing2PtConversions": 0.00354113, "rushingAttempts": 1.784783634, + "rushingGame100To199Yards": 0.000226212, + "rushingGame200PlusYards": 0.00000772, "rushingTouchdowns": 0.087013608, "rushingTouchdowns40Plus": 0.003276317, "rushingTouchdowns50Plus": 0.002293422, "rushingYards": 10.86719695, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.088803559, - "turnovers": 0.290468318, + "totalTurnovers": 0.290468318, "usesPoints": false, }, "rawStats": PlayerStats { @@ -17878,12 +20827,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42, "receivingTargets": 81, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 687, "receivingYardsAfterCatch": 149, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 63, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 20, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 132, "receivingYardsPerReception": 16.35714286, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": -3, "rushingYardsPerAttempt": -3, + "teamLoss": 3, + "teamPointsScored": 12, + "teamWin": 14, "usesPoints": false, }, }, @@ -17919,15 +20879,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.18268332, "attemptedFieldGoalsFrom40To49": 10.10536256, "attemptedFieldGoalsFrom50Plus": 5.374508115, + "attemptedFieldGoalsFrom50To59": 5.374508115, "madeExtraPoints": 28.5971067, "madeFieldGoals": 28.44900746, "madeFieldGoalsFrom40To49": 8.261206213, "madeFieldGoalsFrom50Plus": 3.652016726, + "madeFieldGoalsFrom50To59": 3.652016726, "madeFieldGoalsFromUnder40": 16.53578452, "missedExtraPoints": 0.583614422, "missedFieldGoals": 3.733675865, "missedFieldGoalsFrom40To49": 1.84415635, "missedFieldGoalsFrom50Plus": 1.722491389, + "missedFieldGoalsFrom50To59": 1.722491389, "missedFieldGoalsFromUnder40": 0.167028126, "usesPoints": false, }, @@ -17937,17 +20900,43 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 37, "attemptedFieldGoalsFrom40To49": 10, "attemptedFieldGoalsFrom50Plus": 11, + "attemptedFieldGoalsFrom50To59": 10, "attemptedFieldGoalsFrom60Plus": 1, + "fieldGoalAttemptedYards": 1422, + "fieldGoalAttemptedYardsPer100Yards": 6, + "fieldGoalAttemptedYardsPer10Yards": 135, + "fieldGoalAttemptedYardsPer20Yards": 63, + "fieldGoalAttemptedYardsPer25Yards": 49, + "fieldGoalAttemptedYardsPer50Yards": 20, + "fieldGoalAttemptedYardsPer5Yards": 277, + "fieldGoalMadeYards": 1218, + "fieldGoalMadeYardsPer100Yards": 5, + "fieldGoalMadeYardsPer10Yards": 114, + "fieldGoalMadeYardsPer20Yards": 54, + "fieldGoalMadeYardsPer25Yards": 41, + "fieldGoalMadeYardsPer50Yards": 15, + "fieldGoalMadeYardsPer5Yards": 237, + "fieldGoalMissedYards": 204, + "fieldGoalMissedYardsPer10Yards": 19, + "fieldGoalMissedYardsPer20Yards": 8, + "fieldGoalMissedYardsPer25Yards": 7, + "fieldGoalMissedYardsPer50Yards": 3, + "fieldGoalMissedYardsPer5Yards": 39, "madeExtraPoints": 33, "madeFieldGoals": 32, "madeFieldGoalsFrom40To49": 9, "madeFieldGoalsFrom50Plus": 7, + "madeFieldGoalsFrom50To59": 7, "madeFieldGoalsFromUnder40": 16, "missedExtraPoints": 2, "missedFieldGoals": 5, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 4, + "missedFieldGoalsFrom50To59": 3, "missedFieldGoalsFrom60Plus": 1, + "teamLoss": 10, + "teamPointsScored": 129, + "teamWin": 7, "usesPoints": false, }, }, @@ -17988,11 +20977,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 56.61062815, "receivingTargets": 92.14821579, "receivingTouchdowns": 4.72551826, - "receivingTouchdowns40Plus": 0.188617398, - "receivingTouchdowns50Plus": 0.123261469, + "receivingTouchdowns40Plus": 1.11808568, + "receivingTouchdowns50Plus": 0.034579969, "receivingYards": 738.7667701, + "receivingYardsPer10Yards": 73, + "receivingYardsPer20Yards": 36, + "receivingYardsPer25Yards": 29, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 147, "receivingYardsPerReception": 13.04996596, - "turnovers": 0.33683015, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.33683015, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18002,12 +20998,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35, "receivingTargets": 61, "receivingTouchdowns": 7, + "receivingTouchdowns40Plus": 1, "receivingYards": 523, "receivingYardsAfterCatch": 137, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 100, "receivingYardsPerReception": 14.94285714, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": -7, "rushingYardsPerAttempt": -3.5, + "teamLoss": 7, + "teamPointsScored": 44, + "teamWin": 5, "usesPoints": false, }, }, @@ -18054,12 +21061,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.023353881, "defensiveForcedFumbles": 12.2519242, "defensiveFumbles": 7.96375073, + "defensiveHalfSacks": 86.55624979, "defensiveInterceptions": 14.17967404, "defensiveOver45PointsAllowed": 0.350515464, "defensiveOver550YardsAllowed": 0.209876543, "defensivePointsAllowed": 350.9383664, "defensiveSacks": 43.2781249, "defensiveSafeties": 0.120641939, + "defensiveTacklesPer3Tackles": 335, + "defensiveTacklesPer5Tackles": 201, "defensiveTotalTackles": 1007.92127, "defensiveYardsAllowed": 5726.37418, "fumbleReturnTouchdown": 1.319674104, @@ -18068,6 +21078,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 787.2684932, "puntReturnTouchdown": 0.249992675, "puntReturnYards": 270.7445783, + "totalReturnTouchdowns": 2.372082358, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18089,17 +21100,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 13, "defensiveFumbles": 7, + "defensiveHalfSacks": 96, "defensiveInterceptions": 7, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 321, "defensiveSacks": 48, "defensiveSoloTackles": 714, + "defensiveStuffs": 76, + "defensiveTacklesPer3Tackles": 369, + "defensiveTacklesPer5Tackles": 218, "defensiveTotalTackles": 1120, "defensiveYardsAllowed": 5352, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 595, "puntReturnYards": 243, + "teamLoss": 10, + "teamWin": 7, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -18146,11 +21164,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.083236063, "defensiveForcedFumbles": 14.6906871, "defensiveFumbles": 9.548946616, + "defensiveHalfSacks": 84.56755223, "defensiveInterceptions": 12.75365934, "defensiveOver45PointsAllowed": 0.523076923, "defensivePointsAllowed": 384.7158384, "defensiveSacks": 42.28377612, "defensiveSafeties": 0.127056646, + "defensiveTacklesPer3Tackles": 342, + "defensiveTacklesPer5Tackles": 205, "defensiveTotalTackles": 1027.279745, "defensiveYardsAllowed": 5838.400794, "fumbleReturnTouchdown": 1.26018844, @@ -18159,6 +21180,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 690.1804878, "puntReturnTouchdown": 0.266005818, "puntReturnYards": 326.0181818, + "totalReturnTouchdowns": 2.309560389, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18180,17 +21202,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 3, "defensiveForcedFumbles": 9, "defensiveFumbles": 3, + "defensiveHalfSacks": 80, "defensiveInterceptions": 20, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 1, "defensivePointsAllowed": 340, "defensiveSacks": 40, "defensiveSoloTackles": 670, + "defensiveStuffs": 74, + "defensiveTacklesPer3Tackles": 364, + "defensiveTacklesPer5Tackles": 216, "defensiveTotalTackles": 1110, "defensiveYardsAllowed": 5617, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 510, "puntReturnYards": 160, + "teamLoss": 8, + "teamWin": 9, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -18231,11 +21260,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.97356238, "receivingTargets": 21.42158448, "receivingTouchdowns": 1.474936343, - "receivingTouchdowns40Plus": 0.091017771, - "receivingTouchdowns50Plus": 0.059480114, + "receivingTouchdowns40Plus": 0.057412703, + "receivingTouchdowns50Plus": 0.001775651, "receivingYards": 153.9067163, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 10.2785638, - "turnovers": 0.096443302, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.096443302, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18244,7 +21280,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 411, "receivingYardsAfterCatch": 155, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 12.45454545, + "receptionsPer5Receptions": 2, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 2, "usesPoints": false, }, }, @@ -18284,11 +21329,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 75.30828319, "receivingTargets": 118.2191979, "receivingTouchdowns": 4.466818354, - "receivingTouchdowns40Plus": 0.197902503, - "receivingTouchdowns50Plus": 0.129329286, + "receivingTouchdowns40Plus": 2.254192004, + "receivingTouchdowns50Plus": 0.069717278, "receivingYards": 958.3669543, + "receivingYardsPer10Yards": 95, + "receivingYardsPer20Yards": 47, + "receivingYardsPer25Yards": 38, + "receivingYardsPer50Yards": 19, + "receivingYardsPer5Yards": 191, "receivingYardsPerReception": 12.72591691, - "turnovers": 0.407391981, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, + "totalTurnovers": 0.407391981, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18297,7 +21349,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 356, "receivingYardsAfterCatch": 126, + "receivingYardsPer10Yards": 29, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 12.71428571, + "receptionsPer5Receptions": 2, + "teamLoss": 5, + "teamPointsScored": 12, + "teamWin": 5, "usesPoints": false, }, }, @@ -18337,18 +21398,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.85456675, "receivingTargets": 49.84812449, "receivingTouchdowns": 2.15678955, - "receivingTouchdowns40Plus": 0.045540583, - "receivingTouchdowns50Plus": 0.029760771, + "receivingTouchdowns40Plus": 0.114630646, + "receivingTouchdowns50Plus": 0.003545278, "receivingYards": 283.5770021, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 7.69448747, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.243733334, "rushingAttempts": 171.748627, + "rushingAttemptsPer10Attempts": 17, + "rushingAttemptsPer5Attempts": 34, + "rushingGame100To199Yards": 1.553574481, + "rushingGame200PlusYards": 0.053017537, "rushingTouchdowns": 5.989097883, "rushingTouchdowns40Plus": 0.34453778, "rushingTouchdowns50Plus": 0.241176446, "rushingYards": 774.7515235, + "rushingYardsPer10Yards": 77, + "rushingYardsPer20Yards": 38, + "rushingYardsPer25Yards": 30, + "rushingYardsPer50Yards": 15, + "rushingYardsPer5Yards": 154, "rushingYardsPerAttempt": 4.510961962, - "turnovers": 0.82644967, + "totalTurnovers": 0.82644967, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18357,11 +21434,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 151, "receivingYardsAfterCatch": 144, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 8.88235294, + "receptionsPer5Receptions": 1, "rushingAttempts": 71, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 9, "rushingTouchdowns": 3, "rushingYards": 302, + "rushingYardsPer10Yards": 27, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 57, "rushingYardsPerAttempt": 4.25352113, + "teamLoss": 2, + "teamPointsScored": 36, + "teamWin": 8, "usesPoints": false, }, }, @@ -18402,18 +21494,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 76.25145972, "receivingTargets": 128.7589858, "receivingTouchdowns": 3.945645566, - "receivingTouchdowns40Plus": 0.232319284, - "receivingTouchdowns50Plus": 0.151820652, + "receivingTouchdowns40Plus": 3.093021051, + "receivingTouchdowns50Plus": 0.095660445, "receivingYards": 1086.621578, + "receivingYardsPer10Yards": 108, + "receivingYardsPer20Yards": 54, + "receivingYardsPer25Yards": 43, + "receivingYardsPer50Yards": 21, + "receivingYardsPer5Yards": 217, "receivingYardsPerReception": 14.25050198, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, "rushing2PtConversions": 0.00926362, "rushingAttempts": 4.115206606, + "rushingGame100To199Yards": 0.00139926, + "rushingGame200PlusYards": 0.0000478, "rushingTouchdowns": 0.217873781, "rushingTouchdowns40Plus": 0.007563852, "rushingTouchdowns50Plus": 0.005294696, "rushingYards": 24.70018985, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.002174912, - "turnovers": 0.374403385, + "totalTurnovers": 0.374403385, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18424,10 +21528,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 493, "receivingYardsAfterCatch": 164, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 12.325, + "receptionsPer5Receptions": 3, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 9, + "teamPointsScored": 12, + "teamWin": 3, "usesPoints": false, }, }, @@ -18467,11 +21580,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52.52086846, "receivingTargets": 82.62460549, "receivingTouchdowns": 4.264440266, - "receivingTouchdowns40Plus": 0.107136879, - "receivingTouchdowns50Plus": 0.07001395, + "receivingTouchdowns40Plus": 0.56889151, + "receivingTouchdowns50Plus": 0.017594583, "receivingYards": 578.2134443, + "receivingYardsPer10Yards": 57, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 115, "receivingYardsPerReception": 11.00921331, - "turnovers": 0.265809986, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.265809986, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18480,7 +21600,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 5, "receivingYards": 362, "receivingYardsAfterCatch": 97, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 67, "receivingYardsPerReception": 11.3125, + "receptionsPer5Receptions": 1, + "teamLoss": 8, + "teamPointsScored": 30, + "teamWin": 9, "usesPoints": false, }, }, @@ -18528,11 +21657,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.233319053, "defensiveForcedFumbles": 14.82349691, "defensiveFumbles": 9.635272991, + "defensiveHalfSacks": 82.85815983, "defensiveInterceptions": 13.12734068, "defensiveOver45PointsAllowed": 0.175257732, "defensivePointsAllowed": 381.911247, "defensiveSacks": 41.42907992, "defensiveSafeties": 0.131139445, + "defensiveTacklesPer3Tackles": 341, + "defensiveTacklesPer5Tackles": 204, "defensiveTotalTackles": 1023.197239, "defensiveYardsAllowed": 5842.331874, "fumbleReturnTouchdown": 1.272250645, @@ -18541,6 +21673,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 680.104, "puntReturnTouchdown": 0.2224992, "puntReturnYards": 209.152, + "totalReturnTouchdowns": 2.316416431, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18563,17 +21696,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 2, "defensiveForcedFumbles": 13, "defensiveFumbles": 6, + "defensiveHalfSacks": 80, "defensiveInterceptions": 8, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 383, "defensiveSacks": 40, "defensiveSoloTackles": 726, + "defensiveStuffs": 72, + "defensiveTacklesPer3Tackles": 368, + "defensiveTacklesPer5Tackles": 216, "defensiveTotalTackles": 1118, "defensiveYardsAllowed": 5743, "interceptionReturnTouchdown": 2, "kickoffReturnYards": 549, "puntReturnYards": 111, + "teamLoss": 8, + "teamWin": 9, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -18614,18 +21754,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 68.00963959, "receivingTargets": 115.4691821, "receivingTouchdowns": 5.246191409, - "receivingTouchdowns40Plus": 0.197138426, - "receivingTouchdowns50Plus": 0.128829961, + "receivingTouchdowns40Plus": 2.121053651, + "receivingTouchdowns50Plus": 0.065599597, "receivingYards": 935.5289227, + "receivingYardsPer10Yards": 93, + "receivingYardsPer20Yards": 46, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 187, "receivingYardsPerReception": 13.75582827, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 13, "rushing2PtConversions": 0.018243573, "rushingAttempts": 5.954311422, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.003602573, + "rushingGame200PlusYards": 0.000122942, "rushingTouchdowns": 0.256590054, "rushingTouchdowns40Plus": 0.010955166, "rushingTouchdowns50Plus": 0.007668616, "rushingYards": 38.72189464, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 6.5031692, - "turnovers": 0.524362669, + "totalTurnovers": 0.524362669, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18638,10 +21792,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 446, "receivingYardsAfterCatch": 111, + "receivingYardsPer10Yards": 39, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 84, "receivingYardsPerReception": 12.05405405, + "receptionsPer5Receptions": 2, "rushingAttempts": 5, "rushingYards": 5, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -18677,15 +21842,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31.72154959, "attemptedFieldGoalsFrom40To49": 9.960566572, "attemptedFieldGoalsFrom50Plus": 5.297498782, + "attemptedFieldGoalsFrom50To59": 5.297498782, "madeExtraPoints": 40.42565019, "madeFieldGoals": 26.83876359, "madeFieldGoalsFrom40To49": 7.695389652, "madeFieldGoalsFrom50Plus": 3.361716097, + "madeFieldGoalsFrom50To59": 3.361716097, "madeFieldGoalsFromUnder40": 15.78165784, "missedExtraPoints": 2.462394129, "missedFieldGoals": 4.882786, "missedFieldGoalsFrom40To49": 2.26517692, "missedFieldGoalsFrom50Plus": 1.935782684, + "missedFieldGoalsFrom50To59": 1.935782684, "missedFieldGoalsFromUnder40": 0.681826395, "usesPoints": false, }, @@ -18695,17 +21863,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32, "attemptedFieldGoalsFrom40To49": 11, "attemptedFieldGoalsFrom50Plus": 2, + "attemptedFieldGoalsFrom50To59": 2, "defensiveSoloTackles": 2, "defensiveTotalTackles": 2, + "fieldGoalAttemptedYards": 1037, + "fieldGoalAttemptedYardsPer100Yards": 3, + "fieldGoalAttemptedYardsPer10Yards": 96, + "fieldGoalAttemptedYardsPer20Yards": 45, + "fieldGoalAttemptedYardsPer25Yards": 35, + "fieldGoalAttemptedYardsPer50Yards": 13, + "fieldGoalAttemptedYardsPer5Yards": 200, + "fieldGoalMadeYards": 911, + "fieldGoalMadeYardsPer100Yards": 2, + "fieldGoalMadeYardsPer10Yards": 84, + "fieldGoalMadeYardsPer20Yards": 39, + "fieldGoalMadeYardsPer25Yards": 31, + "fieldGoalMadeYardsPer50Yards": 11, + "fieldGoalMadeYardsPer5Yards": 176, + "fieldGoalMissedYards": 126, + "fieldGoalMissedYardsPer10Yards": 12, + "fieldGoalMissedYardsPer20Yards": 6, + "fieldGoalMissedYardsPer25Yards": 3, + "fieldGoalMissedYardsPer5Yards": 24, "madeExtraPoints": 50, "madeFieldGoals": 27, "madeFieldGoalsFrom40To49": 7, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 18, "missedExtraPoints": 1, "missedFieldGoals": 5, "missedFieldGoalsFrom40To49": 4, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 4, + "teamPointsScored": 131, + "teamWin": 13, "usesPoints": false, }, }, @@ -18745,11 +21937,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 59.45307464, "receivingTargets": 84.10435034, "receivingTouchdowns": 3.231458766, - "receivingTouchdowns40Plus": 0.125850114, - "receivingTouchdowns50Plus": 0.082243049, + "receivingTouchdowns40Plus": 0.666247041, + "receivingTouchdowns50Plus": 0.020605579, "receivingYards": 612.2479818, + "receivingYardsPer10Yards": 61, + "receivingYardsPer20Yards": 30, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 122, "receivingYardsPerReception": 10.29800369, - "turnovers": 0.258747741, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.258747741, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18758,7 +21957,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 486, "receivingYardsAfterCatch": 221, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 9.72, + "receptionsPer5Receptions": 3, + "teamLoss": 8, + "teamPointsScored": 24, + "teamWin": 9, "usesPoints": false, }, }, @@ -18794,15 +22002,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 35.5515939, "attemptedFieldGoalsFrom40To49": 11.16320048, "attemptedFieldGoalsFrom50Plus": 5.937116181, + "attemptedFieldGoalsFrom50To59": 5.937116181, "madeExtraPoints": 44.32038706, "madeFieldGoals": 30.63005757, "madeFieldGoalsFrom40To49": 8.797476798, "madeFieldGoalsFrom50Plus": 3.859590786, + "madeFieldGoalsFrom50To59": 3.859590786, "madeFieldGoalsFromUnder40": 17.97298998, "missedExtraPoints": 1.939280864, "missedFieldGoals": 4.921536335, "missedFieldGoalsFrom40To49": 2.365723687, "missedFieldGoalsFrom50Plus": 2.077525395, + "missedFieldGoalsFrom50To59": 2.077525395, "missedFieldGoalsFromUnder40": 0.478287254, "usesPoints": false, }, @@ -18812,18 +22023,44 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 30, "attemptedFieldGoalsFrom40To49": 4, "attemptedFieldGoalsFrom50Plus": 9, + "attemptedFieldGoalsFrom50To59": 8, "attemptedFieldGoalsFrom60Plus": 1, "defensiveAssistedTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 1165, + "fieldGoalAttemptedYardsPer100Yards": 4, + "fieldGoalAttemptedYardsPer10Yards": 110, + "fieldGoalAttemptedYardsPer20Yards": 52, + "fieldGoalAttemptedYardsPer25Yards": 38, + "fieldGoalAttemptedYardsPer50Yards": 15, + "fieldGoalAttemptedYardsPer5Yards": 228, + "fieldGoalMadeYards": 1053, + "fieldGoalMadeYardsPer100Yards": 3, + "fieldGoalMadeYardsPer10Yards": 98, + "fieldGoalMadeYardsPer20Yards": 46, + "fieldGoalMadeYardsPer25Yards": 34, + "fieldGoalMadeYardsPer50Yards": 13, + "fieldGoalMadeYardsPer5Yards": 205, + "fieldGoalMissedYards": 112, + "fieldGoalMissedYardsPer10Yards": 11, + "fieldGoalMissedYardsPer20Yards": 5, + "fieldGoalMissedYardsPer25Yards": 4, + "fieldGoalMissedYardsPer50Yards": 2, + "fieldGoalMissedYardsPer5Yards": 22, "madeExtraPoints": 31, "madeFieldGoals": 28, "madeFieldGoalsFrom40To49": 4, "madeFieldGoalsFrom50Plus": 7, + "madeFieldGoalsFrom50To59": 7, "madeFieldGoalsFromUnder40": 17, "missedExtraPoints": 1, "missedFieldGoals": 2, "missedFieldGoalsFrom50Plus": 2, + "missedFieldGoalsFrom50To59": 1, "missedFieldGoalsFrom60Plus": 1, + "teamLoss": 12, + "teamPointsScored": 115, + "teamWin": 5, "usesPoints": false, }, }, @@ -18864,18 +22101,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 73.76147629, "receivingTargets": 110.0800875, "receivingTouchdowns": 3.819560223, - "receivingTouchdowns40Plus": 0.175060384, - "receivingTouchdowns50Plus": 0.114401961, + "receivingTouchdowns40Plus": 1.731347823, + "receivingTouchdowns50Plus": 0.05354684, "receivingYards": 866.7652802, + "receivingYardsPer10Yards": 86, + "receivingYardsPer20Yards": 43, + "receivingYardsPer25Yards": 34, + "receivingYardsPer50Yards": 17, + "receivingYardsPer5Yards": 173, "receivingYardsPerReception": 11.75092099, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, "rushing2PtConversions": 0.009594028, "rushingAttempts": 3.938653963, + "rushingGame100To199Yards": 0.00119824, + "rushingGame200PlusYards": 0.0000409, "rushingTouchdowns": 0.189968558, "rushingTouchdowns40Plus": 0.007238654, "rushingTouchdowns50Plus": 0.005067058, "rushingYards": 22.96664151, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.831088927, - "turnovers": 0.553825376, + "totalTurnovers": 0.553825376, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18887,12 +22136,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 171, "receivingYardsAfterCatch": 108, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 10.6875, "rushingAttempts": 7, "rushingTouchdowns": 1, "rushingYards": 82, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 11.71428571, - "turnovers": 1, + "teamPointsScored": 18, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -18932,11 +22192,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 51.53448937, "receivingTargets": 73.64764969, "receivingTouchdowns": 4.301322792, - "receivingTouchdowns40Plus": 0.121064131, - "receivingTouchdowns50Plus": 0.07911541, + "receivingTouchdowns40Plus": 0.453064831, + "receivingTouchdowns50Plus": 0.014012314, "receivingYards": 531.4860609, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 106, "receivingYardsPerReception": 10.31321097, - "turnovers": 0.443731173, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.443731173, "usesPoints": false, }, "rawStats": PlayerStats { @@ -18947,7 +22214,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 414, "receivingYardsAfterCatch": 192, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 77, "receivingYardsPerReception": 7.96153846, + "receptionsPer5Receptions": 6, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -18983,15 +22259,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31.16874734, "attemptedFieldGoalsFrom40To49": 9.786986665, "attemptedFieldGoalsFrom50Plus": 5.205180806, + "attemptedFieldGoalsFrom50To59": 5.205180806, "madeExtraPoints": 47.22345953, "madeFieldGoals": 25.1884275, "madeFieldGoalsFrom40To49": 7.189940159, "madeFieldGoalsFrom50Plus": 3.105634114, + "madeFieldGoalsFrom50To59": 3.105634114, "madeFieldGoalsFromUnder40": 14.89285323, "missedExtraPoints": 4.977757215, "missedFieldGoals": 5.98031984, "missedFieldGoalsFrom40To49": 2.597046506, "missedFieldGoalsFrom50Plus": 2.099546692, + "missedFieldGoalsFrom50To59": 2.099546692, "missedFieldGoalsFromUnder40": 1.283726643, "usesPoints": false, }, @@ -19001,15 +22280,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 38, "attemptedFieldGoalsFrom40To49": 12, "attemptedFieldGoalsFrom50Plus": 7, + "attemptedFieldGoalsFrom50To59": 7, + "fieldGoalAttemptedYards": 1357, + "fieldGoalAttemptedYardsPer100Yards": 4, + "fieldGoalAttemptedYardsPer10Yards": 129, + "fieldGoalAttemptedYardsPer20Yards": 60, + "fieldGoalAttemptedYardsPer25Yards": 46, + "fieldGoalAttemptedYardsPer50Yards": 18, + "fieldGoalAttemptedYardsPer5Yards": 267, + "fieldGoalMadeYards": 1111, + "fieldGoalMadeYardsPer100Yards": 4, + "fieldGoalMadeYardsPer10Yards": 105, + "fieldGoalMadeYardsPer20Yards": 50, + "fieldGoalMadeYardsPer25Yards": 36, + "fieldGoalMadeYardsPer50Yards": 14, + "fieldGoalMadeYardsPer5Yards": 218, + "fieldGoalMissedYards": 246, + "fieldGoalMissedYardsPer10Yards": 23, + "fieldGoalMissedYardsPer20Yards": 9, + "fieldGoalMissedYardsPer25Yards": 9, + "fieldGoalMissedYardsPer50Yards": 4, + "fieldGoalMissedYardsPer5Yards": 48, "madeExtraPoints": 24, "madeFieldGoals": 31, "madeFieldGoalsFrom40To49": 12, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 17, "missedExtraPoints": 1, "missedFieldGoals": 7, "missedFieldGoalsFrom50Plus": 5, + "missedFieldGoalsFrom50To59": 5, "missedFieldGoalsFromUnder40": 2, + "teamLoss": 9, + "teamPointsScored": 117, + "teamWin": 8, "usesPoints": false, }, }, @@ -19057,10 +22362,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 0.923306946, "defensiveForcedFumbles": 12.16846499, "defensiveFumbles": 7.909502244, + "defensiveHalfSacks": 83.25715747, "defensiveInterceptions": 15.13109979, "defensivePointsAllowed": 337.9266173, "defensiveSacks": 41.62857873, "defensiveSafeties": 0.128558719, + "defensiveTacklesPer3Tackles": 328, + "defensiveTacklesPer5Tackles": 197, "defensiveTotalTackles": 986.9974386, "defensiveYardsAllowed": 5761.997596, "fumbleReturnTouchdown": 1.293782578, @@ -19069,6 +22377,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 680.104, "puntReturnTouchdown": 0.187824, "puntReturnYards": 207.5727273, + "totalReturnTouchdowns": 2.306521707, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19090,6 +22399,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 12, "defensiveFumbles": 7, + "defensiveHalfSacks": 68, "defensiveInterceptions": 17, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, @@ -19097,12 +22407,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSacks": 34, "defensiveSafeties": 1, "defensiveSoloTackles": 711, + "defensiveStuffs": 61, + "defensiveTacklesPer3Tackles": 363, + "defensiveTacklesPer5Tackles": 213, "defensiveTotalTackles": 1100, "defensiveYardsAllowed": 5721, "fumbleReturnTouchdown": 2, "kickoffReturnTouchdown": 1, "kickoffReturnYards": 1205, "puntReturnYards": 316, + "teamLoss": 9, + "teamWin": 8, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -19142,11 +22458,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 58.78383737, "receivingTargets": 88.61224453, "receivingTouchdowns": 4.59657866, - "receivingTouchdowns40Plus": 0.10461133, - "receivingTouchdowns50Plus": 0.068363504, + "receivingTouchdowns40Plus": 0.687852004, + "receivingTouchdowns50Plus": 0.021273773, "receivingYards": 618.3219015, + "receivingYardsPer10Yards": 61, + "receivingYardsPer20Yards": 30, + "receivingYardsPer25Yards": 24, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 123, "receivingYardsPerReception": 10.51856989, - "turnovers": 0.268956537, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.268956537, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19156,7 +22479,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 406, "receivingYardsAfterCatch": 130, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 78, "receivingYardsPerReception": 8.63829787, + "receptionsPer5Receptions": 6, + "teamLoss": 6, + "teamPointsScored": 28, + "teamWin": 4, "usesPoints": false, }, }, @@ -19196,11 +22528,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.9288131, "receivingTargets": 52.1549363, "receivingTouchdowns": 2.553659366, - "receivingTouchdowns40Plus": 0.087525663, - "receivingTouchdowns50Plus": 0.05719802, + "receivingTouchdowns40Plus": 0.166282504, + "receivingTouchdowns50Plus": 0.005142758, "receivingYards": 348.7305072, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 69, "receivingYardsPerReception": 9.706151613, - "turnovers": 0.279980152, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.279980152, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19210,10 +22549,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 552, "receivingYardsAfterCatch": 291, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 104, "receivingYardsPerReception": 9.51724138, + "receptionsPer5Receptions": 5, "rushingAttempts": 2, "rushingYards": 3, "rushingYardsPerAttempt": 1.5, + "teamLoss": 10, + "teamPointsScored": 18, + "teamWin": 7, "usesPoints": false, }, }, @@ -19260,11 +22608,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.021908618, "defensiveForcedFumbles": 12.85601726, "defensiveFumbles": 8.356411221, + "defensiveHalfSacks": 83.7747865, "defensiveInterceptions": 13.56332844, "defensiveOver45PointsAllowed": 0.175257732, "defensivePointsAllowed": 406.4292236, "defensiveSacks": 41.88739325, "defensiveSafeties": 0.131633632, + "defensiveTacklesPer3Tackles": 333, + "defensiveTacklesPer5Tackles": 200, "defensiveTotalTackles": 1000.647589, "defensiveYardsAllowed": 5920.663168, "fumbleReturnTouchdown": 1.28803232, @@ -19273,6 +22624,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 687.8571636, "puntReturnTouchdown": 0.23736, "puntReturnYards": 211.56, + "totalReturnTouchdowns": 2.341549323, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19294,17 +22646,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 11, "defensiveFumbles": 6, + "defensiveHalfSacks": 78, "defensiveInterceptions": 14, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 347, "defensiveSacks": 39, "defensiveSoloTackles": 773, + "defensiveStuffs": 80, + "defensiveTacklesPer3Tackles": 378, + "defensiveTacklesPer5Tackles": 224, "defensiveTotalTackles": 1154, "defensiveYardsAllowed": 5978, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 792, "puntReturnYards": 303, + "teamLoss": 10, + "teamWin": 7, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -19345,11 +22704,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 72.28130526, "receivingTargets": 120.8549542, "receivingTouchdowns": 5.948311935, - "receivingTouchdowns40Plus": 0.161788795, - "receivingTouchdowns50Plus": 0.105728978, + "receivingTouchdowns40Plus": 2.116400024, + "receivingTouchdowns50Plus": 0.065455671, "receivingYards": 933.905782, + "receivingYardsPer10Yards": 93, + "receivingYardsPer20Yards": 46, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 186, "receivingYardsPerReception": 12.92043328, - "turnovers": 0.402731675, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 14, + "totalTurnovers": 0.402731675, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19358,7 +22724,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 339, "receivingYardsAfterCatch": 71, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 10.27272727, + "receptionsPer5Receptions": 2, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 3, "usesPoints": false, }, }, @@ -19394,15 +22769,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.77363855, "attemptedFieldGoalsFrom40To49": 10.29092251, "attemptedFieldGoalsFrom50Plus": 5.473197639, + "attemptedFieldGoalsFrom50To59": 5.473197639, "madeExtraPoints": 41.54462177, "madeFieldGoals": 27.76967675, "madeFieldGoalsFrom40To49": 7.963419187, "madeFieldGoalsFrom50Plus": 3.480020396, + "madeFieldGoalsFrom50To59": 3.480020396, "madeFieldGoalsFromUnder40": 16.32623717, "missedExtraPoints": 2.472462623, "missedFieldGoals": 5.003961801, "missedFieldGoalsFrom40To49": 2.327503319, "missedFieldGoalsFrom50Plus": 1.993177243, + "missedFieldGoalsFrom50To59": 1.993177243, "missedFieldGoalsFromUnder40": 0.68328124, "usesPoints": false, }, @@ -19412,19 +22790,46 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 33, "attemptedFieldGoalsFrom40To49": 8, "attemptedFieldGoalsFrom50Plus": 10, + "attemptedFieldGoalsFrom50To59": 9, "attemptedFieldGoalsFrom60Plus": 1, "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 1336, + "fieldGoalAttemptedYardsPer100Yards": 7, + "fieldGoalAttemptedYardsPer10Yards": 128, + "fieldGoalAttemptedYardsPer20Yards": 60, + "fieldGoalAttemptedYardsPer25Yards": 47, + "fieldGoalAttemptedYardsPer50Yards": 20, + "fieldGoalAttemptedYardsPer5Yards": 262, + "fieldGoalMadeYards": 968, + "fieldGoalMadeYardsPer100Yards": 4, + "fieldGoalMadeYardsPer10Yards": 93, + "fieldGoalMadeYardsPer20Yards": 44, + "fieldGoalMadeYardsPer25Yards": 33, + "fieldGoalMadeYardsPer50Yards": 13, + "fieldGoalMadeYardsPer5Yards": 190, + "fieldGoalMissedYards": 368, + "fieldGoalMissedYardsPer100Yards": 2, + "fieldGoalMissedYardsPer10Yards": 35, + "fieldGoalMissedYardsPer20Yards": 16, + "fieldGoalMissedYardsPer25Yards": 13, + "fieldGoalMissedYardsPer50Yards": 6, + "fieldGoalMissedYardsPer5Yards": 72, "madeExtraPoints": 40, "madeFieldGoals": 26, "madeFieldGoalsFrom40To49": 7, "madeFieldGoalsFrom50Plus": 4, + "madeFieldGoalsFrom50To59": 3, "madeFieldGoalsFrom60Plus": 1, "madeFieldGoalsFromUnder40": 15, "missedExtraPoints": 6, "missedFieldGoals": 7, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 6, + "missedFieldGoalsFrom50To59": 6, + "teamLoss": 4, + "teamPointsScored": 118, + "teamWin": 13, "usesPoints": false, }, }, @@ -19462,20 +22867,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 59.71211245, "passingCompletionPercentage": 0.634788665, "passingCompletions": 37.90457213, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 7, "passingIncompletions": 21.80754032, "passingInterceptions": 1.194066855, "passingTouchdowns": 3.046332197, "passingTouchdowns40Plus": 0.326802611, "passingTouchdowns50Plus": 0.213565507, "passingYards": 435.7228023, + "passingYards300To399": 0.272183509, + "passingYards400Plus": 0.036764855, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 43, + "passingYardsPer20Yards": 21, + "passingYardsPer25Yards": 17, + "passingYardsPer50Yards": 8, + "passingYardsPer5Yards": 87, "rushing2PtConversions": 0.014281176, "rushingAttempts": 9.492476931, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.044646243, + "rushingGame200PlusYards": 0.001523605, "rushingTouchdowns": 0.316032248, "rushingTouchdowns40Plus": 0.018172509, "rushingTouchdowns50Plus": 0.012720756, "rushingYards": 45.25964663, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.767949078, - "turnovers": 1.72206785, + "totalTurnovers": 1.72206785, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19486,17 +22908,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 76, "passingCompletionPercentage": 0.57894737, "passingCompletions": 44, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 7, "passingIncompletions": 32, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 3, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 663, + "passingYards300To399": 1, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 65, + "passingYardsPer20Yards": 31, + "passingYardsPer25Yards": 24, + "passingYardsPer50Yards": 12, + "passingYardsPer5Yards": 131, "rushingAttempts": 7, "rushingTouchdowns": 1, "rushingYards": 3, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 0.42857143, - "turnovers": 4, + "teamLoss": 2, + "teamPointsScored": 24, + "teamWin": 3, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -19542,11 +22979,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.130528293, "defensiveForcedFumbles": 13.97638659, "defensiveFumbles": 9.084651284, + "defensiveHalfSacks": 79.58466586, "defensiveInterceptions": 13.78645306, "defensiveOver45PointsAllowed": 0.354166667, "defensivePointsAllowed": 375.7559044, "defensiveSacks": 39.79233293, "defensiveSafeties": 0.125160354, + "defensiveTacklesPer3Tackles": 335, + "defensiveTacklesPer5Tackles": 201, "defensiveTotalTackles": 1007.399551, "defensiveYardsAllowed": 5825.93081, "fumbleReturnTouchdown": 1.307856879, @@ -19555,6 +22995,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 840.2311111, "puntReturnTouchdown": 0.351633524, "puntReturnYards": 313.2857143, + "totalReturnTouchdowns": 2.577423008, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19577,6 +23018,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 3, "defensiveForcedFumbles": 14, "defensiveFumbles": 11, + "defensiveHalfSacks": 88, "defensiveInterceptions": 10, "defensiveLessThan100YardsAllowed": 0, "defensiveOver45PointsAllowed": 1, @@ -19584,11 +23026,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensivePointsAllowed": 397, "defensiveSacks": 44, "defensiveSoloTackles": 770, + "defensiveStuffs": 94, + "defensiveTacklesPer3Tackles": 385, + "defensiveTacklesPer5Tackles": 228, "defensiveTotalTackles": 1173, "defensiveYardsAllowed": 5678, "fumbleReturnTouchdown": 2, "kickoffReturnYards": 1197, "puntReturnYards": 289, + "teamLoss": 12, + "teamWin": 4, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -19629,18 +23077,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.1238784, "receivingTargets": 46.04672423, "receivingTouchdowns": 1.357923763, - "receivingTouchdowns40Plus": 0.043055141, - "receivingTouchdowns50Plus": 0.028136535, + "receivingTouchdowns40Plus": 0.099303208, + "receivingTouchdowns50Plus": 0.003071233, "receivingYards": 256.6634853, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 7.307378825, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.446615427, "rushingAttempts": 238.0181456, + "rushingAttemptsPer10Attempts": 23, + "rushingAttemptsPer5Attempts": 47, + "rushingGame100To199Yards": 2.869532886, + "rushingGame200PlusYards": 0.097926148, "rushingTouchdowns": 6.281667141, "rushingTouchdowns40Plus": 0.493583967, "rushingTouchdowns50Plus": 0.345508777, "rushingYards": 1049.739363, + "rushingYardsPer10Yards": 104, + "rushingYardsPer20Yards": 52, + "rushingYardsPer25Yards": 41, + "rushingYardsPer50Yards": 20, + "rushingYardsPer5Yards": 209, "rushingYardsPerAttempt": 4.410333341, - "turnovers": 1.059347172, + "totalTurnovers": 1.059347172, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19651,16 +23115,36 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19, "receivingTargets": 31, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 218, "receivingYardsAfterCatch": 171, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 11.47368421, + "receptionsPer5Receptions": 2, "rushingAttempts": 80, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 13, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 4, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 463, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 43, + "rushingYardsPer20Yards": 19, + "rushingYardsPer25Yards": 14, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 90, "rushingYardsPerAttempt": 5.7875, - "turnovers": 1, + "teamLoss": 2, + "teamPointsScored": 30, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -19708,12 +23192,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 0.89797286, "defensiveForcedFumbles": 11.14587447, "defensiveFumbles": 7.244818404, + "defensiveHalfSacks": 76.45674874, "defensiveInterceptions": 12.79612485, "defensiveOver45PointsAllowed": 0.209876543, "defensiveOver550YardsAllowed": 0.419753086, "defensivePointsAllowed": 405.5386986, "defensiveSacks": 38.22837437, "defensiveSafeties": 0.127978019, + "defensiveTacklesPer3Tackles": 338, + "defensiveTacklesPer5Tackles": 203, "defensiveTotalTackles": 1016.806535, "defensiveYardsAllowed": 5944.540561, "fumbleReturnTouchdown": 1.290034261, @@ -19722,6 +23209,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 680.104, "puntReturnTouchdown": 0.187824, "puntReturnYards": 194.4214286, + "totalReturnTouchdowns": 2.313180365, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19743,6 +23231,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 2, "defensiveForcedFumbles": 20, "defensiveFumbles": 13, + "defensiveHalfSacks": 82, "defensiveInterceptions": 6, "defensiveLessThan100YardsAllowed": 0, "defensiveOver45PointsAllowed": 1, @@ -19750,12 +23239,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensivePointsAllowed": 369, "defensiveSacks": 41, "defensiveSoloTackles": 722, + "defensiveStuffs": 59, + "defensiveTacklesPer3Tackles": 373, + "defensiveTacklesPer5Tackles": 219, "defensiveTotalTackles": 1137, "defensiveYardsAllowed": 6089, "fumbleReturnTouchdown": 1, "interceptionReturnTouchdown": 1, "kickoffReturnYards": 555, "puntReturnYards": 179, + "teamLoss": 7, + "teamWin": 9, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -19796,11 +23291,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 37.32073147, "receivingTargets": 60.64976528, "receivingTouchdowns": 2.49980396, - "receivingTouchdowns40Plus": 0.164910066, - "receivingTouchdowns50Plus": 0.107768728, + "receivingTouchdowns40Plus": 0.330825799, + "receivingTouchdowns50Plus": 0.010231726, "receivingYards": 471.0672144, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 12.62213241, - "turnovers": 0.268441914, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.268441914, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19812,10 +23314,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 623, "receivingYardsAfterCatch": 276, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 118, "receivingYardsPerReception": 9.88888889, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 6, "rushingAttempts": 5, "rushingYards": 58, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 11.6, + "teamLoss": 12, + "teamPointsScored": 18, + "teamWin": 4, "usesPoints": false, }, }, @@ -19860,18 +23376,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 49.59749061, "receivingTargets": 65.7758789, "receivingTouchdowns": 2.454929717, - "receivingTouchdowns40Plus": 0.134625986, - "receivingTouchdowns50Plus": 0.087978082, + "receivingTouchdowns40Plus": 0.514452948, + "receivingTouchdowns50Plus": 0.015910916, "receivingYards": 496.2219423, + "receivingYardsPer10Yards": 49, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 99, "receivingYardsPerReception": 10.00498082, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, "rushing2PtConversions": 0.028007493, "rushingAttempts": 19.9708863, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.032278931, + "rushingGame200PlusYards": 0.001101556, "rushingTouchdowns": 0.823099598, "rushingTouchdowns40Plus": 0.03704863, "rushingTouchdowns50Plus": 0.025934041, "rushingYards": 109.6519092, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 5.490588027, - "turnovers": 0.667803485, + "totalTurnovers": 0.667803485, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19880,10 +23412,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 414, "receivingYardsAfterCatch": 281, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 10.09756098, + "receptionsPer5Receptions": 5, "rushingAttempts": 6, "rushingYards": -5, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": -0.83333333, + "teamLoss": 5, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -19924,11 +23467,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.85749126, "receivingTargets": 85.42896003, "receivingTouchdowns": 4.769876436, - "receivingTouchdowns40Plus": 0.211960338, - "receivingTouchdowns50Plus": 0.138516081, + "receivingTouchdowns40Plus": 0.984660067, + "receivingTouchdowns50Plus": 0.030453404, "receivingYards": 704.0521981, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 140, "receivingYardsPerReception": 15.02539251, - "turnovers": 0.288759394, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.288759394, "usesPoints": false, }, "rawStats": PlayerStats { @@ -19940,7 +23490,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns40Plus": 1, "receivingYards": 502, "receivingYardsAfterCatch": 134, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 96, "receivingYardsPerReception": 16.73333333, + "receptionsPer5Receptions": 2, + "teamLoss": 4, + "teamPointsScored": 18, + "teamWin": 7, "usesPoints": false, }, }, @@ -19978,20 +23538,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 576.845484, "passingCompletionPercentage": 0.660628593, "passingCompletions": 381.0806206, + "passingCompletionsPer10Completions": 38, + "passingCompletionsPer5Completions": 76, "passingIncompletions": 195.7648634, "passingInterceptions": 13.96554907, "passingTouchdowns": 31.64992945, "passingTouchdowns40Plus": 3.9388983, "passingTouchdowns50Plus": 2.574070039, "passingYards": 4349.638046, + "passingYards300To399": 4.977663751, + "passingYards400Plus": 0.672351857, + "passingYardsPer100Yards": 43, + "passingYardsPer10Yards": 434, + "passingYardsPer20Yards": 217, + "passingYardsPer25Yards": 173, + "passingYardsPer50Yards": 86, + "passingYardsPer5Yards": 869, "rushing2PtConversions": 0.067264912, "rushingAttempts": 34.86719453, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.017714958, + "rushingGame200PlusYards": 0.000604544, "rushingTouchdowns": 1.447968742, "rushingTouchdowns40Plus": 0.065232461, "rushingTouchdowns50Plus": 0.045662722, "rushingYards": 81.58861304, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 2.339982156, - "turnovers": 17.33764867, + "totalTurnovers": 17.33764867, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20002,17 +23581,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 303, "passingCompletionPercentage": 0.67986799, "passingCompletions": 206, + "passingCompletionsPer10Completions": 16, + "passingCompletionsPer5Completions": 37, "passingIncompletions": 97, + "passingIncompletionsPer10Incompletions": 5, + "passingIncompletionsPer5Incompletions": 15, "passingInterceptions": 8, "passingTouchdowns": 10, "passingTouchdowns40Plus": 3, "passingTouchdowns50Plus": 3, "passingYards": 2087, + "passingYards300To399": 1, + "passingYardsPer100Yards": 16, + "passingYardsPer10Yards": 204, + "passingYardsPer20Yards": 100, + "passingYardsPer25Yards": 79, + "passingYardsPer50Yards": 38, + "passingYardsPer5Yards": 413, "rushingAttempts": 13, "rushingTouchdowns": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 0.69230769, - "turnovers": 11, + "teamLoss": 6, + "teamPointsScored": 66, + "teamWin": 3, + "totalTurnovers": 11, "usesPoints": false, }, }, @@ -20052,18 +23646,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.15702612, "receivingTargets": 33.38793931, "receivingTouchdowns": 0.941479287, - "receivingTouchdowns40Plus": 0.040586096, - "receivingTouchdowns50Plus": 0.026523013, + "receivingTouchdowns40Plus": 0.06887819, + "receivingTouchdowns50Plus": 0.002130253, "receivingYards": 183.4012425, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 7.011547938, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.214090805, "rushingAttempts": 246.2376133, + "rushingAttemptsPer10Attempts": 24, + "rushingAttemptsPer5Attempts": 49, + "rushingGame100To199Yards": 2.772333726, + "rushingGame200PlusYards": 0.094609114, "rushingTouchdowns": 7.403575945, "rushingTouchdowns40Plus": 0.512428323, "rushingTouchdowns50Plus": 0.358699826, "rushingYards": 1033.586496, + "rushingYardsPer10Yards": 103, + "rushingYardsPer20Yards": 51, + "rushingYardsPer25Yards": 41, + "rushingYardsPer50Yards": 20, + "rushingYardsPer5Yards": 206, "rushingYardsPerAttempt": 4.197516709, - "turnovers": 0.528725686, + "totalTurnovers": 0.528725686, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20071,11 +23681,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 7, "receivingYardsAfterCatch": 16, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.33333333, "rushingAttempts": 45, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 7, "rushingTouchdowns": 2, "rushingYards": 279, + "rushingYardsPer10Yards": 25, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 9, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 54, "rushingYardsPerAttempt": 6.2, + "teamLoss": 1, + "teamPointsScored": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -20116,11 +23737,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 75.57004204, "receivingTargets": 106.3580489, "receivingTouchdowns": 8.316909507, - "receivingTouchdowns40Plus": 0.152277214, - "receivingTouchdowns50Plus": 0.09951316, + "receivingTouchdowns40Plus": 1.44221711, + "receivingTouchdowns50Plus": 0.044604653, "receivingYards": 810.198821, + "receivingYardsPer10Yards": 81, + "receivingYardsPer20Yards": 40, + "receivingYardsPer25Yards": 32, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 162, "receivingYardsPerReception": 10.72116409, - "turnovers": 0.462756051, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, + "totalTurnovers": 0.462756051, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20129,7 +23757,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 171, "receivingYardsAfterCatch": 21, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 10.6875, + "receptionsPer5Receptions": 3, + "teamLoss": 2, + "teamPointsScored": 18, + "teamWin": 1, "usesPoints": false, }, }, @@ -20172,18 +23809,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 79.36298246, "receivingTargets": 106.0769472, "receivingTouchdowns": 6.012998186, - "receivingTouchdowns40Plus": 0.149231325, - "receivingTouchdowns50Plus": 0.097522671, + "receivingTouchdowns40Plus": 1.413344106, + "receivingTouchdowns50Plus": 0.043711673, "receivingYards": 803.6945088, + "receivingYardsPer10Yards": 80, + "receivingYardsPer20Yards": 40, + "receivingYardsPer25Yards": 32, + "receivingYardsPer50Yards": 16, + "receivingYardsPer5Yards": 160, "receivingYardsPerReception": 10.12681837, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, "rushing2PtConversions": 0.007110845, "rushingAttempts": 3.959410642, + "rushingGame100To199Yards": 0.001223031, + "rushingGame200PlusYards": 0.0000417, "rushingTouchdowns": 0.194582244, "rushingTouchdowns40Plus": 0.007276879, "rushingTouchdowns50Plus": 0.005093815, "rushingYards": 23.19335718, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.857780178, - "turnovers": 0.925291981, + "totalTurnovers": 0.925291981, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20197,8 +23846,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 330, "receivingYardsAfterCatch": 148, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 9.16666667, - "turnovers": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -20238,11 +23896,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52.39903453, "receivingTargets": 79.13757004, "receivingTouchdowns": 6.137106063, - "receivingTouchdowns40Plus": 0.119901428, - "receivingTouchdowns50Plus": 0.078355583, + "receivingTouchdowns40Plus": 0.54469461, + "receivingTouchdowns50Plus": 0.016846225, "receivingYards": 569.1223132, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 113, "receivingYardsPerReception": 10.86131297, - "turnovers": 0.21888356, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.21888356, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20253,7 +23918,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 509, "receivingYardsAfterCatch": 203, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 96, "receivingYardsPerReception": 12.41463415, + "receptionsPer5Receptions": 2, + "teamLoss": 9, + "teamPointsScored": 12, + "teamWin": 8, "usesPoints": false, }, }, @@ -20301,11 +23975,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.025660862, "defensiveForcedFumbles": 11.79627243, "defensiveFumbles": 7.66757708, + "defensiveHalfSacks": 80.43173046, "defensiveInterceptions": 12.43071741, "defensiveOver45PointsAllowed": 0.209876543, "defensivePointsAllowed": 391.5243338, "defensiveSacks": 40.21586523, "defensiveSafeties": 0.126162597, + "defensiveTacklesPer3Tackles": 344, + "defensiveTacklesPer5Tackles": 206, "defensiveTotalTackles": 1033.258883, "defensiveYardsAllowed": 6009.083979, "fumbleReturnTouchdown": 1.277736341, @@ -20314,6 +23991,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 971.4333333, "puntReturnTouchdown": 0.23736, "puntReturnYards": 211.56, + "totalReturnTouchdowns": 2.973297372, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20335,18 +24013,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 3, "defensiveForcedFumbles": 11, "defensiveFumbles": 10, + "defensiveHalfSacks": 76, "defensiveInterceptions": 15, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 415, "defensiveSacks": 38, "defensiveSoloTackles": 804, + "defensiveStuffs": 74, + "defensiveTacklesPer3Tackles": 387, + "defensiveTacklesPer5Tackles": 228, "defensiveTotalTackles": 1173, "defensiveYardsAllowed": 6608, "interceptionReturnTouchdown": 1, "kickoffReturnTouchdown": 1, "kickoffReturnYards": 920, "puntReturnYards": 167, + "teamLoss": 4, + "teamWin": 13, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -20386,18 +24071,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 49.94391712, "receivingTargets": 61.42450767, "receivingTouchdowns": 2.065153076, - "receivingTouchdowns40Plus": 0.049719711, - "receivingTouchdowns50Plus": 0.032491831, + "receivingTouchdowns40Plus": 0.17520634, + "receivingTouchdowns50Plus": 0.005418753, "receivingYards": 358.3854747, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 71, "receivingYardsPerReception": 7.175758238, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, "rushing2PtConversions": 0.390072407, "rushingAttempts": 224.529544, + "rushingAttemptsPer10Attempts": 22, + "rushingAttemptsPer5Attempts": 44, + "rushingGame100To199Yards": 2.458192752, + "rushingGame200PlusYards": 0.083888687, "rushingTouchdowns": 7.405306911, "rushingTouchdowns40Plus": 0.462271101, "rushingTouchdowns50Plus": 0.323589771, "rushingYards": 974.6813488, + "rushingYardsPer10Yards": 97, + "rushingYardsPer20Yards": 48, + "rushingYardsPer25Yards": 38, + "rushingYardsPer50Yards": 19, + "rushingYardsPer5Yards": 194, "rushingYardsPerAttempt": 4.340993757, - "turnovers": 1.076055626, + "totalTurnovers": 1.076055626, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20407,11 +24108,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 22, "receivingYards": 76, "receivingYardsAfterCatch": 118, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 4.75, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushingAttempts": 47, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 9, "rushingYards": 204, + "rushingYardsPer10Yards": 18, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 39, "rushingYardsPerAttempt": 4.34042553, - "turnovers": 1, + "teamLoss": 2, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -20453,18 +24170,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.7416123, "receivingTargets": 26.69244285, "receivingTouchdowns": 0.709360349, - "receivingTouchdowns40Plus": 0.042454609, - "receivingTouchdowns50Plus": 0.027744087, + "receivingTouchdowns40Plus": 0.05777265, + "receivingTouchdowns50Plus": 0.001786783, "receivingYards": 147.9648923, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 7.133721826, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.140438709, "rushingAttempts": 115.2434016, + "rushingAttemptsPer10Attempts": 11, + "rushingAttemptsPer5Attempts": 23, + "rushingGame100To199Yards": 0.634356217, + "rushingGame200PlusYards": 0.021648144, "rushingTouchdowns": 3.303182377, "rushingTouchdowns40Plus": 0.224652653, "rushingTouchdowns50Plus": 0.157256857, "rushingYards": 495.5167366, + "rushingYardsPer10Yards": 49, + "rushingYardsPer20Yards": 24, + "rushingYardsPer25Yards": 19, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 99, "rushingYardsPerAttempt": 4.299740632, - "turnovers": 0.543311504, + "totalTurnovers": 0.543311504, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20476,11 +24209,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 57, "receivingYardsAfterCatch": 81, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 6.33333333, "rushingAttempts": 129, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 21, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 4, "rushingYards": 731, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 67, + "rushingYardsPer20Yards": 29, + "rushingYardsPer25Yards": 23, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 141, "rushingYardsPerAttempt": 5.66666667, + "teamLoss": 10, + "teamPointsScored": 30, + "teamWin": 3, "usesPoints": false, }, }, @@ -20521,11 +24270,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 76.69014635, "receivingTargets": 117.5424565, "receivingTouchdowns": 4.638760002, - "receivingTouchdowns40Plus": 0.184255441, - "receivingTouchdowns50Plus": 0.120410931, + "receivingTouchdowns40Plus": 2.125100994, + "receivingTouchdowns50Plus": 0.065724773, "receivingYards": 936.6890023, + "receivingYardsPer10Yards": 93, + "receivingYardsPer20Yards": 46, + "receivingYardsPer25Yards": 37, + "receivingYardsPer50Yards": 18, + "receivingYardsPer5Yards": 187, "receivingYardsPerReception": 12.21394204, - "turnovers": 0.551619672, + "receptionsPer10Receptions": 7, + "receptionsPer5Receptions": 15, + "totalTurnovers": 0.551619672, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20536,12 +24292,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15, "receivingTargets": 28, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 285, "receivingYardsAfterCatch": 133, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 54, "receivingYardsPerReception": 19, - "turnovers": 1, + "teamLoss": 2, + "teamPointsScored": 12, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -20581,18 +24345,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 47.61909663, "receivingTargets": 61.88143206, "receivingTouchdowns": 1.889645253, - "receivingTouchdowns40Plus": 0.039671764, - "receivingTouchdowns50Plus": 0.025925498, + "receivingTouchdowns40Plus": 0.15229896, + "receivingTouchdowns50Plus": 0.004710277, "receivingYards": 334.120662, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 7.016526679, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, "rushing2PtConversions": 0.173343158, "rushingAttempts": 133.3617283, + "rushingAttemptsPer10Attempts": 13, + "rushingAttemptsPer5Attempts": 26, + "rushingGame100To199Yards": 1.002475431, + "rushingGame200PlusYards": 0.03421064, "rushingTouchdowns": 3.373996063, "rushingTouchdowns40Plus": 0.262406915, "rushingTouchdowns50Plus": 0.18368484, "rushingYards": 622.4050735, + "rushingYardsPer10Yards": 62, + "rushingYardsPer20Yards": 31, + "rushingYardsPer25Yards": 24, + "rushingYardsPer50Yards": 12, + "rushingYardsPer5Yards": 124, "rushingYardsPerAttempt": 4.667044146, - "turnovers": 0.695350925, + "totalTurnovers": 0.695350925, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20603,11 +24383,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 157, "receivingYardsAfterCatch": 113, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 9.8125, "rushingAttempts": 68, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 9, "rushingTouchdowns": 2, "rushingYards": 245, + "rushingYardsPer10Yards": 19, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer5Yards": 44, "rushingYardsPerAttempt": 3.60294118, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 6, "usesPoints": false, }, }, @@ -20655,12 +24448,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.081866701, "defensiveForcedFumbles": 12.48915497, "defensiveFumbles": 8.11795073, + "defensiveHalfSacks": 82.45271962, "defensiveInterceptions": 13.1070045, "defensiveOver45PointsAllowed": 0.175257732, "defensiveOver550YardsAllowed": 0.209876543, "defensivePointsAllowed": 377.0058139, "defensiveSacks": 41.22635981, "defensiveSafeties": 0.130893109, + "defensiveTacklesPer3Tackles": 358, + "defensiveTacklesPer5Tackles": 215, "defensiveTotalTackles": 1076.620695, "defensiveYardsAllowed": 6013.998885, "fumbleReturnTouchdown": 1.263381214, @@ -20669,6 +24465,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 647.28415, "puntReturnTouchdown": 0.329365835, "puntReturnYards": 292.2836471, + "totalReturnTouchdowns": 2.369188625, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20690,17 +24487,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 10, "defensiveFumbles": 6, + "defensiveHalfSacks": 76, "defensiveInterceptions": 16, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 364, "defensiveSacks": 38, "defensiveSoloTackles": 710, + "defensiveStuffs": 65, + "defensiveTacklesPer3Tackles": 377, + "defensiveTacklesPer5Tackles": 220, "defensiveTotalTackles": 1139, "defensiveYardsAllowed": 5798, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 663, "puntReturnYards": 183, + "teamLoss": 12, + "teamWin": 5, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -20745,18 +24549,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.64596166, "receivingTargets": 63.05007497, "receivingTouchdowns": 4.44768481, - "receivingTouchdowns40Plus": 0.303306543, - "receivingTouchdowns50Plus": 0.198210826, + "receivingTouchdowns40Plus": 0.552093519, + "receivingTouchdowns50Plus": 0.017075057, "receivingYards": 570.3918985, + "receivingYardsPer10Yards": 57, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 114, "receivingYardsPerReception": 12.77589008, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.024821031, "rushingAttempts": 10.70870181, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.012637928, + "rushingGame200PlusYards": 0.000431284, "rushingTouchdowns": 0.609909081, "rushingTouchdowns40Plus": 0.019753696, "rushingTouchdowns50Plus": 0.013827588, "rushingYards": 71.21628206, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 6.650318904, - "turnovers": 0.598554827, + "totalTurnovers": 0.598554827, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20768,11 +24588,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 297, "receivingYardsAfterCatch": 160, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 11.88, + "receptionsPer5Receptions": 1, "rushingAttempts": 4, "rushingTouchdowns": 2, "rushingYards": 31, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 7.75, + "teamLoss": 2, + "teamPointsScored": 36, + "teamWin": 6, "usesPoints": false, }, }, @@ -20810,18 +24643,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.41372825, "receivingTargets": 33.33383216, "receivingTouchdowns": 1.317517957, - "receivingTouchdowns40Plus": 0.043491682, - "receivingTouchdowns50Plus": 0.028421814, + "receivingTouchdowns40Plus": 0.070040391, + "receivingTouchdowns50Plus": 0.002166198, "receivingYards": 186.9451961, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 7.356071267, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.291722138, "rushingAttempts": 138.7394798, + "rushingAttemptsPer10Attempts": 13, + "rushingAttemptsPer5Attempts": 27, + "rushingGame100To199Yards": 0.936790088, + "rushingGame200PlusYards": 0.031969052, "rushingTouchdowns": 5.538176837, "rushingTouchdowns40Plus": 0.273717044, "rushingTouchdowns50Plus": 0.191601931, "rushingYards": 602.2654684, + "rushingYardsPer10Yards": 60, + "rushingYardsPer20Yards": 30, + "rushingYardsPer25Yards": 24, + "rushingYardsPer50Yards": 12, + "rushingYardsPer5Yards": 120, "rushingYardsPerAttempt": 4.340981164, - "turnovers": 0.763906782, + "totalTurnovers": 0.763906782, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20831,12 +24680,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 32, "receivingYards": 223, "receivingYardsAfterCatch": 206, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 8.92, + "receptionsPer5Receptions": 2, "rushingAttempts": 90, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 14, "rushingTouchdowns": 2, "rushingYards": 318, + "rushingYardsPer10Yards": 26, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 9, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 58, "rushingYardsPerAttempt": 3.53333333, - "turnovers": 2, + "teamLoss": 7, + "teamPointsScored": 12, + "teamWin": 3, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -20883,22 +24747,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingTouchdowns40Plus": 0.070701432, "passingTouchdowns50Plus": 0.046203386, "passingYards": 17.98367007, + "passingYards300To399": 0.028890075, + "passingYards400Plus": 0.003902292, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 3, "receiving2PtConversions": 0.194852744, "receivingReceptions": 54.99795533, "receivingTargets": 90.1986201, "receivingTouchdowns": 3.266278755, - "receivingTouchdowns40Plus": 0.165667158, - "receivingTouchdowns50Plus": 0.108263488, + "receivingTouchdowns40Plus": 0.968155395, + "receivingTouchdowns50Plus": 0.02994295, "receivingYards": 700.9894604, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 140, "receivingYardsPerReception": 12.74573675, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, "rushing2PtConversions": 0.000153071, "rushingAttempts": 0.120058698, + "rushingGame100To199Yards": -0.00000406, + "rushingGame200PlusYards": -1.39e-7, "rushingTouchdowns": 0.003141061, "rushingTouchdowns40Plus": 0.000220191, "rushingTouchdowns50Plus": 0.000154133, "rushingYards": 0.741912444, "rushingYardsPerAttempt": 6.179580967, - "turnovers": 0.739883159, + "totalTurnovers": 0.739883159, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20910,9 +24787,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25, "receivingTargets": 39, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 272, "receivingYardsAfterCatch": 61, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 10.88, + "receptionsPer5Receptions": 1, + "teamLoss": 6, + "teamPointsScored": 8, + "teamWin": 3, "usesPoints": false, }, }, @@ -20959,11 +24847,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.025582455, "defensiveForcedFumbles": 13.39321508, "defensiveFumbles": 8.705589804, + "defensiveHalfSacks": 75.239222, "defensiveInterceptions": 13.26382461, "defensiveOver45PointsAllowed": 0.175257732, "defensivePointsAllowed": 407.7661201, "defensiveSacks": 37.619611, "defensiveSafeties": 0.126763674, + "defensiveTacklesPer3Tackles": 346, + "defensiveTacklesPer5Tackles": 207, "defensiveTotalTackles": 1038.085011, "defensiveYardsAllowed": 5985.982496, "fumbleReturnTouchdown": 1.286949057, @@ -20972,6 +24863,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 716.9835294, "puntReturnTouchdown": 0.1927776, "puntReturnYards": 255.678, + "totalReturnTouchdowns": 2.269888776, "usesPoints": false, }, "rawStats": PlayerStats { @@ -20993,18 +24885,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 2, "defensiveForcedFumbles": 10, "defensiveFumbles": 7, + "defensiveHalfSacks": 54, "defensiveInterceptions": 6, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 400, "defensiveSacks": 27, "defensiveSoloTackles": 712, + "defensiveStuffs": 69, + "defensiveTacklesPer3Tackles": 375, + "defensiveTacklesPer5Tackles": 224, "defensiveTotalTackles": 1145, "defensiveYardsAllowed": 6216, "fumbleReturnTouchdown": 1, "interceptionReturnTouchdown": 2, "kickoffReturnYards": 668, "puntReturnYards": 156, + "teamLoss": 11, + "teamWin": 6, + "totalReturnTouchdowns": 3, "usesPoints": false, }, }, @@ -21045,11 +24944,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 65.37063899, "receivingTargets": 98.39370825, "receivingTouchdowns": 5.3211812, - "receivingTouchdowns40Plus": 0.129581083, - "receivingTouchdowns50Plus": 0.084681238, + "receivingTouchdowns40Plus": 1.050478794, + "receivingTouchdowns50Plus": 0.032489035, "receivingYards": 721.9905563, + "receivingYardsPer10Yards": 72, + "receivingYardsPer20Yards": 36, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 144, "receivingYardsPerReception": 11.04456936, - "turnovers": 0.620878579, + "receptionsPer10Receptions": 6, + "receptionsPer5Receptions": 13, + "totalTurnovers": 0.620878579, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21063,8 +24969,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 5, "receivingYards": 426, "receivingYardsAfterCatch": 171, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 80, "receivingYardsPerReception": 8.35294118, - "turnovers": 1, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 5, + "teamLoss": 7, + "teamPointsScored": 32, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -21100,15 +25016,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.51741325, "attemptedFieldGoalsFrom40To49": 10.21046776, "attemptedFieldGoalsFrom50Plus": 5.430408013, + "attemptedFieldGoalsFrom50To59": 5.430408013, "madeExtraPoints": 29.96961559, "madeFieldGoals": 27.41999003, "madeFieldGoalsFrom40To49": 7.859530013, "madeFieldGoalsFrom50Plus": 3.430672204, + "madeFieldGoalsFrom50To59": 3.430672204, "madeFieldGoalsFromUnder40": 16.12978781, "missedExtraPoints": 1.921361223, "missedFieldGoals": 5.097423229, "missedFieldGoalsFrom40To49": 2.350937749, "missedFieldGoalsFrom50Plus": 1.999735809, + "missedFieldGoalsFrom50To59": 1.999735809, "missedFieldGoalsFromUnder40": 0.746749671, "usesPoints": false, }, @@ -21118,15 +25037,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 23, "attemptedFieldGoalsFrom40To49": 7, "attemptedFieldGoalsFrom50Plus": 5, + "attemptedFieldGoalsFrom50To59": 5, + "fieldGoalAttemptedYards": 891, + "fieldGoalAttemptedYardsPer100Yards": 4, + "fieldGoalAttemptedYardsPer10Yards": 84, + "fieldGoalAttemptedYardsPer20Yards": 39, + "fieldGoalAttemptedYardsPer25Yards": 29, + "fieldGoalAttemptedYardsPer50Yards": 11, + "fieldGoalAttemptedYardsPer5Yards": 172, + "fieldGoalMadeYards": 795, + "fieldGoalMadeYardsPer100Yards": 3, + "fieldGoalMadeYardsPer10Yards": 75, + "fieldGoalMadeYardsPer20Yards": 35, + "fieldGoalMadeYardsPer25Yards": 25, + "fieldGoalMadeYardsPer50Yards": 9, + "fieldGoalMadeYardsPer5Yards": 153, + "fieldGoalMissedYards": 96, + "fieldGoalMissedYardsPer10Yards": 9, + "fieldGoalMissedYardsPer20Yards": 4, + "fieldGoalMissedYardsPer25Yards": 3, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 19, "madeExtraPoints": 27, "madeFieldGoals": 21, "madeFieldGoalsFrom40To49": 6, "madeFieldGoalsFrom50Plus": 4, + "madeFieldGoalsFrom50To59": 4, "madeFieldGoalsFromUnder40": 11, "missedExtraPoints": 5, "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, + "teamLoss": 13, + "teamPointsScored": 90, + "teamWin": 3, "usesPoints": false, }, }, @@ -21166,11 +25111,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 45.99205201, "receivingTargets": 63.07849921, "receivingTouchdowns": 4.562664323, - "receivingTouchdowns40Plus": 0.163745911, - "receivingTouchdowns50Plus": 0.107007953, + "receivingTouchdowns40Plus": 0.365624513, + "receivingTouchdowns50Plus": 0.011307975, "receivingYards": 488.5465643, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 97, "receivingYardsPerReception": 10.62241285, - "turnovers": 0.248801226, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.248801226, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21181,7 +25133,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 470, "receivingYardsAfterCatch": 230, + "receivingYardsPer10Yards": 40, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 87, "receivingYardsPerReception": 8.86792453, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 4, + "teamLoss": 9, + "teamPointsScored": 12, + "teamWin": 8, "usesPoints": false, }, }, @@ -21221,11 +25183,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.612089582, "receivingTargets": 2.497312937, "receivingTouchdowns": 0.15680738, - "receivingTouchdowns40Plus": 0.09538492, - "receivingTouchdowns50Plus": 0.062334045, + "receivingTouchdowns40Plus": 0.009888844, + "receivingTouchdowns50Plus": 0.000305841, "receivingYards": 17.30299108, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.73326897, - "turnovers": 0.010901065, + "totalTurnovers": 0.010901065, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21235,10 +25199,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42, "receivingTargets": 65, "receivingTouchdowns": 7, - "receivingTouchdowns40Plus": 1, "receivingYards": 508, "receivingYardsAfterCatch": 182, + "receivingYardsPer10Yards": 46, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 95, "receivingYardsPerReception": 12.0952381, + "receptionsPer5Receptions": 3, + "teamLoss": 9, + "teamPointsScored": 42, + "teamWin": 7, "usesPoints": false, }, }, @@ -21284,12 +25256,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.047024063, "defensiveForcedFumbles": 15.41879999, "defensiveFumbles": 10.02222, + "defensiveHalfSacks": 80.53989784, "defensiveInterceptions": 13.49754942, "defensiveOver45PointsAllowed": 0.523076923, "defensiveOver550YardsAllowed": 0.419753086, "defensivePointsAllowed": 412.3039574, "defensiveSacks": 40.26994892, "defensiveSafeties": 0.125087775, + "defensiveTacklesPer3Tackles": 345, + "defensiveTacklesPer5Tackles": 207, "defensiveTotalTackles": 1036.307419, "defensiveYardsAllowed": 6062.004128, "fumbleReturnTouchdown": 1.239982728, @@ -21298,6 +25273,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 680.104, "puntReturnTouchdown": 0.190576, "puntReturnYards": 210.167619, + "totalReturnTouchdowns": 2.22764272, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21319,18 +25295,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 12, "defensiveFumbles": 9, + "defensiveHalfSacks": 72, "defensiveInterceptions": 11, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 437, "defensiveSacks": 36, "defensiveSoloTackles": 745, + "defensiveStuffs": 94, + "defensiveTacklesPer3Tackles": 379, + "defensiveTacklesPer5Tackles": 222, "defensiveTotalTackles": 1148, "defensiveYardsAllowed": 5931, "fumbleReturnTouchdown": 3, "interceptionReturnTouchdown": 2, "kickoffReturnYards": 686, "puntReturnYards": 289, + "teamLoss": 13, + "teamWin": 4, + "totalReturnTouchdowns": 5, "usesPoints": false, }, }, @@ -21371,24 +25354,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31.75364291, "receivingTargets": 51.7290695, "receivingTouchdowns": 2.815808554, - "receivingTouchdowns40Plus": 0.141032376, - "receivingTouchdowns50Plus": 0.092164657, + "receivingTouchdowns40Plus": 0.676418226, + "receivingTouchdowns50Plus": 0.020920151, "receivingYards": 439.0360784, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 87, "receivingYardsPerReception": 13.82632158, - "turnovers": 0.188932443, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.188932443, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 1, "receivingTargets": 9, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 41, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 41, "rushingAttempts": 1, "rushingYards": 40, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 40, + "teamLoss": 1, + "teamPointsScored": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -21424,15 +25424,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.74576914, "attemptedFieldGoalsFrom40To49": 10.28217151, "attemptedFieldGoalsFrom50Plus": 5.468543446, + "attemptedFieldGoalsFrom50To59": 5.468543446, "madeExtraPoints": 42.73244915, "madeFieldGoals": 27.32589685, "madeFieldGoalsFrom40To49": 7.824715392, "madeFieldGoalsFrom50Plus": 3.406893458, + "madeFieldGoalsFrom50To59": 3.406893458, "madeFieldGoalsFromUnder40": 16.094288, "missedExtraPoints": 3.167148702, "missedFieldGoals": 5.419872283, "missedFieldGoalsFrom40To49": 2.457456117, "missedFieldGoalsFrom50Plus": 2.061649987, + "missedFieldGoalsFrom50To59": 2.061649987, "missedFieldGoalsFromUnder40": 0.900766179, "usesPoints": false, }, @@ -21442,15 +25445,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 25, "attemptedFieldGoalsFrom40To49": 8, "attemptedFieldGoalsFrom50Plus": 6, + "attemptedFieldGoalsFrom50To59": 6, + "fieldGoalAttemptedYards": 1051, + "fieldGoalAttemptedYardsPer100Yards": 6, + "fieldGoalAttemptedYardsPer10Yards": 102, + "fieldGoalAttemptedYardsPer20Yards": 48, + "fieldGoalAttemptedYardsPer25Yards": 37, + "fieldGoalAttemptedYardsPer50Yards": 16, + "fieldGoalAttemptedYardsPer5Yards": 208, + "fieldGoalMadeYards": 909, + "fieldGoalMadeYardsPer100Yards": 4, + "fieldGoalMadeYardsPer10Yards": 87, + "fieldGoalMadeYardsPer20Yards": 42, + "fieldGoalMadeYardsPer25Yards": 31, + "fieldGoalMadeYardsPer50Yards": 13, + "fieldGoalMadeYardsPer5Yards": 179, + "fieldGoalMissedYards": 142, + "fieldGoalMissedYardsPer10Yards": 13, + "fieldGoalMissedYardsPer20Yards": 6, + "fieldGoalMissedYardsPer25Yards": 4, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 27, "madeExtraPoints": 17, "madeFieldGoals": 22, "madeFieldGoalsFrom40To49": 6, "madeFieldGoalsFrom50Plus": 5, + "madeFieldGoalsFrom50To59": 5, "madeFieldGoalsFromUnder40": 11, "missedExtraPoints": 1, "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, + "teamLoss": 11, + "teamPointsScored": 83, + "teamWin": 2, "usesPoints": false, }, }, @@ -21495,18 +25524,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.7170397, "receivingTargets": 56.07639903, "receivingTouchdowns": 2.681351971, - "receivingTouchdowns40Plus": 0.128688905, - "receivingTouchdowns50Plus": 0.084098199, + "receivingTouchdowns40Plus": 0.235587228, + "receivingTouchdowns50Plus": 0.007286203, "receivingYards": 410.0462578, + "receivingYardsPer10Yards": 41, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 82, "receivingYardsPerReception": 11.16773741, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.022640831, "rushingAttempts": 9.756958404, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.010519772, + "rushingGame200PlusYards": 0.000358999, "rushingTouchdowns": 0.390554101, "rushingTouchdowns40Plus": 0.017988601, "rushingTouchdowns50Plus": 0.012592021, "rushingYards": 65.1603135, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 6.67834286, - "turnovers": 0.335678594, + "totalTurnovers": 0.335678594, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21519,11 +25563,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 407, "receivingYardsAfterCatch": 156, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 75, "receivingYardsPerReception": 11, + "receptionsPer5Receptions": 2, "rushingAttempts": 12, "rushingTouchdowns": 1, "rushingYards": 84, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 7, + "teamLoss": 5, + "teamPointsScored": 30, + "teamWin": 9, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -21564,18 +25622,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.89884281, "receivingTargets": 74.20819138, "receivingTouchdowns": 4.601666372, - "receivingTouchdowns40Plus": 0.203097853, - "receivingTouchdowns50Plus": 0.132724447, + "receivingTouchdowns40Plus": 0.885850171, + "receivingTouchdowns50Plus": 0.027397428, "receivingYards": 625.6120211, + "receivingYardsPer10Yards": 62, + "receivingYardsPer20Yards": 31, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 125, "receivingYardsPerReception": 14.58342417, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.008480917, "rushingAttempts": 3.998238872, + "rushingGame100To199Yards": 0.001598384, + "rushingGame200PlusYards": 0.0000545, "rushingTouchdowns": 0.182661883, "rushingTouchdowns40Plus": 0.007349415, "rushingTouchdowns50Plus": 0.00514459, "rushingYards": 25.4545226, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.366433676, - "turnovers": 0.324528549, + "totalTurnovers": 0.324528549, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21584,7 +25655,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 369, "receivingYardsAfterCatch": 38, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 69, "receivingYardsPerReception": 15.375, + "teamLoss": 9, + "teamPointsScored": 18, + "teamWin": 2, "usesPoints": false, }, }, @@ -21625,11 +25704,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 47.64185587, "receivingTargets": 73.34530818, "receivingTouchdowns": 4.102645576, - "receivingTouchdowns40Plus": 0.184095675, - "receivingTouchdowns50Plus": 0.120306524, + "receivingTouchdowns40Plus": 0.596905889, + "receivingTouchdowns50Plus": 0.018461007, "receivingYards": 585.1479959, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 12.28222506, - "turnovers": 0.298156379, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.298156379, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21640,10 +25726,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 299, "receivingYardsAfterCatch": 124, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 12.45833333, + "receptionsPer5Receptions": 1, "rushingAttempts": 5, "rushingYards": 45, + "rushingYardsPer10Yards": 3, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 9, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 6, "usesPoints": false, }, }, @@ -21683,18 +25780,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.37827368, "receivingTargets": 28.53772388, "receivingTouchdowns": 0.762726979, - "receivingTouchdowns40Plus": 0.043725382, - "receivingTouchdowns50Plus": 0.028574537, + "receivingTouchdowns40Plus": 0.061377057, + "receivingTouchdowns50Plus": 0.001898259, "receivingYards": 159.8699332, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 7.143979714, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.189832645, "rushingAttempts": 114.1473092, + "rushingAttemptsPer10Attempts": 11, + "rushingAttemptsPer5Attempts": 22, + "rushingGame100To199Yards": 0.546184857, + "rushingGame200PlusYards": 0.018639194, "rushingTouchdowns": 3.554436713, "rushingTouchdowns40Plus": 0.222505892, "rushingTouchdowns50Plus": 0.155754124, "rushingYards": 457.7625618, + "rushingYardsPer10Yards": 45, + "rushingYardsPer20Yards": 22, + "rushingYardsPer25Yards": 18, + "rushingYardsPer50Yards": 9, + "rushingYardsPer5Yards": 91, "rushingYardsPerAttempt": 4.010279041, - "turnovers": 0.446742251, + "totalTurnovers": 0.446742251, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21703,11 +25816,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 91, "receivingYardsAfterCatch": 121, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 6.06666667, "rushingAttempts": 74, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 7, "rushingTouchdowns": 5, "rushingYards": 283, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 50, "rushingYardsPerAttempt": 3.82432432, + "teamLoss": 4, + "teamPointsScored": 36, + "teamWin": 13, "usesPoints": false, }, }, @@ -21747,11 +25873,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.08003023, "receivingTargets": 28.63283852, "receivingTouchdowns": 2.006072998, - "receivingTouchdowns40Plus": 0.143128653, - "receivingTouchdowns50Plus": 0.093534575, + "receivingTouchdowns40Plus": 0.08061941, + "receivingTouchdowns50Plus": 0.002493384, "receivingYards": 214.981861, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 42, "receivingYardsPerReception": 11.26737528, - "turnovers": 0.140060615, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.140060615, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21762,9 +25895,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 420, "receivingYardsAfterCatch": 237, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 12.72727273, + "receptionsPer5Receptions": 1, "rushingYards": 2, - "turnovers": 1, + "teamLoss": 10, + "teamPointsScored": 12, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -21805,11 +25947,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.41172588, "receivingTargets": 46.61707855, "receivingTouchdowns": 3.056706991, - "receivingTouchdowns40Plus": 0.16356038, - "receivingTouchdowns50Plus": 0.106886708, + "receivingTouchdowns40Plus": 0.178015941, + "receivingTouchdowns50Plus": 0.005505648, "receivingYards": 360.9776099, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 72, "receivingYardsPerReception": 13.66732381, - "turnovers": 0.203876902, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.203876902, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21823,12 +25972,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 57, "receivingTargets": 94, "receivingTouchdowns": 4, + "receivingTouchdowns40Plus": 1, "receivingYards": 690, "receivingYardsAfterCatch": 196, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 62, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 132, "receivingYardsPerReception": 12.10526316, + "receptionsPer5Receptions": 5, "rushingAttempts": 4, "rushingYards": 40, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 10, + "teamLoss": 11, + "teamPointsScored": 24, + "teamWin": 6, "usesPoints": false, }, }, @@ -21866,18 +26030,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33.62157391, "receivingTargets": 47.00587552, "receivingTouchdowns": 2.164056645, - "receivingTouchdowns40Plus": 0.043766686, - "receivingTouchdowns50Plus": 0.02860153, + "receivingTouchdowns40Plus": 0.10449782, + "receivingTouchdowns50Plus": 0.003231891, "receivingYards": 264.8034681, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 7.87599857, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.299048103, "rushingAttempts": 189.771805, + "rushingAttemptsPer10Attempts": 18, + "rushingAttemptsPer5Attempts": 37, + "rushingGame100To199Yards": 1.836170647, + "rushingGame200PlusYards": 0.06266146, "rushingTouchdowns": 6.440398523, "rushingTouchdowns40Plus": 0.384725312, "rushingTouchdowns50Plus": 0.269307719, "rushingYards": 834.8980529, + "rushingYardsPer10Yards": 83, + "rushingYardsPer20Yards": 41, + "rushingYardsPer25Yards": 33, + "rushingYardsPer50Yards": 16, + "rushingYardsPer5Yards": 166, "rushingYardsPerAttempt": 4.399484174, - "turnovers": 0.438643114, + "totalTurnovers": 0.438643114, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21887,11 +26067,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 22, "receivingYards": 102, "receivingYardsAfterCatch": 110, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 6, + "receptionsPer5Receptions": 1, "rushingAttempts": 70, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 10, "rushingTouchdowns": 3, "rushingYards": 283, + "rushingYardsPer10Yards": 23, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 53, "rushingYardsPerAttempt": 4.04285714, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 3, "usesPoints": false, }, }, @@ -21931,18 +26126,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.693249302, "receivingTargets": 3.612643226, "receivingTouchdowns": 0.106027437, - "receivingTouchdowns40Plus": 0.050454044, - "receivingTouchdowns50Plus": 0.032971717, + "receivingTouchdowns40Plus": 0.01165843, + "receivingTouchdowns50Plus": 0.00036057, "receivingYards": 21.05783304, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.81874631, "rushing2PtConversions": 0.027153583, "rushingAttempts": 12.31671119, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.007996895, + "rushingGame200PlusYards": 0.000272903, "rushingTouchdowns": 0.468434413, "rushingTouchdowns40Plus": 0.022761579, "rushingTouchdowns50Plus": 0.015933106, "rushingYards": 52.96917429, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.300594004, - "turnovers": 0.068600972, + "totalTurnovers": 0.068600972, "usesPoints": false, }, "rawStats": PlayerStats { @@ -21952,11 +26159,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 89, "receivingYardsAfterCatch": 125, + "receivingYardsPer10Yards": 4, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 5.23529412, "rushingAttempts": 109, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 18, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 4, "rushingYards": 482, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 43, + "rushingYardsPer20Yards": 20, + "rushingYardsPer25Yards": 15, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 92, "rushingYardsPerAttempt": 4.42201835, + "teamLoss": 4, + "teamPointsScored": 30, + "teamWin": 8, "usesPoints": false, }, }, @@ -21996,18 +26217,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.983830855, "receivingTargets": 5.179079927, "receivingTouchdowns": 0.175857489, - "receivingTouchdowns40Plus": 0.038557306, - "receivingTouchdowns50Plus": 0.0251972, + "receivingTouchdowns40Plus": 0.015582867, + "receivingTouchdowns50Plus": 0.000481944, "receivingYards": 28.53789278, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.163429829, "rushing2PtConversions": 0.068635858, "rushingAttempts": 47.48180381, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 0.107535355, + "rushingGame200PlusYards": 0.003669769, "rushingTouchdowns": 1.713522214, "rushingTouchdowns40Plus": 0.08936679, "rushingTouchdowns50Plus": 0.062556753, "rushingYards": 203.780614, + "rushingYardsPer10Yards": 20, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 40, "rushingYardsPerAttempt": 4.291762268, - "turnovers": 0.199000371, + "totalTurnovers": 0.199000371, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22020,12 +26254,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 209, "receivingYardsAfterCatch": 228, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 6.96666667, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushingAttempts": 68, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, "rushingTouchdowns": 1, "rushingYards": 236, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 46, "rushingYardsPerAttempt": 3.47058824, - "turnovers": 1, + "teamLoss": 12, + "teamPointsScored": 12, + "teamWin": 3, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22066,11 +26317,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 58.29847563, "receivingTargets": 94.37900637, "receivingTouchdowns": 6.010662959, - "receivingTouchdowns40Plus": 0.121483925, - "receivingTouchdowns50Plus": 0.079389745, + "receivingTouchdowns40Plus": 0.894771895, + "receivingTouchdowns50Plus": 0.027673358, "receivingYards": 681.4401734, + "receivingYardsPer10Yards": 68, + "receivingYardsPer20Yards": 34, + "receivingYardsPer25Yards": 27, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 136, "receivingYardsPerReception": 11.68881632, - "turnovers": 0.209665697, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.209665697, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22079,9 +26337,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46, "receivingTargets": 81, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 1, "receivingYards": 529, "receivingYardsAfterCatch": 95, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 46, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 99, "receivingYardsPerReception": 11.5, + "receptionsPer5Receptions": 3, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 9, "usesPoints": false, }, }, @@ -22122,18 +26391,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.615581831, "receivingTargets": 2.13234473, "receivingTouchdowns": 0.066934192, - "receivingTouchdowns40Plus": 0.027452588, - "receivingTouchdowns50Plus": 0.017940266, + "receivingTouchdowns40Plus": 0.006633727, + "receivingTouchdowns50Plus": 0.000205167, "receivingYards": 11.51545957, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.12774763, "rushing2PtConversions": 0.031352392, "rushingAttempts": 19.6601602, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.024226506, + "rushingGame200PlusYards": 0.000826758, "rushingTouchdowns": 0.674584696, "rushingTouchdowns40Plus": 0.036619547, "rushingTouchdowns50Plus": 0.025633683, "rushingYards": 81.01392679, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.120715497, - "turnovers": 0.081596431, + "totalTurnovers": 0.081596431, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22143,10 +26423,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 12, "receivingYards": 76, "receivingYardsAfterCatch": 80, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 8.44444444, "rushingAttempts": 35, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 139, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 3.97142857, + "teamLoss": 8, + "teamWin": 2, "usesPoints": false, }, }, @@ -22184,20 +26476,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 292.994458, "passingCompletionPercentage": 0.640396236, "passingCompletions": 187.632548, + "passingCompletionsPer10Completions": 18, + "passingCompletionsPer5Completions": 37, "passingIncompletions": 105.3619099, "passingInterceptions": 6.685381455, "passingTouchdowns": 9.828273728, "passingTouchdowns40Plus": 1.699078808, "passingTouchdowns50Plus": 1.110348001, "passingYards": 2120.660599, + "passingYards300To399": 1.618303689, + "passingYards400Plus": 0.218590396, + "passingYardsPer100Yards": 21, + "passingYardsPer10Yards": 212, + "passingYardsPer20Yards": 106, + "passingYardsPer25Yards": 84, + "passingYardsPer50Yards": 42, + "passingYardsPer5Yards": 424, "rushing2PtConversions": 0.06271687, "rushingAttempts": 43.05576963, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.309304263, + "rushingGame200PlusYards": 0.010555368, "rushingTouchdowns": 1.34747762, "rushingTouchdowns40Plus": 0.082454014, "rushingTouchdowns50Plus": 0.05771781, "rushingYards": 252.6249957, + "rushingYardsPer10Yards": 25, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 50, "rushingYardsPerAttempt": 5.867390081, - "turnovers": 8.807993297, + "totalTurnovers": 8.807993297, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22209,17 +26520,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 300, "passingCompletionPercentage": 0.61333333, "passingCompletions": 184, + "passingCompletionsPer10Completions": 13, + "passingCompletionsPer5Completions": 31, "passingIncompletions": 116, + "passingIncompletionsPer10Incompletions": 7, + "passingIncompletionsPer5Incompletions": 19, "passingInterceptions": 9, "passingTouchdowns": 15, "passingTouchdowns40Plus": 2, "passingTouchdowns50Plus": 1, "passingYards": 2219, + "passingYardsPer100Yards": 16, + "passingYardsPer10Yards": 214, + "passingYardsPer20Yards": 104, + "passingYardsPer25Yards": 82, + "passingYardsPer50Yards": 37, + "passingYardsPer5Yards": 437, "rushingAttempts": 85, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 13, "rushingTouchdowns": 4, "rushingYards": 438, + "rushingYardsPer10Yards": 39, + "rushingYardsPer20Yards": 17, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 82, "rushingYardsPerAttempt": 5.15294118, - "turnovers": 12, + "teamLoss": 8, + "teamPointsScored": 114, + "teamWin": 5, + "totalTurnovers": 12, "usesPoints": false, }, }, @@ -22257,20 +26588,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 48.88124025, "passingCompletionPercentage": 0.650699376, "passingCompletions": 31.80699254, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 6, "passingIncompletions": 17.07424771, "passingInterceptions": 1.128884804, "passingTouchdowns": 2.099593122, "passingTouchdowns40Plus": 0.217332157, "passingTouchdowns50Plus": 0.142026564, "passingYards": 325.7824221, + "passingYards300To399": 0.210028966, + "passingYards400Plus": 0.028369406, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 32, + "passingYardsPer20Yards": 16, + "passingYardsPer25Yards": 13, + "passingYardsPer50Yards": 6, + "passingYardsPer5Yards": 65, "rushing2PtConversions": 0.032159727, "rushingAttempts": 14.16514939, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.140034312, + "rushingGame200PlusYards": 0.004778834, "rushingTouchdowns": 0.553047977, "rushingTouchdowns40Plus": 0.027852422, "rushingTouchdowns50Plus": 0.019496696, "rushingYards": 76.45890655, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 5.397677386, - "turnovers": 1.615608409, + "totalTurnovers": 1.615608409, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22278,16 +26628,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 112, "passingCompletionPercentage": 0.66964286, "passingCompletions": 75, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 12, "passingIncompletions": 37, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 3, "passingTouchdowns": 2, "passingYards": 658, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 63, + "passingYardsPer20Yards": 30, + "passingYardsPer25Yards": 24, + "passingYardsPer50Yards": 10, + "passingYardsPer5Yards": 130, "rushing2PtConversions": 1, "rushingAttempts": 43, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 7, "rushingTouchdowns": 1, "rushingYards": 137, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 26, "rushingYardsPerAttempt": 3.18604651, - "turnovers": 3, + "teamLoss": 3, + "teamPointsScored": 20, + "teamWin": 3, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -22323,15 +26692,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.59446937, "attemptedFieldGoalsFrom40To49": 10.23466338, "attemptedFieldGoalsFrom50Plus": 5.443276384, + "attemptedFieldGoalsFrom50To59": 5.443276384, "madeExtraPoints": 40.59866436, "madeFieldGoals": 27.44455448, "madeFieldGoalsFrom40To49": 7.865465164, "madeFieldGoalsFrom50Plus": 3.432052962, + "madeFieldGoalsFrom50To59": 3.432052962, "madeFieldGoalsFromUnder40": 16.14703635, "missedExtraPoints": 2.659865526, "missedFieldGoals": 5.149914888, "missedFieldGoalsFrom40To49": 2.369198218, "missedFieldGoalsFrom50Plus": 2.011223422, + "missedFieldGoalsFrom50To59": 2.011223422, "missedFieldGoalsFromUnder40": 0.769493249, "usesPoints": false, }, @@ -22341,16 +26713,44 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 23, "attemptedFieldGoalsFrom40To49": 2, "attemptedFieldGoalsFrom50Plus": 6, + "attemptedFieldGoalsFrom50To59": 6, + "fieldGoalAttemptedYards": 900, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 84, + "fieldGoalAttemptedYardsPer20Yards": 38, + "fieldGoalAttemptedYardsPer25Yards": 28, + "fieldGoalAttemptedYardsPer50Yards": 11, + "fieldGoalAttemptedYardsPer5Yards": 175, + "fieldGoalMadeYards": 808, + "fieldGoalMadeYardsPer100Yards": 1, + "fieldGoalMadeYardsPer10Yards": 75, + "fieldGoalMadeYardsPer20Yards": 34, + "fieldGoalMadeYardsPer25Yards": 25, + "fieldGoalMadeYardsPer50Yards": 9, + "fieldGoalMadeYardsPer5Yards": 157, + "fieldGoalMissedYards": 92, + "fieldGoalMissedYardsPer10Yards": 8, + "fieldGoalMissedYardsPer20Yards": 3, + "fieldGoalMissedYardsPer25Yards": 3, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 17, "madeExtraPoints": 51, "madeFieldGoals": 20, "madeFieldGoalsFrom40To49": 1, "madeFieldGoalsFrom50Plus": 5, + "madeFieldGoalsFrom50To59": 5, "madeFieldGoalsFromUnder40": 14, "missedExtraPoints": 2, "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, "missedFieldGoalsFromUnder40": 1, + "netPunts": 1, + "puntYards": 35, + "teamLoss": 3, + "teamPointsScored": 111, + "teamWin": 13, "usesPoints": false, }, }, @@ -22392,11 +26792,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.62565267, "receivingTargets": 73.29234803, "receivingTouchdowns": 5.010640952, - "receivingTouchdowns40Plus": 0.18455793, - "receivingTouchdowns50Plus": 0.120608607, + "receivingTouchdowns40Plus": 0.59523298, + "receivingTouchdowns50Plus": 0.018409267, "receivingYards": 584.5892276, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 116, "receivingYardsPerReception": 12.53793125, - "turnovers": 0.27742009, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.27742009, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22411,11 +26818,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 33, "receivingYards": 250, "receivingYardsAfterCatch": 148, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 11.36363636, + "receptionsPer5Receptions": 2, "rushingAttempts": 3, "rushingYards": 24, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 8, - "turnovers": 3, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -22455,18 +26872,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.4064617, "receivingTargets": 33.8381924, "receivingTouchdowns": 0.83962365, - "receivingTouchdowns40Plus": 0.046902681, - "receivingTouchdowns50Plus": 0.030650902, + "receivingTouchdowns40Plus": 0.072623741, + "receivingTouchdowns50Plus": 0.002246095, "receivingYards": 194.2618795, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 7.646160328, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.161585717, "rushingAttempts": 172.8657839, + "rushingAttemptsPer10Attempts": 17, + "rushingAttemptsPer5Attempts": 34, + "rushingGame100To199Yards": 1.807777401, + "rushingGame200PlusYards": 0.061692507, "rushingTouchdowns": 5.106574249, "rushingTouchdowns40Plus": 0.34739502, "rushingTouchdowns50Plus": 0.243176514, "rushingYards": 829.6078086, + "rushingYardsPer10Yards": 82, + "rushingYardsPer20Yards": 41, + "rushingYardsPer25Yards": 33, + "rushingYardsPer50Yards": 16, + "rushingYardsPer5Yards": 165, "rushingYardsPerAttempt": 4.79914411, - "turnovers": 0.47909213, + "totalTurnovers": 0.47909213, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22475,12 +26908,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 16, "receivingYardsAfterCatch": 28, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 4, "rushingAttempts": 57, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 1, "rushingTouchdowns": 2, "rushingTouchdowns40Plus": 1, "rushingYards": 346, + "rushingYardsPer100Yards": 1, + "rushingYardsPer10Yards": 33, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 68, "rushingYardsPerAttempt": 6.07017544, + "teamLoss": 3, + "teamPointsScored": 12, + "teamWin": 2, "usesPoints": false, }, }, @@ -22521,11 +26967,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.82541705, "receivingTargets": 75.53066995, "receivingTouchdowns": 3.183640523, - "receivingTouchdowns40Plus": 0.156151517, - "receivingTouchdowns50Plus": 0.102045017, + "receivingTouchdowns40Plus": 0.574971636, + "receivingTouchdowns50Plus": 0.017782628, "receivingYards": 578.3313608, + "receivingYardsPer10Yards": 57, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 115, "receivingYardsPerReception": 12.90186235, - "turnovers": 0.398153415, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.398153415, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22535,11 +26988,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 32, "receivingTargets": 64, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 536, "receivingYardsAfterCatch": 109, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 102, "receivingYardsPerReception": 16.75, + "receptionsPer5Receptions": 3, + "teamLoss": 7, + "teamPointsScored": 12, + "teamWin": 6, "usesPoints": false, }, }, @@ -22579,18 +27039,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.136093041, "receivingTargets": 9.196244107, "receivingTouchdowns": 0.200479238, - "receivingTouchdowns40Plus": 0.04132719, - "receivingTouchdowns50Plus": 0.027007319, + "receivingTouchdowns40Plus": 0.02537221, + "receivingTouchdowns50Plus": 0.000784708, "receivingYards": 50.76164519, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 7.113366501, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.015388227, "rushingAttempts": 16.65099128, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.013428792, + "rushingGame200PlusYards": 0.000458273, "rushingTouchdowns": 0.486307945, "rushingTouchdowns40Plus": 0.03082158, "rushingTouchdowns50Plus": 0.021575106, "rushingYards": 72.33423835, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.344140065, - "turnovers": 0.097853698, + "totalTurnovers": 0.097853698, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22605,11 +27080,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 157, "receivingYardsAfterCatch": 122, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 9.8125, "rushingAttempts": 19, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 74, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 3.89473684, - "turnovers": 1, + "teamLoss": 7, + "teamPointsScored": 6, + "teamWin": 3, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22647,20 +27134,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 458.4265388, "passingCompletionPercentage": 0.647519782, "passingCompletions": 296.8402524, + "passingCompletionsPer10Completions": 29, + "passingCompletionsPer5Completions": 59, "passingIncompletions": 161.5862864, "passingInterceptions": 11.83448791, "passingTouchdowns": 22.46166056, "passingTouchdowns40Plus": 2.639384157, "passingTouchdowns50Plus": 1.724837547, "passingYards": 3502.550979, + "passingYards300To399": 2.224647251, + "passingYards400Plus": 0.300491513, + "passingYardsPer100Yards": 35, + "passingYardsPer10Yards": 350, + "passingYardsPer20Yards": 175, + "passingYardsPer25Yards": 140, + "passingYardsPer50Yards": 70, + "passingYardsPer5Yards": 700, "rushing2PtConversions": 0.127485295, "rushingAttempts": 114.7892938, + "rushingAttemptsPer10Attempts": 11, + "rushingAttemptsPer5Attempts": 22, + "rushingGame100To199Yards": 0.754392277, + "rushingGame200PlusYards": 0.025744514, "rushingTouchdowns": 4.406986896, "rushingTouchdowns40Plus": 0.224487091, "rushingTouchdowns50Plus": 0.157140964, "rushingYards": 525.5578107, + "rushingYardsPer10Yards": 52, + "rushingYardsPer20Yards": 26, + "rushingYardsPer25Yards": 21, + "rushingYardsPer50Yards": 10, + "rushingYardsPer5Yards": 105, "rushingYardsPerAttempt": 4.578456696, - "turnovers": 13.79293019, + "totalTurnovers": 13.79293019, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22670,13 +27176,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 31, "passingCompletionPercentage": 0.48387097, "passingCompletions": 15, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 16, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 1, "passingYards": 194, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 19, + "passingYardsPer20Yards": 9, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 38, "rushingAttempts": 16, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 67, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.1875, - "turnovers": 1, + "teamLoss": 1, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -22716,17 +27241,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 175, "passingCompletionPercentage": 0.58857143, "passingCompletions": 103, + "passingCompletionsPer10Completions": 9, + "passingCompletionsPer5Completions": 19, "passingIncompletions": 72, + "passingIncompletionsPer10Incompletions": 5, + "passingIncompletionsPer5Incompletions": 13, "passingInterceptions": 4, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 1192, + "passingYards300To399": 2, + "passingYardsPer100Yards": 10, + "passingYardsPer10Yards": 117, + "passingYardsPer20Yards": 58, + "passingYardsPer25Yards": 45, + "passingYardsPer50Yards": 22, + "passingYardsPer5Yards": 237, "rushingAttempts": 6, "rushingTouchdowns": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.5, - "turnovers": 5, + "teamLoss": 3, + "teamPointsScored": 24, + "teamWin": 1, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -22799,20 +27339,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 29.84143878, "passingCompletionPercentage": 0.659671654, "passingCompletions": 19.68555129, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 10.1558875, "passingInterceptions": 0.863637156, "passingTouchdowns": 1.5090992, "passingTouchdowns40Plus": 0.19038379, "passingTouchdowns50Plus": 0.124415807, "passingYards": 236.8029886, + "passingYards300To399": 0.182111123, + "passingYards400Plus": 0.024598438, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 47, "rushing2PtConversions": 0.004348874, "rushingAttempts": 2.431961823, + "rushingGame100To199Yards": 0.000815738, + "rushingGame200PlusYards": 0.0000278, "rushingTouchdowns": 0.150856232, "rushingTouchdowns40Plus": 0.004560309, "rushingTouchdowns50Plus": 0.003192216, "rushingYards": 4.397348755, "rushingYardsPerAttempt": 1.80814876, - "turnovers": 1.093804798, + "totalTurnovers": 1.093804798, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22821,17 +27373,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 308, "passingCompletionPercentage": 0.67207792, "passingCompletions": 207, + "passingCompletionsPer10Completions": 15, + "passingCompletionsPer5Completions": 37, "passingIncompletions": 101, + "passingIncompletionsPer10Incompletions": 6, + "passingIncompletionsPer5Incompletions": 15, "passingInterceptions": 4, "passingTouchdowns": 16, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 2437, + "passingYards300To399": 1, + "passingYardsPer100Yards": 20, + "passingYardsPer10Yards": 239, + "passingYardsPer20Yards": 116, + "passingYardsPer25Yards": 93, + "passingYardsPer50Yards": 44, + "passingYardsPer5Yards": 483, "rushingAttempts": 23, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 2, "rushingYards": 33, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 1.43478261, - "turnovers": 6, + "teamLoss": 3, + "teamPointsScored": 108, + "teamWin": 8, + "totalTurnovers": 6, "usesPoints": false, }, }, @@ -22872,11 +27441,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 32.29280201, "receivingTargets": 47.17107201, "receivingTouchdowns": 1.343478664, - "receivingTouchdowns40Plus": 0.138648497, - "receivingTouchdowns50Plus": 0.090606793, + "receivingTouchdowns40Plus": 0.168601506, + "receivingTouchdowns50Plus": 0.00521448, "receivingYards": 351.5772522, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 70, "receivingYardsPerReception": 10.88717084, - "turnovers": 0.185821472, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.185821472, "usesPoints": false, }, "rawStats": PlayerStats { @@ -22885,12 +27461,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 48, "receivingTargets": 74, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 548, "receivingYardsAfterCatch": 263, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 105, "receivingYardsPerReception": 11.41666667, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushingAttempts": 3, "rushingYards": 3, "rushingYardsPerAttempt": 1, + "teamLoss": 13, + "teamPointsScored": 12, + "teamWin": 2, "usesPoints": false, }, }, @@ -22927,15 +27515,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31.46215775, "attemptedFieldGoalsFrom40To49": 9.879117535, "attemptedFieldGoalsFrom50Plus": 5.254180345, + "attemptedFieldGoalsFrom50To59": 5.254180345, "madeExtraPoints": 35.05827983, "madeFieldGoals": 26.34917957, "madeFieldGoalsFrom40To49": 7.547645797, "madeFieldGoalsFrom50Plus": 3.289116896, + "madeFieldGoalsFrom50To59": 3.289116896, "madeFieldGoalsFromUnder40": 15.51241688, "missedExtraPoints": 2.47735168, "missedFieldGoals": 5.112978181, "missedFieldGoalsFrom40To49": 2.331471738, "missedFieldGoalsFrom50Plus": 1.965063449, + "missedFieldGoalsFrom50To59": 1.965063449, "missedFieldGoalsFromUnder40": 0.816442994, "usesPoints": false, }, @@ -22945,21 +27536,47 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32, "attemptedFieldGoalsFrom40To49": 8, "attemptedFieldGoalsFrom50Plus": 7, + "attemptedFieldGoalsFrom50To59": 6, "attemptedFieldGoalsFrom60Plus": 1, "defensiveAssistedTackles": 1, "defensiveSoloTackles": 1, "defensiveTotalTackles": 2, + "fieldGoalAttemptedYards": 1317, + "fieldGoalAttemptedYardsPer100Yards": 5, + "fieldGoalAttemptedYardsPer10Yards": 124, + "fieldGoalAttemptedYardsPer20Yards": 57, + "fieldGoalAttemptedYardsPer25Yards": 45, + "fieldGoalAttemptedYardsPer50Yards": 18, + "fieldGoalAttemptedYardsPer5Yards": 256, + "fieldGoalMadeYards": 948, + "fieldGoalMadeYardsPer100Yards": 2, + "fieldGoalMadeYardsPer10Yards": 89, + "fieldGoalMadeYardsPer20Yards": 39, + "fieldGoalMadeYardsPer25Yards": 32, + "fieldGoalMadeYardsPer50Yards": 12, + "fieldGoalMadeYardsPer5Yards": 184, + "fieldGoalMissedYards": 369, + "fieldGoalMissedYardsPer10Yards": 34, + "fieldGoalMissedYardsPer20Yards": 15, + "fieldGoalMissedYardsPer25Yards": 12, + "fieldGoalMissedYardsPer50Yards": 4, + "fieldGoalMissedYardsPer5Yards": 70, "madeExtraPoints": 35, "madeFieldGoals": 24, "madeFieldGoalsFrom40To49": 6, "madeFieldGoalsFrom50Plus": 4, + "madeFieldGoalsFrom50To59": 4, "madeFieldGoalsFromUnder40": 14, "missedExtraPoints": 2, "missedFieldGoals": 8, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 3, + "missedFieldGoalsFrom50To59": 2, "missedFieldGoalsFrom60Plus": 1, "missedFieldGoalsFromUnder40": 3, + "teamLoss": 10, + "teamPointsScored": 107, + "teamWin": 7, "usesPoints": false, }, }, @@ -22997,20 +27614,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 16.36659833, "passingCompletionPercentage": 0.653904818, "passingCompletions": 10.7021975, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 5.66440083, "passingInterceptions": 0.49390614, "passingTouchdowns": 0.757615904, "passingTouchdowns40Plus": 0.053041141, "passingTouchdowns50Plus": 0.034662386, "passingYards": 114.4665545, + "passingYards300To399": 0.055614079, + "passingYards400Plus": 0.007512004, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 11, + "passingYardsPer20Yards": 5, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 22, "rushing2PtConversions": 0.003867857, "rushingAttempts": 2.02363214, + "rushingGame100To199Yards": 0.004521893, + "rushingGame200PlusYards": 0.000154315, "rushingTouchdowns": 0.062505883, "rushingTouchdowns40Plus": 0.003780611, "rushingTouchdowns50Plus": 0.002646428, "rushingYards": 10.23746879, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.0589574, - "turnovers": 0.609878124, + "totalTurnovers": 0.609878124, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23022,16 +27653,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 259, "passingCompletionPercentage": 0.62162162, "passingCompletions": 161, + "passingCompletionsPer10Completions": 12, + "passingCompletionsPer5Completions": 29, "passingIncompletions": 98, + "passingIncompletionsPer10Incompletions": 6, + "passingIncompletionsPer5Incompletions": 15, "passingInterceptions": 6, "passingTouchdowns": 12, "passingTouchdowns40Plus": 1, "passingYards": 1859, + "passingYardsPer100Yards": 14, + "passingYardsPer10Yards": 181, + "passingYardsPer20Yards": 88, + "passingYardsPer25Yards": 70, + "passingYardsPer50Yards": 32, + "passingYardsPer5Yards": 368, "rushingAttempts": 28, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 96, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 3.42857143, - "turnovers": 11, + "teamLoss": 3, + "teamPointsScored": 78, + "teamWin": 6, + "totalTurnovers": 11, "usesPoints": false, }, }, @@ -23073,18 +27722,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.40403345, "receivingTargets": 22.65639351, "receivingTouchdowns": 0.547857217, - "receivingTouchdowns40Plus": 0.042141542, - "receivingTouchdowns50Plus": 0.027539497, + "receivingTouchdowns40Plus": 0.051207563, + "receivingTouchdowns50Plus": 0.001583739, "receivingYards": 125.8395755, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 7.23048343, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.053861398, "rushingAttempts": 50.58099075, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 0.117422595, + "rushingGame200PlusYards": 0.004007183, "rushingTouchdowns": 1.58310845, "rushingTouchdowns40Plus": 0.095325544, "rushingTouchdowns50Plus": 0.066727881, "rushingYards": 214.1754922, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 42, "rushingYardsPerAttempt": 4.23430797, - "turnovers": 0.272912292, + "totalTurnovers": 0.272912292, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23095,12 +27760,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 34, "receivingYards": 193, "receivingYardsAfterCatch": 234, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 7.72, "rushing2PtConversions": 1, "rushingAttempts": 77, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 10, "rushingTouchdowns": 2, "rushingYards": 313, + "rushingYardsPer10Yards": 27, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 59, "rushingYardsPerAttempt": 4.06493506, + "teamLoss": 9, + "teamPointsScored": 14, + "teamWin": 6, "usesPoints": false, }, }, @@ -23138,20 +27817,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 513.1815503, "passingCompletionPercentage": 0.655286608, "passingCompletions": 336.2809976, + "passingCompletionsPer10Completions": 33, + "passingCompletionsPer5Completions": 67, "passingIncompletions": 176.9005527, "passingInterceptions": 13.92931697, "passingTouchdowns": 22.15418549, "passingTouchdowns40Plus": 2.815282846, "passingTouchdowns50Plus": 1.83978734, "passingYards": 3628.306319, + "passingYards300To399": 2.509690222, + "passingYards400Plus": 0.338993344, + "passingYardsPer100Yards": 36, + "passingYardsPer10Yards": 362, + "passingYardsPer20Yards": 181, + "passingYardsPer25Yards": 145, + "passingYardsPer50Yards": 72, + "passingYardsPer5Yards": 725, "rushing2PtConversions": 0.137019744, "rushingAttempts": 51.77893783, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 0.163326066, + "rushingGame200PlusYards": 0.005573692, "rushingTouchdowns": 4.39509862, "rushingTouchdowns40Plus": 0.097800889, "rushingTouchdowns50Plus": 0.068460622, "rushingYards": 245.2775463, + "rushingYardsPer10Yards": 24, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 9, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 49, "rushingYardsPerAttempt": 4.737013864, - "turnovers": 18.02062544, + "totalTurnovers": 18.02062544, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23163,17 +27861,36 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 325, "passingCompletionPercentage": 0.65230769, "passingCompletions": 212, + "passingCompletionsPer10Completions": 16, + "passingCompletionsPer5Completions": 38, "passingIncompletions": 113, + "passingIncompletionsPer10Incompletions": 5, + "passingIncompletionsPer5Incompletions": 17, "passingInterceptions": 6, "passingTouchdowns": 13, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 2536, + "passingYards300To399": 1, + "passingYardsPer100Yards": 19, + "passingYardsPer10Yards": 249, + "passingYardsPer20Yards": 121, + "passingYardsPer25Yards": 96, + "passingYardsPer50Yards": 45, + "passingYardsPer5Yards": 503, "rushingAttempts": 34, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 2, "rushingYards": 98, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 2.88235294, - "turnovers": 8, + "teamLoss": 6, + "teamPointsScored": 90, + "teamWin": 6, + "totalTurnovers": 8, "usesPoints": false, }, }, @@ -23211,20 +27928,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 65.65916679, "passingCompletionPercentage": 0.640732461, "passingCompletions": 42.06995956, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 23.58920723, "passingInterceptions": 2.051867347, "passingTouchdowns": 3.09344326, "passingTouchdowns40Plus": 0.348041894, "passingTouchdowns50Plus": 0.227445378, "passingYards": 450.8188039, + "passingYards300To399": 0.307110856, + "passingYards400Plus": 0.041482624, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 45, + "passingYardsPer20Yards": 22, + "passingYardsPer25Yards": 18, + "passingYardsPer50Yards": 9, + "passingYardsPer5Yards": 90, "rushing2PtConversions": 0.011700561, "rushingAttempts": 6.595866905, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.016391594, + "rushingGame200PlusYards": 0.000559382, "rushingTouchdowns": 0.239990784, "rushingTouchdowns40Plus": 0.012465247, "rushingTouchdowns50Plus": 0.008725673, "rushingYards": 27.50319509, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4.169761987, - "turnovers": 2.409258355, + "totalTurnovers": 2.409258355, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23236,16 +27970,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 378, "passingCompletionPercentage": 0.66666667, "passingCompletions": 252, + "passingCompletionsPer10Completions": 19, + "passingCompletionsPer5Completions": 46, "passingIncompletions": 126, + "passingIncompletionsPer10Incompletions": 6, + "passingIncompletionsPer5Incompletions": 20, "passingInterceptions": 9, "passingTouchdowns": 18, "passingTouchdowns40Plus": 3, "passingTouchdowns50Plus": 2, "passingYards": 2871, + "passingYards300To399": 1, + "passingYardsPer100Yards": 22, + "passingYardsPer10Yards": 282, + "passingYardsPer20Yards": 138, + "passingYardsPer25Yards": 109, + "passingYardsPer50Yards": 52, + "passingYardsPer5Yards": 569, "rushingAttempts": 30, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 54, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 1.8, - "turnovers": 10, + "teamLoss": 8, + "teamPointsScored": 108, + "teamWin": 6, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -23285,11 +28037,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 53.53524858, "receivingTargets": 75.46211371, "receivingTouchdowns": 6.601182103, - "receivingTouchdowns40Plus": 0.105377635, - "receivingTouchdowns50Plus": 0.068864284, + "receivingTouchdowns40Plus": 0.441496618, + "receivingTouchdowns50Plus": 0.013654535, "receivingYards": 526.4850543, + "receivingYardsPer10Yards": 52, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 105, "receivingYardsPerReception": 9.834362749, - "turnovers": 0.376505127, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.376505127, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23301,7 +28060,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 182, "receivingYardsAfterCatch": 91, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 7.28, + "receptionsPer5Receptions": 1, + "teamLoss": 1, + "teamPointsScored": 12, + "teamWin": 7, "usesPoints": false, }, }, @@ -23337,15 +28104,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 33.07198613, "attemptedFieldGoalsFrom40To49": 10.38460365, "attemptedFieldGoalsFrom50Plus": 5.523021684, + "attemptedFieldGoalsFrom50To59": 5.523021684, "madeExtraPoints": 30.99051511, "madeFieldGoals": 27.43161495, "madeFieldGoalsFrom40To49": 7.85038334, "madeFieldGoalsFrom50Plus": 3.413026886, + "madeFieldGoalsFrom50To59": 3.413026886, "madeFieldGoalsFromUnder40": 16.16820472, "missedExtraPoints": 2.477876022, "missedFieldGoals": 5.640371185, "missedFieldGoalsFrom40To49": 2.534220305, "missedFieldGoalsFrom50Plus": 2.109994798, + "missedFieldGoalsFrom50To59": 2.109994798, "missedFieldGoalsFromUnder40": 0.996156083, "usesPoints": false, }, @@ -23355,19 +28125,45 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 37, "attemptedFieldGoalsFrom40To49": 11, "attemptedFieldGoalsFrom50Plus": 11, + "attemptedFieldGoalsFrom50To59": 10, "attemptedFieldGoalsFrom60Plus": 1, "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 1561, + "fieldGoalAttemptedYardsPer100Yards": 8, + "fieldGoalAttemptedYardsPer10Yards": 149, + "fieldGoalAttemptedYardsPer20Yards": 70, + "fieldGoalAttemptedYardsPer25Yards": 54, + "fieldGoalAttemptedYardsPer50Yards": 22, + "fieldGoalAttemptedYardsPer5Yards": 307, + "fieldGoalMadeYards": 1195, + "fieldGoalMadeYardsPer100Yards": 4, + "fieldGoalMadeYardsPer10Yards": 110, + "fieldGoalMadeYardsPer20Yards": 51, + "fieldGoalMadeYardsPer25Yards": 41, + "fieldGoalMadeYardsPer50Yards": 15, + "fieldGoalMadeYardsPer5Yards": 233, + "fieldGoalMissedYards": 366, + "fieldGoalMissedYardsPer10Yards": 33, + "fieldGoalMissedYardsPer20Yards": 14, + "fieldGoalMissedYardsPer25Yards": 12, + "fieldGoalMissedYardsPer50Yards": 5, + "fieldGoalMissedYardsPer5Yards": 71, "madeExtraPoints": 28, "madeFieldGoals": 30, "madeFieldGoalsFrom40To49": 9, "madeFieldGoalsFrom50Plus": 6, + "madeFieldGoalsFrom50To59": 5, "madeFieldGoalsFrom60Plus": 1, "madeFieldGoalsFromUnder40": 15, "missedExtraPoints": 1, "missedFieldGoals": 7, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 5, + "missedFieldGoalsFrom50To59": 5, + "teamLoss": 10, + "teamPointsScored": 118, + "teamWin": 7, "usesPoints": false, }, }, @@ -23407,11 +28203,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 50.60836224, "receivingTargets": 74.57527618, "receivingTouchdowns": 4.265698602, - "receivingTouchdowns40Plus": 0.085879685, - "receivingTouchdowns50Plus": 0.056122374, + "receivingTouchdowns40Plus": 0.379845655, + "receivingTouchdowns50Plus": 0.011747804, "receivingYards": 496.7521033, + "receivingYardsPer10Yards": 49, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 99, "receivingYardsPerReception": 9.815613099, - "turnovers": 0.239552146, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.239552146, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23422,7 +28225,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 444, "receivingYardsAfterCatch": 134, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 82, "receivingYardsPerReception": 10.82926829, + "receptionsPer5Receptions": 2, + "teamLoss": 10, + "teamPointsScored": 12, + "teamWin": 7, "usesPoints": false, }, }, @@ -23460,18 +28272,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 50.91833409, "receivingTargets": 66.32940933, "receivingTouchdowns": 1.456246985, - "receivingTouchdowns40Plus": 0.054424733, - "receivingTouchdowns50Plus": 0.035566563, + "receivingTouchdowns40Plus": 0.218776079, + "receivingTouchdowns50Plus": 0.00676627, "receivingYards": 396.3713729, + "receivingYardsPer10Yards": 39, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 7.784452887, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, "rushing2PtConversions": 0.151082417, "rushingAttempts": 69.4778772, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 13, + "rushingGame100To199Yards": 0.253075712, + "rushingGame200PlusYards": 0.008636503, "rushingTouchdowns": 2.444446035, "rushingTouchdowns40Plus": 0.132408594, "rushingTouchdowns50Plus": 0.092686015, "rushingYards": 308.3912513, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 61, "rushingYardsPerAttempt": 4.43869709, - "turnovers": 0.380479718, + "totalTurnovers": 0.380479718, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23482,10 +28310,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 40, "receivingYards": 173, "receivingYardsAfterCatch": 152, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 6.40740741, + "receptionsPer5Receptions": 3, "rushingAttempts": 22, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 95, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.31818182, + "teamLoss": 4, + "teamPointsScored": 2, + "teamWin": 4, "usesPoints": false, }, }, @@ -23526,11 +28368,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 51.66920834, "receivingTargets": 91.73064638, "receivingTouchdowns": 4.040111516, - "receivingTouchdowns40Plus": 0.16095801, - "receivingTouchdowns50Plus": 0.10518606, + "receivingTouchdowns40Plus": 0.993856087, + "receivingTouchdowns50Plus": 0.030737817, "receivingYards": 707.228873, + "receivingYardsPer10Yards": 70, + "receivingYardsPer20Yards": 35, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 141, "receivingYardsPerReception": 13.68762742, - "turnovers": 0.327969548, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.327969548, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23539,9 +28388,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31, "receivingTargets": 47, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 1, "receivingYards": 539, "receivingYardsAfterCatch": 105, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 102, "receivingYardsPerReception": 17.38709677, + "receptionsPer5Receptions": 2, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 6, "usesPoints": false, }, }, @@ -23580,18 +28440,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52.23857447, "receivingTargets": 97.99630228, "receivingTouchdowns": 3.957692603, - "receivingTouchdowns40Plus": 0.179191402, - "receivingTouchdowns50Plus": 0.117101581, + "receivingTouchdowns40Plus": 1.279620675, + "receivingTouchdowns50Plus": 0.039575897, "receivingYards": 775.7680489, + "receivingYardsPer10Yards": 77, + "receivingYardsPer20Yards": 38, + "receivingYardsPer25Yards": 31, + "receivingYardsPer50Yards": 15, + "receivingYardsPer5Yards": 155, "receivingYardsPerReception": 14.85048275, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, "rushing2PtConversions": 0.008430148, "rushingAttempts": 3.945233553, + "rushingGame100To199Yards": 0.001336657, + "rushingGame200PlusYards": 0.0000456, "rushingTouchdowns": 0.182416142, "rushingTouchdowns40Plus": 0.007250788, "rushingTouchdowns50Plus": 0.005075552, "rushingYards": 24.14314653, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.119573456, - "turnovers": 0.313889012, + "totalTurnovers": 0.313889012, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23601,11 +28473,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 44, "receivingTouchdowns": 1, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 282, "receivingYardsAfterCatch": 96, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 54, "receivingYardsPerReception": 14.1, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamLoss": 13, + "teamPointsScored": 6, + "teamWin": 3, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -23643,20 +28524,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 543.6677909, "passingCompletionPercentage": 0.650619935, "passingCompletions": 353.721103, + "passingCompletionsPer10Completions": 35, + "passingCompletionsPer5Completions": 70, "passingIncompletions": 189.9466879, "passingInterceptions": 13.61859349, "passingTouchdowns": 24.4540569, "passingTouchdowns40Plus": 3.14434104, "passingTouchdowns50Plus": 2.05482687, "passingYards": 3853.66164, + "passingYards300To399": 3.112146593, + "passingYards400Plus": 0.420369404, + "passingYardsPer100Yards": 38, + "passingYardsPer10Yards": 385, + "passingYardsPer20Yards": 192, + "passingYardsPer25Yards": 154, + "passingYardsPer50Yards": 77, + "passingYardsPer5Yards": 770, "rushing2PtConversions": 0.016535413, "rushingAttempts": 44.9010251, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.059646302, + "rushingGame200PlusYards": 0.002035499, "rushingTouchdowns": 0.472922789, "rushingTouchdowns40Plus": 0.084481866, "rushingTouchdowns50Plus": 0.059137306, "rushingYards": 148.7746139, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 29, "rushingYardsPerAttempt": 3.313390141, - "turnovers": 17.25734665, + "totalTurnovers": 17.25734665, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23666,16 +28566,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 442, "passingCompletionPercentage": 0.65158371, "passingCompletions": 288, + "passingCompletionsPer10Completions": 25, + "passingCompletionsPer5Completions": 52, "passingIncompletions": 154, + "passingIncompletionsPer10Incompletions": 11, + "passingIncompletionsPer5Incompletions": 24, "passingInterceptions": 11, "passingTouchdowns": 14, "passingTouchdowns40Plus": 3, "passingYards": 2997, + "passingYards300To399": 2, + "passingYardsPer100Yards": 24, + "passingYardsPer10Yards": 295, + "passingYardsPer20Yards": 144, + "passingYardsPer25Yards": 112, + "passingYardsPer50Yards": 52, + "passingYardsPer5Yards": 594, "rushingAttempts": 47, + "rushingAttemptsPer5Attempts": 4, "rushingTouchdowns": 1, "rushingYards": 102, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 2.17021277, - "turnovers": 12, + "teamLoss": 8, + "teamPointsScored": 90, + "teamWin": 6, + "totalTurnovers": 12, "usesPoints": false, }, }, @@ -23717,11 +28636,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 50.7151988, "receivingTargets": 82.28605651, "receivingTouchdowns": 4.55581682, - "receivingTouchdowns40Plus": 0.207605225, - "receivingTouchdowns50Plus": 0.135670015, + "receivingTouchdowns40Plus": 0.874984895, + "receivingTouchdowns50Plus": 0.027061389, "receivingYards": 675.9123163, + "receivingYardsPer10Yards": 67, + "receivingYardsPer20Yards": 33, + "receivingYardsPer25Yards": 27, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 135, "receivingYardsPerReception": 13.32760853, - "turnovers": 0.301752667, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.301752667, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23731,7 +28657,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 593, "receivingYardsAfterCatch": 113, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 115, "receivingYardsPerReception": 14.46341463, + "receptionsPer5Receptions": 1, + "teamLoss": 11, + "teamPointsScored": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -23770,11 +28705,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 45.80823662, "receivingTargets": 86.70728225, "receivingTouchdowns": 4.824041062, - "receivingTouchdowns40Plus": 0.218061595, - "receivingTouchdowns50Plus": 0.142503252, + "receivingTouchdowns40Plus": 1.044912697, + "receivingTouchdowns50Plus": 0.032316888, "receivingYards": 720.5703073, + "receivingYardsPer10Yards": 72, + "receivingYardsPer20Yards": 36, + "receivingYardsPer25Yards": 28, + "receivingYardsPer50Yards": 14, + "receivingYardsPer5Yards": 144, "receivingYardsPerReception": 15.73014725, - "turnovers": 0.29997519, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.29997519, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23783,7 +28725,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 81, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 13.5, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -23822,20 +28771,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 317.136986, "passingCompletionPercentage": 0.611148743, "passingCompletions": 193.8178704, + "passingCompletionsPer10Completions": 19, + "passingCompletionsPer5Completions": 38, "passingIncompletions": 123.3191155, "passingInterceptions": 8.418748069, "passingTouchdowns": 10.60794125, "passingTouchdowns40Plus": 1.711843859, "passingTouchdowns50Plus": 1.118689962, "passingYards": 2129.861708, + "passingYards300To399": 1.638103105, + "passingYards400Plus": 0.221264778, + "passingYardsPer100Yards": 21, + "passingYardsPer10Yards": 212, + "passingYardsPer20Yards": 106, + "passingYardsPer25Yards": 85, + "passingYardsPer50Yards": 42, + "passingYardsPer5Yards": 425, "rushing2PtConversions": 0.05241847, "rushingAttempts": 28.65884016, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.061169428, + "rushingGame200PlusYards": 0.002087478, "rushingTouchdowns": 0.953183056, "rushingTouchdowns40Plus": 0.054105575, "rushingTouchdowns50Plus": 0.037873903, "rushingYards": 112.7342843, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 3.933665274, - "turnovers": 10.79353383, + "totalTurnovers": 10.79353383, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23847,15 +28815,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 389, "passingCompletionPercentage": 0.62982005, "passingCompletions": 245, + "passingCompletionsPer10Completions": 20, + "passingCompletionsPer5Completions": 46, "passingIncompletions": 144, + "passingIncompletionsPer10Incompletions": 9, + "passingIncompletionsPer5Incompletions": 23, "passingInterceptions": 9, "passingTouchdowns": 7, "passingYards": 2404, + "passingYards300To399": 1, + "passingYardsPer100Yards": 16, + "passingYardsPer10Yards": 234, + "passingYardsPer20Yards": 114, + "passingYardsPer25Yards": 88, + "passingYardsPer50Yards": 41, + "passingYardsPer5Yards": 476, "rushingAttempts": 55, + "rushingAttemptsPer5Attempts": 6, "rushingTouchdowns": 3, "rushingYards": 237, + "rushingYardsPer10Yards": 19, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 43, "rushingYardsPerAttempt": 4.30909091, - "turnovers": 10, + "teamLoss": 6, + "teamPointsScored": 60, + "teamWin": 7, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -23895,18 +28883,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.124136587, "receivingTargets": 5.420483282, "receivingTouchdowns": 0.128902643, - "receivingTouchdowns40Plus": 0.039291689, - "receivingTouchdowns50Plus": 0.025677119, + "receivingTouchdowns40Plus": 0.016067716, + "receivingTouchdowns50Plus": 0.00049694, "receivingYards": 29.31351956, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.107795521, "rushing2PtConversions": 0.042962299, "rushingAttempts": 17.13825811, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.025443055, + "rushingGame200PlusYards": 0.000868274, "rushingTouchdowns": 0.695178975, "rushingTouchdowns40Plus": 0.031953862, "rushingTouchdowns50Plus": 0.022367704, "rushingYards": 74.87074992, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.368632414, - "turnovers": 0.091679932, + "totalTurnovers": 0.091679932, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23918,10 +28919,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 40, "receivingYardsAfterCatch": 38, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 5.71428571, "rushingAttempts": 37, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 152, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 4.10810811, + "teamLoss": 8, + "teamWin": 4, "usesPoints": false, }, }, @@ -23962,11 +28975,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.69528168, "receivingTargets": 15.29356337, "receivingTouchdowns": 0.7609558, - "receivingTouchdowns40Plus": 0.109544077, - "receivingTouchdowns50Plus": 0.071587054, + "receivingTouchdowns40Plus": 0.045754062, + "receivingTouchdowns50Plus": 0.001415074, "receivingYards": 107.6913957, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 11.10760875, - "turnovers": 0.069303745, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.069303745, "usesPoints": false, }, "rawStats": PlayerStats { @@ -23977,10 +28996,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 48, "receivingTargets": 75, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 458, "receivingYardsAfterCatch": 150, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 84, "receivingYardsPerReception": 9.54166667, - "turnovers": 1, + "receptionsPer5Receptions": 5, + "teamLoss": 7, + "teamPointsScored": 12, + "teamWin": 10, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -24018,20 +29048,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 36.06011203, "passingCompletionPercentage": 0.636311174, "passingCompletions": 22.94545224, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.11465979, "passingInterceptions": 1.114945953, "passingTouchdowns": 1.809526319, "passingTouchdowns40Plus": 0.196715842, "passingTouchdowns50Plus": 0.128553803, "passingYards": 241.0412751, + "passingYards300To399": 0.194425039, + "passingYards400Plus": 0.026261725, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushing2PtConversions": 0.004804229, "rushingAttempts": 2.439022649, + "rushingGame100To199Yards": 0.003562845, + "rushingGame200PlusYards": 0.000121586, "rushingTouchdowns": 0.131827044, "rushingTouchdowns40Plus": 0.004573841, "rushingTouchdowns50Plus": 0.003201689, "rushingYards": 9.096771754, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.729679082, - "turnovers": 1.330176552, + "totalTurnovers": 1.330176552, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24042,16 +29085,36 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 83, "passingCompletionPercentage": 0.63855422, "passingCompletions": 53, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 9, "passingIncompletions": 30, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 3, "passingTouchdowns": 4, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 656, + "passingYards300To399": 1, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 64, + "passingYardsPer20Yards": 31, + "passingYardsPer25Yards": 24, + "passingYardsPer50Yards": 12, + "passingYardsPer5Yards": 130, "rushingAttempts": 14, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 84, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 6, - "turnovers": 4, + "teamLoss": 3, + "teamPointsScored": 24, + "teamWin": 2, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -24087,15 +29150,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 26.69337513, "attemptedFieldGoalsFrom40To49": 8.381719792, "attemptedFieldGoalsFrom50Plus": 4.457793647, + "attemptedFieldGoalsFrom50To59": 4.457793647, "madeExtraPoints": 37.63263702, "madeFieldGoals": 22.15036667, "madeFieldGoalsFrom40To49": 6.339259309, "madeFieldGoalsFrom50Plus": 2.75634137, + "madeFieldGoalsFrom50To59": 2.75634137, "madeFieldGoalsFromUnder40": 13.05476599, "missedExtraPoints": 2.99333627, "missedFieldGoals": 4.543008466, "missedFieldGoalsFrom40To49": 2.042460482, "missedFieldGoalsFrom50Plus": 1.701452277, + "missedFieldGoalsFrom50To59": 1.701452277, "missedFieldGoalsFromUnder40": 0.799095707, "usesPoints": false, }, @@ -24105,18 +29171,44 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32, "attemptedFieldGoalsFrom40To49": 13, "attemptedFieldGoalsFrom50Plus": 6, + "attemptedFieldGoalsFrom50To59": 6, "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 1301, + "fieldGoalAttemptedYardsPer100Yards": 7, + "fieldGoalAttemptedYardsPer10Yards": 124, + "fieldGoalAttemptedYardsPer20Yards": 59, + "fieldGoalAttemptedYardsPer25Yards": 45, + "fieldGoalAttemptedYardsPer50Yards": 19, + "fieldGoalAttemptedYardsPer5Yards": 254, + "fieldGoalMadeYards": 1015, + "fieldGoalMadeYardsPer100Yards": 4, + "fieldGoalMadeYardsPer10Yards": 97, + "fieldGoalMadeYardsPer20Yards": 46, + "fieldGoalMadeYardsPer25Yards": 33, + "fieldGoalMadeYardsPer50Yards": 13, + "fieldGoalMadeYardsPer5Yards": 198, + "fieldGoalMissedYards": 286, + "fieldGoalMissedYardsPer10Yards": 26, + "fieldGoalMissedYardsPer20Yards": 11, + "fieldGoalMissedYardsPer25Yards": 10, + "fieldGoalMissedYardsPer50Yards": 4, + "fieldGoalMissedYardsPer5Yards": 54, "madeExtraPoints": 41, "madeFieldGoals": 26, "madeFieldGoalsFrom40To49": 12, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 12, "missedExtraPoints": 3, "missedFieldGoals": 6, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 4, + "missedFieldGoalsFrom50To59": 4, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 8, + "teamPointsScored": 119, + "teamWin": 9, "usesPoints": false, }, }, @@ -24157,11 +29249,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.84259314, "receivingTargets": 22.64551241, "receivingTouchdowns": 0.873247796, - "receivingTouchdowns40Plus": 0.112505344, - "receivingTouchdowns50Plus": 0.073522242, + "receivingTouchdowns40Plus": 0.0616031, + "receivingTouchdowns50Plus": 0.001905251, "receivingYards": 160.5863408, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 11.6008857, - "turnovers": 0.099567507, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.099567507, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24173,7 +29272,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 490, "receivingYardsAfterCatch": 132, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 17.5, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -24213,18 +29320,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36.57585635, "receivingTargets": 47.86912561, "receivingTouchdowns": 1.720782797, - "receivingTouchdowns40Plus": 0.053287421, - "receivingTouchdowns50Plus": 0.03482333, + "receivingTouchdowns40Plus": 0.115515913, + "receivingTouchdowns50Plus": 0.003572657, "receivingYards": 284.859799, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 7.788192196, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.14423395, "rushingAttempts": 88.77292996, + "rushingAttemptsPer10Attempts": 8, + "rushingAttemptsPer5Attempts": 17, + "rushingGame100To199Yards": 0.306557373, + "rushingGame200PlusYards": 0.010461627, "rushingTouchdowns": 2.741346971, "rushingTouchdowns40Plus": 0.170684478, "rushingTouchdowns50Plus": 0.119479135, "rushingYards": 345.5463038, + "rushingYardsPer10Yards": 34, + "rushingYardsPer20Yards": 17, + "rushingYardsPer25Yards": 13, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 69, "rushingYardsPerAttempt": 3.892473798, - "turnovers": 0.507271619, + "totalTurnovers": 0.507271619, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24237,10 +29360,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 204, "receivingYardsAfterCatch": 204, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 5.51351351, + "receptionsPer5Receptions": 3, "rushingAttempts": 26, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 80, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 3.07692308, + "teamLoss": 12, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -24283,11 +29420,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 49.17790664, "receivingTargets": 80.18652279, "receivingTouchdowns": 4.008453132, - "receivingTouchdowns40Plus": 0.169401002, - "receivingTouchdowns50Plus": 0.110703555, + "receivingTouchdowns40Plus": 0.709591496, + "receivingTouchdowns50Plus": 0.021946129, "receivingYards": 626.0507195, + "receivingYardsPer10Yards": 62, + "receivingYardsPer20Yards": 31, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 125, "receivingYardsPerReception": 12.7303247, - "turnovers": 0.498979988, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.498979988, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24295,12 +29439,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 60, "receivingTargets": 90, "receivingTouchdowns": 5, + "receivingTouchdowns40Plus": 2, "receivingYards": 650, "receivingYardsAfterCatch": 300, + "receivingYardsPer100Yards": 2, + "receivingYardsPer10Yards": 55, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 123, "receivingYardsPerReception": 10.83333333, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 7, "rushingAttempts": 3, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2, + "teamLoss": 4, + "teamPointsScored": 30, + "teamWin": 13, "usesPoints": false, }, }, @@ -24336,20 +29493,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 526.7511075, "passingCompletionPercentage": 0.641290453, "passingCompletions": 337.8004563, + "passingCompletionsPer10Completions": 33, + "passingCompletionsPer5Completions": 67, "passingIncompletions": 188.9506512, "passingInterceptions": 10.28560987, "passingTouchdowns": 24.17435978, "passingTouchdowns40Plus": 2.994838521, "passingTouchdowns50Plus": 1.957126973, "passingYards": 3753.322458, + "passingYards300To399": 2.823022386, + "passingYards400Plus": 0.381316304, + "passingYardsPer100Yards": 37, + "passingYardsPer10Yards": 375, + "passingYardsPer20Yards": 187, + "passingYardsPer25Yards": 150, + "passingYardsPer50Yards": 75, + "passingYardsPer5Yards": 750, "rushing2PtConversions": 0.101480842, "rushingAttempts": 55.07757642, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.126656296, + "rushingGame200PlusYards": 0.004322293, "rushingTouchdowns": 1.641566059, "rushingTouchdowns40Plus": 0.104223358, "rushingTouchdowns50Plus": 0.072956351, "rushingYards": 216.1654297, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 43, "rushingYardsPerAttempt": 3.924744765, - "turnovers": 14.69802515, + "totalTurnovers": 14.69802515, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24361,17 +29537,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 276, "passingCompletionPercentage": 0.62318841, "passingCompletions": 172, + "passingCompletionsPer10Completions": 14, + "passingCompletionsPer5Completions": 33, "passingIncompletions": 104, + "passingIncompletionsPer10Incompletions": 7, + "passingIncompletionsPer5Incompletions": 17, "passingInterceptions": 9, "passingTouchdowns": 11, "passingTouchdowns40Plus": 2, "passingTouchdowns50Plus": 1, "passingYards": 1755, + "passingYards300To399": 3, + "passingYardsPer100Yards": 14, + "passingYardsPer10Yards": 172, + "passingYardsPer20Yards": 83, + "passingYardsPer25Yards": 65, + "passingYardsPer50Yards": 31, + "passingYardsPer5Yards": 347, "rushingAttempts": 22, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 86, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 3.90909091, - "turnovers": 10, + "teamLoss": 6, + "teamPointsScored": 72, + "teamWin": 2, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -24410,15 +29604,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 28, "attemptedFieldGoalsFrom40To49": 11, "attemptedFieldGoalsFrom50Plus": 3, + "attemptedFieldGoalsFrom50To59": 3, + "fieldGoalAttemptedYards": 1059, + "fieldGoalAttemptedYardsPer100Yards": 5, + "fieldGoalAttemptedYardsPer10Yards": 100, + "fieldGoalAttemptedYardsPer20Yards": 47, + "fieldGoalAttemptedYardsPer25Yards": 36, + "fieldGoalAttemptedYardsPer50Yards": 15, + "fieldGoalAttemptedYardsPer5Yards": 206, + "fieldGoalMadeYards": 883, + "fieldGoalMadeYardsPer100Yards": 2, + "fieldGoalMadeYardsPer10Yards": 83, + "fieldGoalMadeYardsPer20Yards": 39, + "fieldGoalMadeYardsPer25Yards": 29, + "fieldGoalMadeYardsPer50Yards": 12, + "fieldGoalMadeYardsPer5Yards": 171, + "fieldGoalMissedYards": 176, + "fieldGoalMissedYardsPer10Yards": 15, + "fieldGoalMissedYardsPer20Yards": 7, + "fieldGoalMissedYardsPer25Yards": 5, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 33, "madeExtraPoints": 33, "madeFieldGoals": 24, "madeFieldGoalsFrom40To49": 9, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 13, "missedFieldGoals": 4, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 5, + "teamPointsScored": 105, + "teamWin": 8, "usesPoints": false, }, }, @@ -24458,11 +29678,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.56640937, "receivingTargets": 65.04579938, "receivingTouchdowns": 4.49651007, - "receivingTouchdowns40Plus": 0.108562376, - "receivingTouchdowns50Plus": 0.070945512, + "receivingTouchdowns40Plus": 0.30667693, + "receivingTouchdowns50Plus": 0.009484854, "receivingYards": 457.5092564, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 10.74812894, - "turnovers": 0.254068, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.254068, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24473,7 +29700,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 323, "receivingYardsAfterCatch": 126, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 8.28205128, + "receptionsPer5Receptions": 4, + "teamLoss": 7, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -24518,18 +29754,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.155817593, "receivingTargets": 3.420511422, "receivingTouchdowns": 0.147579796, - "receivingTouchdowns40Plus": 0.032615536, - "receivingTouchdowns50Plus": 0.021314253, + "receivingTouchdowns40Plus": 0.012013403, + "receivingTouchdowns50Plus": 0.000371549, "receivingYards": 26.10442499, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 12.10882826, "rushing2PtConversions": 0.000767658, "rushingAttempts": 0.482135571, + "rushingGame100To199Yards": 0.000404115, + "rushingGame200PlusYards": 0.0000138, "rushingTouchdowns": 0.022627028, "rushingTouchdowns40Plus": 0.000888134, "rushingTouchdowns50Plus": 0.000621694, "rushingYards": 3.120608948, "rushingYardsPerAttempt": 6.472471931, - "turnovers": 0.018355094, + "totalTurnovers": 0.018355094, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24542,13 +29784,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 52, "receivingTargets": 64, "receivingTouchdowns": 2, + "receivingTouchdowns40Plus": 1, "receivingYards": 467, "receivingYardsAfterCatch": 293, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 43, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 8.98076923, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 5, "rushingAttempts": 7, "rushingYards": 44, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 6.28571429, - "turnovers": 1, + "teamLoss": 12, + "teamPointsScored": 12, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -24589,11 +29847,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30.99992167, "receivingTargets": 45.88069012, "receivingTouchdowns": 2.948169009, - "receivingTouchdowns40Plus": 0.124744398, - "receivingTouchdowns50Plus": 0.081520464, + "receivingTouchdowns40Plus": 0.151530008, + "receivingTouchdowns50Plus": 0.004686495, "receivingYards": 333.2207272, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 10.74908288, - "turnovers": 0.19966757, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.19966757, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24602,9 +29867,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 36, "receivingTargets": 60, "receivingTouchdowns": 3, + "receivingTouchdowns40Plus": 1, "receivingYards": 373, "receivingYardsAfterCatch": 151, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 69, "receivingYardsPerReception": 10.36111111, + "receptionsPer5Receptions": 2, + "teamLoss": 6, + "teamPointsScored": 18, + "teamWin": 10, "usesPoints": false, }, }, @@ -24650,11 +29926,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.079782298, "defensiveForcedFumbles": 12.43170181, "defensiveFumbles": 8.080606178, + "defensiveHalfSacks": 73.75423833, "defensiveInterceptions": 14.06823284, "defensiveOver45PointsAllowed": 0.419753086, "defensivePointsAllowed": 422.279233, "defensiveSacks": 36.87711916, "defensiveSafeties": 0.124602121, + "defensiveTacklesPer3Tackles": 337, + "defensiveTacklesPer5Tackles": 202, "defensiveTotalTackles": 1013.116627, "defensiveYardsAllowed": 6037.34728, "fumbleReturnTouchdown": 1.287210479, @@ -24663,6 +29942,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 735.0298794, "puntReturnTouchdown": 0.187824, "puntReturnYards": 197.37, + "totalReturnTouchdowns": 2.334912337, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24685,6 +29965,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 3, "defensiveForcedFumbles": 8, "defensiveFumbles": 7, + "defensiveHalfSacks": 42, "defensiveInterceptions": 10, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, @@ -24692,6 +29973,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSacks": 21, "defensiveSafeties": 1, "defensiveSoloTackles": 675, + "defensiveStuffs": 56, + "defensiveTacklesPer3Tackles": 394, + "defensiveTacklesPer5Tackles": 235, "defensiveTotalTackles": 1199, "defensiveYardsAllowed": 6156, "fumbleReturnTouchdown": 1, @@ -24699,6 +29983,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnTouchdown": 1, "kickoffReturnYards": 634, "puntReturnYards": 292, + "teamLoss": 10, + "teamWin": 7, + "totalReturnTouchdowns": 4, "usesPoints": false, }, }, @@ -24736,20 +30023,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 454.4683404, "passingCompletionPercentage": 0.619798368, "passingCompletions": 281.6787357, + "passingCompletionsPer10Completions": 28, + "passingCompletionsPer5Completions": 56, "passingIncompletions": 172.7896046, "passingInterceptions": 11.66335719, "passingTouchdowns": 18.49887319, "passingTouchdowns40Plus": 2.500286663, "passingTouchdowns50Plus": 1.633937334, "passingYards": 3094.839195, + "passingYards300To399": 2.420833315, + "passingYards400Plus": 0.326991106, + "passingYardsPer100Yards": 30, + "passingYardsPer10Yards": 309, + "passingYardsPer20Yards": 154, + "passingYardsPer25Yards": 123, + "passingYardsPer50Yards": 61, + "passingYardsPer5Yards": 618, "rushing2PtConversions": 0.193546259, "rushingAttempts": 35.87541321, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 7, + "rushingGame100To199Yards": 0.113605766, + "rushingGame200PlusYards": 0.003876929, "rushingTouchdowns": 2.724284915, "rushingTouchdowns40Plus": 0.067471474, "rushingTouchdowns50Plus": 0.047230032, "rushingYards": 184.5602217, + "rushingYardsPer10Yards": 18, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 36, "rushingYardsPerAttempt": 5.144476541, - "turnovers": 14.76087559, + "totalTurnovers": 14.76087559, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24760,21 +30066,40 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 242, "passingCompletionPercentage": 0.54545455, "passingCompletions": 132, + "passingCompletionsPer10Completions": 8, + "passingCompletionsPer5Completions": 22, "passingIncompletions": 110, + "passingIncompletionsPer10Incompletions": 6, + "passingIncompletionsPer5Incompletions": 18, "passingInterceptions": 7, "passingTouchdowns": 6, "passingTouchdowns40Plus": 1, "passingYards": 1688, + "passingYards300To399": 2, + "passingYardsPer100Yards": 13, + "passingYardsPer10Yards": 166, + "passingYardsPer20Yards": 79, + "passingYardsPer25Yards": 64, + "passingYardsPer50Yards": 31, + "passingYardsPer5Yards": 335, "receivingReceptions": 1, "receivingTargets": 1, "receivingTouchdowns": 1, "receivingYards": 2, "receivingYardsPerReception": 2, "rushingAttempts": 28, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 102, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 3.64285714, - "turnovers": 8, + "teamLoss": 4, + "teamPointsScored": 48, + "teamWin": 5, + "totalTurnovers": 8, "usesPoints": false, }, }, @@ -24815,23 +30140,40 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.16709614, "receivingTargets": 19.67874165, "receivingTouchdowns": 1.208246674, - "receivingTouchdowns40Plus": 0.115506919, - "receivingTouchdowns50Plus": 0.075483771, + "receivingTouchdowns40Plus": 0.055569658, + "receivingTouchdowns50Plus": 0.001718649, "receivingYards": 140.550406, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 10.6743662, - "turnovers": 0.084808023, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.084808023, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 3, "defensiveSoloTackles": 5, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 8, "receivingReceptions": 42, "receivingTargets": 65, "receivingTouchdowns": 2, "receivingYards": 391, "receivingYardsAfterCatch": 174, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 72, "receivingYardsPerReception": 9.30952381, + "receptionsPer5Receptions": 3, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 8, "usesPoints": false, }, }, @@ -24871,18 +30213,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.187442647, "receivingTargets": 9.141968988, "receivingTouchdowns": 0.257419913, - "receivingTouchdowns40Plus": 0.036978579, - "receivingTouchdowns50Plus": 0.024165501, + "receivingTouchdowns40Plus": 0.024639029, + "receivingTouchdowns50Plus": 0.000762032, "receivingYards": 48.21767841, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 6.708600093, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.13536167, "rushingAttempts": 54.68003702, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 0.125391181, + "rushingGame200PlusYards": 0.00427912, "rushingTouchdowns": 1.899846705, "rushingTouchdowns40Plus": 0.103324616, "rushingTouchdowns50Plus": 0.072327231, "rushingYards": 219.4372632, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 43, "rushingYardsPerAttempt": 4.013114752, - "turnovers": 0.321516925, + "totalTurnovers": 0.321516925, "usesPoints": false, }, "rawStats": PlayerStats { @@ -24891,11 +30247,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingYards": 101, "receivingYardsAfterCatch": 88, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 7.21428571, "rushingAttempts": 69, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 8, "rushingTouchdowns": 2, "rushingYards": 287, + "rushingYardsPer10Yards": 24, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 5, + "rushingYardsPer5Yards": 53, "rushingYardsPerAttempt": 4.15942029, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -24931,15 +30300,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.97022433, "attemptedFieldGoalsFrom40To49": 10.35265044, "attemptedFieldGoalsFrom50Plus": 5.506027464, + "attemptedFieldGoalsFrom50To59": 5.506027464, "madeExtraPoints": 31.72077096, "madeFieldGoals": 27.94222903, "madeFieldGoalsFrom40To49": 8.01306434, "madeFieldGoalsFrom50Plus": 3.501893512, + "madeFieldGoalsFrom50To59": 3.501893512, "madeFieldGoalsFromUnder40": 16.42727118, "missedExtraPoints": 1.88135247, "missedFieldGoals": 5.027995302, "missedFieldGoalsFrom40To49": 2.3395861, "missedFieldGoalsFrom50Plus": 2.004133952, + "missedFieldGoalsFrom50To59": 2.004133952, "missedFieldGoalsFromUnder40": 0.68427525, "usesPoints": false, }, @@ -24949,17 +30321,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 35, "attemptedFieldGoalsFrom40To49": 14, "attemptedFieldGoalsFrom50Plus": 2, + "attemptedFieldGoalsFrom50To59": 2, "defensiveAssistedTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 1367, + "fieldGoalAttemptedYardsPer100Yards": 9, + "fieldGoalAttemptedYardsPer10Yards": 131, + "fieldGoalAttemptedYardsPer20Yards": 61, + "fieldGoalAttemptedYardsPer25Yards": 48, + "fieldGoalAttemptedYardsPer50Yards": 21, + "fieldGoalAttemptedYardsPer5Yards": 266, + "fieldGoalMadeYards": 1294, + "fieldGoalMadeYardsPer100Yards": 8, + "fieldGoalMadeYardsPer10Yards": 123, + "fieldGoalMadeYardsPer20Yards": 57, + "fieldGoalMadeYardsPer25Yards": 45, + "fieldGoalMadeYardsPer50Yards": 19, + "fieldGoalMadeYardsPer5Yards": 250, + "fieldGoalMissedYards": 73, + "fieldGoalMissedYardsPer10Yards": 7, + "fieldGoalMissedYardsPer20Yards": 3, + "fieldGoalMissedYardsPer25Yards": 2, + "fieldGoalMissedYardsPer5Yards": 14, "madeExtraPoints": 30, "madeFieldGoals": 33, "madeFieldGoalsFrom40To49": 13, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 18, "missedExtraPoints": 2, "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 10, + "teamPointsScored": 129, + "teamWin": 7, "usesPoints": false, }, }, @@ -25000,11 +30396,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.28338262, "receivingTargets": 33.24750984, "receivingTouchdowns": 2.009008934, - "receivingTouchdowns40Plus": 0.176726265, - "receivingTouchdowns50Plus": 0.115490614, + "receivingTouchdowns40Plus": 0.182045014, + "receivingTouchdowns50Plus": 0.005630258, "receivingYards": 266.5149437, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 53, "receivingYardsPerReception": 13.82096435, - "turnovers": 0.136841346, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.136841346, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25015,7 +30418,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 479, "receivingYardsAfterCatch": 115, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 12.60526316, + "receptionsPer5Receptions": 4, + "teamLoss": 8, + "teamPointsScored": 18, + "teamWin": 6, "usesPoints": false, }, }, @@ -25053,34 +30465,64 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 33.61126423, "passingCompletionPercentage": 0.657723904, "passingCompletions": 22.10693193, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11.50433231, "passingInterceptions": 0.657137873, "passingTouchdowns": 1.800959906, "passingTouchdowns40Plus": 0.205429192, "passingTouchdowns50Plus": 0.134247977, "passingYards": 246.7615899, + "passingYards300To399": 0.212276966, + "passingYards400Plus": 0.028673052, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 49, "rushing2PtConversions": 0.010071108, "rushingAttempts": 3.382477143, + "rushingGame100To199Yards": 0.006717334, + "rushingGame200PlusYards": 0.000229237, "rushingTouchdowns": 0.196823781, "rushingTouchdowns40Plus": 0.006397208, "rushingTouchdowns50Plus": 0.004478046, "rushingYards": 12.45901159, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.683398606, - "turnovers": 0.826131603, + "totalTurnovers": 0.826131603, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 79, "passingCompletionPercentage": 0.62025316, "passingCompletions": 49, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 30, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 4, "passingTouchdowns": 4, "passingYards": 683, + "passingYards300To399": 1, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 67, + "passingYardsPer20Yards": 33, + "passingYardsPer25Yards": 26, + "passingYardsPer50Yards": 12, + "passingYardsPer5Yards": 135, "rushingAttempts": 3, "rushingYards": 27, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 9, - "turnovers": 4, + "teamLoss": 5, + "teamPointsScored": 24, + "teamWin": 2, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -25126,8 +30568,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 392, "receivingYardsAfterCatch": 88, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 10.59459459, - "turnovers": 1, + "receptionsPer5Receptions": 2, + "teamLoss": 4, + "teamPointsScored": 26, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -25163,20 +30614,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 534.864313, "passingCompletionPercentage": 0.651329304, "passingCompletions": 348.3728006, + "passingCompletionsPer10Completions": 34, + "passingCompletionsPer5Completions": 69, "passingIncompletions": 186.4915124, "passingInterceptions": 11.75798537, "passingTouchdowns": 24.48337844, "passingTouchdowns40Plus": 3.171731907, "passingTouchdowns50Plus": 2.072726801, "passingYards": 3871.418924, + "passingYards300To399": 3.170040207, + "passingYards400Plus": 0.428189313, + "passingYardsPer100Yards": 38, + "passingYardsPer10Yards": 387, + "passingYardsPer20Yards": 193, + "passingYardsPer25Yards": 154, + "passingYardsPer50Yards": 77, + "passingYardsPer5Yards": 774, "rushing2PtConversions": 0.063733711, "rushingAttempts": 38.05985474, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 7, + "rushingGame100To199Yards": 0.034393402, + "rushingGame200PlusYards": 0.001173715, "rushingTouchdowns": 1.590498903, "rushingTouchdowns40Plus": 0.071333985, "rushingTouchdowns50Plus": 0.04993379, "rushingYards": 113.3028654, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 2.97696526, - "turnovers": 15.78331303, + "totalTurnovers": 15.78331303, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25187,15 +30657,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 461, "passingCompletionPercentage": 0.670282, "passingCompletions": 309, + "passingCompletionsPer10Completions": 26, + "passingCompletionsPer5Completions": 57, "passingIncompletions": 152, + "passingIncompletionsPer10Incompletions": 10, + "passingIncompletionsPer5Incompletions": 26, "passingInterceptions": 13, "passingTouchdowns": 14, "passingYards": 3057, + "passingYards300To399": 3, + "passingYardsPer100Yards": 24, + "passingYardsPer10Yards": 301, + "passingYardsPer20Yards": 147, + "passingYardsPer25Yards": 116, + "passingYardsPer50Yards": 55, + "passingYardsPer5Yards": 606, "rushingAttempts": 27, "rushingTouchdowns": 1, "rushingYards": 70, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 2.59259259, - "turnovers": 18, + "teamLoss": 7, + "teamPointsScored": 90, + "teamWin": 4, + "totalTurnovers": 18, "usesPoints": false, }, }, @@ -25233,20 +30721,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 562.7676282, "passingCompletionPercentage": 0.628464182, "passingCompletions": 353.6792969, + "passingCompletionsPer10Completions": 35, + "passingCompletionsPer5Completions": 70, "passingIncompletions": 209.0883313, "passingInterceptions": 15.79674044, "passingTouchdowns": 19.62977807, "passingTouchdowns40Plus": 3.394091117, "passingTouchdowns50Plus": 2.218038545, "passingYards": 4015.87303, + "passingYards300To399": 3.639632993, + "passingYards400Plus": 0.491618985, + "passingYardsPer100Yards": 40, + "passingYardsPer10Yards": 401, + "passingYardsPer20Yards": 200, + "passingYardsPer25Yards": 160, + "passingYardsPer50Yards": 80, + "passingYardsPer5Yards": 803, "rushing2PtConversions": 0.07179793, "rushingAttempts": 44.04693348, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.069385136, + "rushingGame200PlusYards": 0.002367848, "rushingTouchdowns": 1.553932457, "rushingTouchdowns40Plus": 0.082834719, "rushingTouchdowns50Plus": 0.057984304, "rushingYards": 160.3570106, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 6, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 32, "rushingYardsPerAttempt": 3.6405942, - "turnovers": 19.75541173, + "totalTurnovers": 19.75541173, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25257,17 +30764,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 335, "passingCompletionPercentage": 0.6, "passingCompletions": 201, + "passingCompletionsPer10Completions": 17, + "passingCompletionsPer5Completions": 35, "passingIncompletions": 134, + "passingIncompletionsPer10Incompletions": 8, + "passingIncompletionsPer5Incompletions": 21, "passingInterceptions": 8, "passingTouchdowns": 10, "passingTouchdowns40Plus": 2, "passingTouchdowns50Plus": 2, "passingYards": 2163, + "passingYardsPer100Yards": 16, + "passingYardsPer10Yards": 212, + "passingYardsPer20Yards": 101, + "passingYardsPer25Yards": 80, + "passingYardsPer50Yards": 36, + "passingYardsPer5Yards": 431, "rushingAttempts": 31, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 89, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 2.87096774, - "turnovers": 10, + "teamLoss": 9, + "teamPointsScored": 66, + "teamWin": 3, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -25312,11 +30837,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.034900894, "receivingTargets": 11.25424454, "receivingTouchdowns": 0.632298392, - "receivingTouchdowns40Plus": 0.104855905, - "receivingTouchdowns50Plus": 0.068523334, + "receivingTouchdowns40Plus": 0.036067103, + "receivingTouchdowns50Plus": 0.001115477, "receivingYards": 79.56367634, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 11.30985035, - "turnovers": 0.07879089, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.07879089, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25329,11 +30860,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 538, "receivingYardsAfterCatch": 206, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 100, "receivingYardsPerReception": 11.69565217, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": -15, "rushingYardsPerAttempt": -7.5, - "turnovers": 2, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 10, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -25369,15 +30909,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.04072081, "attemptedFieldGoalsFrom40To49": 10.06078633, "attemptedFieldGoalsFrom50Plus": 5.350800375, + "attemptedFieldGoalsFrom50To59": 5.350800375, "madeExtraPoints": 37.14498739, "madeFieldGoals": 26.74719218, "madeFieldGoalsFrom40To49": 7.659271279, "madeFieldGoalsFrom50Plus": 3.335151025, + "madeFieldGoalsFrom50To59": 3.335151025, "madeFieldGoalsFromUnder40": 15.75276988, "missedExtraPoints": 2.740128716, "missedFieldGoals": 5.293528629, "missedFieldGoalsFrom40To49": 2.401515056, "missedFieldGoalsFrom50Plus": 2.015649351, + "missedFieldGoalsFrom50To59": 2.015649351, "missedFieldGoalsFromUnder40": 0.876364222, "usesPoints": false, }, @@ -25387,18 +30930,44 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31, "attemptedFieldGoalsFrom40To49": 8, "attemptedFieldGoalsFrom50Plus": 6, + "attemptedFieldGoalsFrom50To59": 4, "attemptedFieldGoalsFrom60Plus": 2, + "fieldGoalAttemptedYards": 1193, + "fieldGoalAttemptedYardsPer100Yards": 3, + "fieldGoalAttemptedYardsPer10Yards": 112, + "fieldGoalAttemptedYardsPer20Yards": 51, + "fieldGoalAttemptedYardsPer25Yards": 37, + "fieldGoalAttemptedYardsPer50Yards": 14, + "fieldGoalAttemptedYardsPer5Yards": 231, + "fieldGoalMadeYards": 857, + "fieldGoalMadeYardsPer100Yards": 2, + "fieldGoalMadeYardsPer10Yards": 82, + "fieldGoalMadeYardsPer20Yards": 37, + "fieldGoalMadeYardsPer25Yards": 27, + "fieldGoalMadeYardsPer50Yards": 11, + "fieldGoalMadeYardsPer5Yards": 167, + "fieldGoalMissedYards": 336, + "fieldGoalMissedYardsPer10Yards": 29, + "fieldGoalMissedYardsPer20Yards": 13, + "fieldGoalMissedYardsPer25Yards": 9, + "fieldGoalMissedYardsPer50Yards": 2, + "fieldGoalMissedYardsPer5Yards": 63, "madeExtraPoints": 33, "madeFieldGoals": 23, "madeFieldGoalsFrom40To49": 4, "madeFieldGoalsFrom50Plus": 4, + "madeFieldGoalsFrom50To59": 3, "madeFieldGoalsFrom60Plus": 1, "madeFieldGoalsFromUnder40": 15, "missedFieldGoals": 8, "missedFieldGoalsFrom40To49": 4, "missedFieldGoalsFrom50Plus": 2, + "missedFieldGoalsFrom50To59": 1, "missedFieldGoalsFrom60Plus": 1, "missedFieldGoalsFromUnder40": 2, + "teamLoss": 10, + "teamPointsScored": 102, + "teamWin": 7, "usesPoints": false, }, }, @@ -25439,15 +31008,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8, "receivingTargets": 10, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 99, "receivingYardsAfterCatch": 114, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 12.375, "rushingAttempts": 16, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 84, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 5.25, + "teamLoss": 6, + "teamPointsScored": 12, + "teamWin": 2, "usesPoints": false, }, }, @@ -25487,18 +31067,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.088916481, "receivingTargets": 5.243156653, "receivingTouchdowns": 0.165434509, - "receivingTouchdowns40Plus": 0.037985559, - "receivingTouchdowns50Plus": 0.024823563, + "receivingTouchdowns40Plus": 0.015640957, + "receivingTouchdowns50Plus": 0.000483741, "receivingYards": 28.65840444, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.008801616, "rushing2PtConversions": 0.025151222, "rushingAttempts": 11.44991693, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.006820163, + "rushingGame200PlusYards": 0.000232746, "rushingTouchdowns": 0.47741174, "rushingTouchdowns40Plus": 0.021137547, "rushingTouchdowns50Plus": 0.014796283, "rushingYards": 51.10242856, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.463126578, - "turnovers": 0.049975445, + "totalTurnovers": 0.049975445, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25508,10 +31101,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 15, "receivingYards": 96, "receivingYardsAfterCatch": 81, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 10.66666667, "rushingAttempts": 24, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 102, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.25, + "teamLoss": 7, + "teamWin": 2, "usesPoints": false, }, }, @@ -25547,15 +31151,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 33.005501, "attemptedFieldGoalsFrom40To49": 10.36372731, "attemptedFieldGoalsFrom50Plus": 5.511918667, + "attemptedFieldGoalsFrom50To59": 5.511918667, "madeExtraPoints": 32.93528663, "madeFieldGoals": 27.95546252, "madeFieldGoalsFrom40To49": 8.016405639, "madeFieldGoalsFrom50Plus": 3.502857586, + "madeFieldGoalsFrom50To59": 3.502857586, "madeFieldGoalsFromUnder40": 16.4361993, "missedExtraPoints": 1.972054022, "missedFieldGoals": 5.050038475, "missedFieldGoalsFrom40To49": 2.347321674, "missedFieldGoalsFrom50Plus": 2.00906108, + "missedFieldGoalsFrom50To59": 2.00906108, "missedFieldGoalsFromUnder40": 0.693655721, "usesPoints": false, }, @@ -25565,16 +31172,42 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 35, "attemptedFieldGoalsFrom40To49": 13, "attemptedFieldGoalsFrom50Plus": 3, + "attemptedFieldGoalsFrom50To59": 3, + "fieldGoalAttemptedYards": 1305, + "fieldGoalAttemptedYardsPer100Yards": 5, + "fieldGoalAttemptedYardsPer10Yards": 124, + "fieldGoalAttemptedYardsPer20Yards": 57, + "fieldGoalAttemptedYardsPer25Yards": 46, + "fieldGoalAttemptedYardsPer50Yards": 20, + "fieldGoalAttemptedYardsPer5Yards": 254, + "fieldGoalMadeYards": 1091, + "fieldGoalMadeYardsPer100Yards": 3, + "fieldGoalMadeYardsPer10Yards": 104, + "fieldGoalMadeYardsPer20Yards": 47, + "fieldGoalMadeYardsPer25Yards": 37, + "fieldGoalMadeYardsPer50Yards": 16, + "fieldGoalMadeYardsPer5Yards": 213, + "fieldGoalMissedYards": 214, + "fieldGoalMissedYardsPer10Yards": 20, + "fieldGoalMissedYardsPer20Yards": 9, + "fieldGoalMissedYardsPer25Yards": 6, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 41, "madeExtraPoints": 36, "madeFieldGoals": 30, "madeFieldGoalsFrom40To49": 10, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 18, "missedExtraPoints": 1, "missedFieldGoals": 5, "missedFieldGoalsFrom40To49": 3, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 8, + "teamPointsScored": 126, + "teamWin": 9, "usesPoints": false, }, }, @@ -25615,16 +31248,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.45260392, "receivingTargets": 19.61141037, "receivingTouchdowns": 1.048679378, - "receivingTouchdowns40Plus": 0.113964138, - "receivingTouchdowns50Plus": 0.074475564, + "receivingTouchdowns40Plus": 0.055515297, + "receivingTouchdowns50Plus": 0.001716968, "receivingYards": 139.7689624, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 10.38973296, - "turnovers": 0.086646952, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.086646952, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveSoloTackles": 6, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 7, "fumbles": 1, "receivingReceptions": 29, @@ -25632,7 +31273,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 265, "receivingYardsAfterCatch": 117, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 49, "receivingYardsPerReception": 9.13793103, + "receptionsPer5Receptions": 1, + "teamLoss": 12, + "teamPointsScored": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -25669,16 +31319,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 18, "attemptedFieldGoalsFrom40To49": 8, "attemptedFieldGoalsFrom50Plus": 2, + "attemptedFieldGoalsFrom50To59": 2, "defensiveSoloTackles": 2, "defensiveTotalTackles": 2, + "fieldGoalAttemptedYards": 767, + "fieldGoalAttemptedYardsPer100Yards": 5, + "fieldGoalAttemptedYardsPer10Yards": 74, + "fieldGoalAttemptedYardsPer20Yards": 35, + "fieldGoalAttemptedYardsPer25Yards": 28, + "fieldGoalAttemptedYardsPer50Yards": 13, + "fieldGoalAttemptedYardsPer5Yards": 151, + "fieldGoalMadeYards": 602, + "fieldGoalMadeYardsPer100Yards": 3, + "fieldGoalMadeYardsPer10Yards": 57, + "fieldGoalMadeYardsPer20Yards": 27, + "fieldGoalMadeYardsPer25Yards": 21, + "fieldGoalMadeYardsPer50Yards": 10, + "fieldGoalMadeYardsPer5Yards": 118, + "fieldGoalMissedYards": 165, + "fieldGoalMissedYardsPer10Yards": 15, + "fieldGoalMissedYardsPer20Yards": 7, + "fieldGoalMissedYardsPer25Yards": 6, + "fieldGoalMissedYardsPer50Yards": 2, + "fieldGoalMissedYardsPer5Yards": 32, "madeExtraPoints": 15, "madeFieldGoals": 15, "madeFieldGoalsFrom40To49": 6, "madeFieldGoalsFrom50Plus": 2, + "madeFieldGoalsFrom50To59": 2, "madeFieldGoalsFromUnder40": 7, "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 1, + "teamPointsScored": 60, + "teamWin": 5, "usesPoints": false, }, }, @@ -25719,18 +31394,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39.56116252, "receivingTargets": 58.09397812, "receivingTouchdowns": 4.747848617, - "receivingTouchdowns40Plus": 0.180294287, - "receivingTouchdowns50Plus": 0.117822317, + "receivingTouchdowns40Plus": 0.324054708, + "receivingTouchdowns50Plus": 0.010022311, "receivingYards": 460.916043, + "receivingYardsPer10Yards": 46, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 92, "receivingYardsPerReception": 11.65072039, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.004160421, "rushingAttempts": 2.121729024, + "rushingGame100To199Yards": 0.000333298, + "rushingGame200PlusYards": 0.0000114, "rushingTouchdowns": 0.084891273, "rushingTouchdowns40Plus": 0.003895741, "rushingTouchdowns50Plus": 0.002727018, "rushingYards": 12.55231843, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.916079896, - "turnovers": 0.380722123, + "totalTurnovers": 0.380722123, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25743,7 +31429,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 417, "receivingYardsAfterCatch": 185, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 78, "receivingYardsPerReception": 12.26470588, + "receptionsPer5Receptions": 2, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -25781,20 +31476,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 314.5232871, "passingCompletionPercentage": 0.638413469, "passingCompletions": 200.7959027, + "passingCompletionsPer10Completions": 20, + "passingCompletionsPer5Completions": 40, "passingIncompletions": 113.7273843, "passingInterceptions": 6.34539466, "passingTouchdowns": 12.1608454, "passingTouchdowns40Plus": 1.551012498, "passingTouchdowns50Plus": 1.013586668, "passingYards": 2116.62527, + "passingYards300To399": 1.24342231, + "passingYards400Plus": 0.167953751, + "passingYardsPer100Yards": 21, + "passingYardsPer10Yards": 211, + "passingYardsPer20Yards": 105, + "passingYardsPer25Yards": 84, + "passingYardsPer50Yards": 42, + "passingYardsPer5Yards": 423, "rushing2PtConversions": 0.066875681, "rushingAttempts": 32.3326749, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.051503298, + "rushingGame200PlusYards": 0.00175761, "rushingTouchdowns": 1.768105622, "rushingTouchdowns40Plus": 0.061068287, "rushingTouchdowns50Plus": 0.042747801, "rushingYards": 109.1829017, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 3.376859541, - "turnovers": 9.131599082, + "totalTurnovers": 9.131599082, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25805,15 +31519,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 369, "passingCompletionPercentage": 0.6395664, "passingCompletions": 236, + "passingCompletionsPer10Completions": 20, + "passingCompletionsPer5Completions": 43, "passingIncompletions": 133, + "passingIncompletionsPer10Incompletions": 9, + "passingIncompletionsPer5Incompletions": 22, "passingInterceptions": 6, "passingTouchdowns": 12, "passingYards": 2608, + "passingYards300To399": 1, + "passingYardsPer100Yards": 22, + "passingYardsPer10Yards": 256, + "passingYardsPer20Yards": 125, + "passingYardsPer25Yards": 99, + "passingYardsPer50Yards": 47, + "passingYardsPer5Yards": 517, "rushingAttempts": 49, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 2, "rushingYards": 243, + "rushingYardsPer10Yards": 20, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer5Yards": 44, "rushingYardsPerAttempt": 4.95918367, - "turnovers": 10, + "teamLoss": 9, + "teamPointsScored": 84, + "teamWin": 7, + "totalTurnovers": 10, "usesPoints": false, }, }, @@ -25855,18 +31588,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 28.92620739, "receivingTargets": 37.28763809, "receivingTouchdowns": 0.830666221, - "receivingTouchdowns40Plus": 0.037908275, - "receivingTouchdowns50Plus": 0.024773058, + "receivingTouchdowns40Plus": 0.074057958, + "receivingTouchdowns50Plus": 0.002290452, "receivingYards": 198.3726802, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 6.857887642, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.043248121, "rushingAttempts": 47.57519072, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 0.11716733, + "rushingGame200PlusYards": 0.003998471, "rushingTouchdowns": 1.387749426, "rushingTouchdowns40Plus": 0.089513926, "rushingTouchdowns50Plus": 0.062659748, "rushingYards": 213.9582403, + "rushingYardsPer10Yards": 21, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 42, "rushingYardsPerAttempt": 4.497265005, - "turnovers": 0.724253981, + "totalTurnovers": 0.724253981, "usesPoints": false, }, "rawStats": PlayerStats { @@ -25880,10 +31629,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 177, "receivingYardsAfterCatch": 151, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 8.42857143, "rushingAttempts": 22, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 145, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 6.59090909, + "teamLoss": 5, + "teamPointsScored": 24, + "teamWin": 7, "usesPoints": false, }, }, @@ -25927,9 +31690,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYardsAfterCatch": 9, "receivingYardsPerReception": 1.5, "rushingAttempts": 76, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 12, "rushingTouchdowns": 1, "rushingYards": 366, + "rushingYardsPer10Yards": 32, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 67, "rushingYardsPerAttempt": 4.81578947, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -25971,30 +31744,57 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 55.85383874, "receivingTargets": 86.3651959, "receivingTouchdowns": 2.911652865, - "receivingTouchdowns40Plus": 0.141077608, - "receivingTouchdowns50Plus": 0.092194217, + "receivingTouchdowns40Plus": 0.771139967, + "receivingTouchdowns50Plus": 0.02384969, "receivingYards": 645.808329, + "receivingYardsPer10Yards": 64, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 129, "receivingYardsPerReception": 11.5624699, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, "rushing2PtConversions": 0.027548996, "rushingAttempts": 11.81596189, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.012872351, + "rushingGame200PlusYards": 0.000439284, "rushingTouchdowns": 0.545489675, "rushingTouchdowns40Plus": 0.021809176, "rushingTouchdowns50Plus": 0.015266423, "rushingYards": 71.89069634, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 6.084201778, - "turnovers": 0.390077278, + "totalTurnovers": 0.390077278, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 23, "receivingTargets": 31, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 227, "receivingYardsAfterCatch": 126, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 9.86956522, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": -1, "rushingYardsPerAttempt": -0.5, + "teamLoss": 2, + "teamPointsScored": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -26034,18 +31834,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.64702814, "receivingTargets": 23.4110226, "receivingTouchdowns": 0.475965721, - "receivingTouchdowns40Plus": 0.040102647, - "receivingTouchdowns50Plus": 0.02620708, + "receivingTouchdowns40Plus": 0.051859213, + "receivingTouchdowns50Plus": 0.001603893, "receivingYards": 128.0626569, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 7.69282396, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.094497684, "rushingAttempts": 54.68657423, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 10, + "rushingGame100To199Yards": 0.131943052, + "rushingGame200PlusYards": 0.00450271, "rushingTouchdowns": 1.796069667, "rushingTouchdowns40Plus": 0.103287416, "rushingTouchdowns50Plus": 0.072301191, "rushingYards": 226.9097821, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 9, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 45, "rushingYardsPerAttempt": 4.149277685, - "turnovers": 0.286169026, + "totalTurnovers": 0.286169026, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26058,11 +31874,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 26, "receivingYards": 104, "receivingYardsAfterCatch": 124, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 5.2, + "receptionsPer5Receptions": 2, "rushingAttempts": 42, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 123, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 2.92857143, + "teamLoss": 13, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -26103,18 +31934,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.680781941, "receivingTargets": 2.237581489, "receivingTouchdowns": 0.070494514, - "receivingTouchdowns40Plus": 0.035281102, - "receivingTouchdowns50Plus": 0.0230562, + "receivingTouchdowns40Plus": 0.006967369, + "receivingTouchdowns50Plus": 0.000215486, "receivingYards": 11.92311379, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.0937898, "rushing2PtConversions": 0.01363475, "rushingAttempts": 13.89050563, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.008705094, + "rushingGame200PlusYards": 0.000297071, "rushingTouchdowns": 0.471278416, "rushingTouchdowns40Plus": 0.025678807, "rushingTouchdowns50Plus": 0.017975165, "rushingYards": 57.61812483, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.148022136, - "turnovers": 0.060127548, + "totalTurnovers": 0.060127548, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26122,9 +31964,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSoloTackles": 2, "defensiveTotalTackles": 6, "rushingAttempts": 43, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 258, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 48, "rushingYardsPerAttempt": 6, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 13, "usesPoints": false, }, }, @@ -26167,11 +32019,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.74340088, "receivingTargets": 2.707796693, "receivingTouchdowns": 0.211568824, - "receivingTouchdowns40Plus": 0.180991654, - "receivingTouchdowns50Plus": 0.118278046, + "receivingTouchdowns40Plus": 0.012234448, + "receivingTouchdowns50Plus": 0.000378385, "receivingYards": 21.80514587, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.50724725, - "turnovers": 0.012539997, + "totalTurnovers": 0.012539997, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26185,11 +32040,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 569, "receivingYardsAfterCatch": 176, + "receivingYardsPer10Yards": 51, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 9.98245614, + "receptionsPer5Receptions": 6, "rushingAttempts": 2, "rushingYards": 6, "rushingYardsPerAttempt": 3, - "turnovers": 3, + "teamLoss": 7, + "teamPointsScored": 24, + "teamWin": 9, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -26227,20 +32091,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 479.8189528, "passingCompletionPercentage": 0.636157908, "passingCompletions": 305.2406212, + "passingCompletionsPer10Completions": 30, + "passingCompletionsPer5Completions": 61, "passingIncompletions": 174.5783316, "passingInterceptions": 12.98463447, "passingTouchdowns": 23.4918161, "passingTouchdowns40Plus": 2.739475761, "passingTouchdowns50Plus": 1.79024741, "passingYards": 3471.499443, + "passingYards300To399": 2.525894122, + "passingYards400Plus": 0.341182066, + "passingYardsPer100Yards": 34, + "passingYardsPer10Yards": 347, + "passingYardsPer20Yards": 173, + "passingYardsPer25Yards": 138, + "passingYardsPer50Yards": 69, + "passingYardsPer5Yards": 694, "rushing2PtConversions": 0.089757356, "rushingAttempts": 69.11935434, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 13, + "rushingGame100To199Yards": 0.309288143, + "rushingGame200PlusYards": 0.010554818, "rushingTouchdowns": 1.842288756, "rushingTouchdowns40Plus": 0.13216077, "rushingTouchdowns50Plus": 0.092512539, "rushingYards": 326.3929352, + "rushingYardsPer10Yards": 32, + "rushingYardsPer20Yards": 16, + "rushingYardsPer25Yards": 13, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 65, "rushingYardsPerAttempt": 4.722164122, - "turnovers": 16.96604974, + "totalTurnovers": 16.96604974, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26249,14 +32132,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 115, "passingCompletionPercentage": 0.63478261, "passingCompletions": 73, + "passingCompletionsPer10Completions": 6, + "passingCompletionsPer5Completions": 14, "passingIncompletions": 42, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 8, "passingInterceptions": 5, "passingTouchdowns": 4, "passingYards": 858, + "passingYards300To399": 1, + "passingYardsPer100Yards": 7, + "passingYardsPer10Yards": 84, + "passingYardsPer20Yards": 41, + "passingYardsPer25Yards": 33, + "passingYardsPer50Yards": 16, + "passingYardsPer5Yards": 170, "rushingAttempts": 5, "rushingYards": 16, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.2, - "turnovers": 5, + "teamLoss": 3, + "teamPointsScored": 24, + "teamWin": 1, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -26301,16 +32199,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 28, "receivingTargets": 34, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 2, "receivingYards": 488, "receivingYardsAfterCatch": 170, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 93, "receivingYardsPerReception": 17.42857143, + "receptionsPer5Receptions": 1, "rushingAttempts": 4, "rushingTouchdowns": 1, "rushingTouchdowns40Plus": 1, "rushingYards": 57, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 14.25, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 5, "usesPoints": false, }, }, @@ -26350,15 +32259,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 140, "passingCompletionPercentage": 0.58571429, "passingCompletions": 82, + "passingCompletionsPer10Completions": 6, + "passingCompletionsPer5Completions": 14, "passingIncompletions": 58, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 9, "passingInterceptions": 3, "passingTouchdowns": 7, "passingYards": 1143, + "passingYards300To399": 1, + "passingYardsPer100Yards": 9, + "passingYardsPer10Yards": 113, + "passingYardsPer20Yards": 56, + "passingYardsPer25Yards": 43, + "passingYardsPer50Yards": 20, + "passingYardsPer5Yards": 227, "rushingAttempts": 26, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 2, "rushingYards": 106, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.07692308, - "turnovers": 5, + "teamLoss": 2, + "teamPointsScored": 54, + "teamWin": 4, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -26403,12 +32331,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1.024521859, "defensiveForcedFumbles": 11.4701709, "defensiveFumbles": 7.455611082, + "defensiveHalfSacks": 76.14819314, "defensiveInterceptions": 12.76351609, "defensiveOver45PointsAllowed": 1.046153846, "defensiveOver550YardsAllowed": 0.62962963, "defensivePointsAllowed": 433.3399508, "defensiveSacks": 38.07409657, "defensiveSafeties": 0.133581543, + "defensiveTacklesPer3Tackles": 342, + "defensiveTacklesPer5Tackles": 205, "defensiveTotalTackles": 1027.101198, "defensiveYardsAllowed": 6143.336702, "fumbleReturnTouchdown": 1.257791827, @@ -26417,6 +32348,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 680.104, "puntReturnTouchdown": 0.187824, "puntReturnYards": 230.91, + "totalReturnTouchdowns": 2.289301448, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26438,6 +32370,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 13, "defensiveFumbles": 10, + "defensiveHalfSacks": 78, "defensiveInterceptions": 12, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 2, @@ -26445,12 +32378,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSacks": 39, "defensiveSafeties": 1, "defensiveSoloTackles": 758, + "defensiveStuffs": 77, + "defensiveTacklesPer3Tackles": 367, + "defensiveTacklesPer5Tackles": 215, "defensiveTotalTackles": 1115, "defensiveYardsAllowed": 6670, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 889, "puntReturnTouchdown": 1, "puntReturnYards": 264, + "teamLoss": 8, + "teamWin": 9, + "totalReturnTouchdowns": 2, "usesPoints": false, }, }, @@ -26491,18 +32430,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.1001865, "receivingTargets": 22.34051464, "receivingTouchdowns": 0.76167593, - "receivingTouchdowns40Plus": 0.154143616, - "receivingTouchdowns50Plus": 0.100732853, + "receivingTouchdowns40Plus": 0.06466845, + "receivingTouchdowns50Plus": 0.002000055, "receivingYards": 170.5042863, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 14.09104615, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.002695799, "rushingAttempts": 1.99447871, + "rushingGame100To199Yards": 0.000252757, + "rushingGame200PlusYards": 0.00000863, "rushingTouchdowns": 0.085197171, "rushingTouchdowns40Plus": 0.003661672, "rushingTouchdowns50Plus": 0.002563171, "rushingYards": 11.39171606, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.711625804, - "turnovers": 0.107010392, + "totalTurnovers": 0.107010392, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26511,10 +32461,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 387, "receivingYardsAfterCatch": 114, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 14.33333333, + "receptionsPer5Receptions": 1, "rushingAttempts": 2, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.5, + "teamLoss": 7, + "teamPointsScored": 24, + "teamWin": 6, "usesPoints": false, }, }, @@ -26554,18 +32514,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.0944955, "receivingTargets": 5.528597412, "receivingTouchdowns": 0.150964179, - "receivingTouchdowns40Plus": 0.035238877, - "receivingTouchdowns50Plus": 0.023028606, + "receivingTouchdowns40Plus": 0.015962257, + "receivingTouchdowns50Plus": 0.000493678, "receivingYards": 29.32428131, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.161878992, "rushing2PtConversions": 0.017775439, "rushingAttempts": 7.331716773, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.002479529, + "rushingGame200PlusYards": 0.0000846, "rushingTouchdowns": 0.255510221, "rushingTouchdowns40Plus": 0.013502872, "rushingTouchdowns50Plus": 0.00945201, "rushingYards": 31.35954236, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.277244106, - "turnovers": 0.07699476, + "totalTurnovers": 0.07699476, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26577,13 +32548,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 126, "receivingYardsAfterCatch": 129, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 6.3, + "receptionsPer5Receptions": 2, "rushingAttempts": 46, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, "rushingTouchdowns": 2, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 194, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 34, "rushingYardsPerAttempt": 4.2173913, + "teamLoss": 8, + "teamPointsScored": 18, + "teamWin": 9, "usesPoints": false, }, }, @@ -26628,26 +32615,43 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.8768386, "receivingTargets": 26.75948308, "receivingTouchdowns": 1.583376353, - "receivingTouchdowns40Plus": 0.146960274, - "receivingTouchdowns50Plus": 0.096038539, + "receivingTouchdowns40Plus": 0.081961898, + "receivingTouchdowns50Plus": 0.002534904, "receivingYards": 202.241062, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 11.98334989, - "turnovers": 0.121392338, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.121392338, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 18, "receivingTargets": 35, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 298, "receivingYardsAfterCatch": 60, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 16.55555556, + "receptionsPer5Receptions": 1, "rushingAttempts": 9, "rushingTouchdowns": 1, "rushingYards": 34, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.77777778, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 5, "usesPoints": false, }, }, @@ -26687,18 +32691,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.24379425, "receivingTargets": 20.86016687, "receivingTouchdowns": 0.421697507, - "receivingTouchdowns40Plus": 0.038079807, - "receivingTouchdowns50Plus": 0.024885154, + "receivingTouchdowns40Plus": 0.046981784, + "receivingTouchdowns50Plus": 0.001453045, "receivingYards": 111.7879947, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 6.881889353, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.165133188, "rushingAttempts": 110.8947187, + "rushingAttemptsPer10Attempts": 11, + "rushingAttemptsPer5Attempts": 22, + "rushingGame100To199Yards": 0.472795801, + "rushingGame200PlusYards": 0.016134707, "rushingTouchdowns": 3.390037204, "rushingTouchdowns40Plus": 0.215724086, "rushingTouchdowns50Plus": 0.15100686, "rushingYards": 427.2747384, + "rushingYardsPer10Yards": 42, + "rushingYardsPer20Yards": 21, + "rushingYardsPer25Yards": 17, + "rushingYardsPer50Yards": 8, + "rushingYardsPer5Yards": 85, "rushingYardsPerAttempt": 3.852976438, - "turnovers": 0.477163488, + "totalTurnovers": 0.477163488, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26708,13 +32728,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 18, "receivingYards": 68, "receivingYardsAfterCatch": 78, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 4.25, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 1, "rushingAttempts": 62, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 8, "rushingTouchdowns": 1, "rushingYards": 233, + "rushingYardsPer10Yards": 19, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 44, "rushingYardsPerAttempt": 3.75806452, - "turnovers": 2, + "teamLoss": 8, + "teamPointsScored": 8, + "teamWin": 3, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -26756,11 +32790,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.522815635, "receivingTargets": 12.21169587, "receivingTouchdowns": 0.709784354, - "receivingTouchdowns40Plus": 0.162607711, - "receivingTouchdowns50Plus": 0.106264139, + "receivingTouchdowns40Plus": 0.045411341, + "receivingTouchdowns50Plus": 0.001404474, "receivingYards": 94.93754374, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 12.61994821, - "turnovers": 0.044760343, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.044760343, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26768,7 +32808,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 12, "receivingYardsAfterCatch": 2, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, + "teamLoss": 2, + "teamWin": 6, "usesPoints": false, }, }, @@ -26811,10 +32854,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 33, "receivingYards": 311, "receivingYardsAfterCatch": 139, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 58, "receivingYardsPerReception": 12.95833333, + "receptionsPer5Receptions": 2, "rushingAttempts": 2, "rushingYards": 13, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 6.5, + "teamLoss": 9, + "teamWin": 3, "usesPoints": false, }, }, @@ -26855,18 +32908,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.16435687, "receivingTargets": 49.03752969, "receivingTouchdowns": 2.347566362, - "receivingTouchdowns40Plus": 0.206983468, - "receivingTouchdowns50Plus": 0.135263696, + "receivingTouchdowns40Plus": 0.237819959, + "receivingTouchdowns50Plus": 0.007355256, "receivingYards": 401.9870417, + "receivingYardsPer10Yards": 40, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 80, "receivingYardsPerReception": 13.78350442, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.007468944, "rushingAttempts": 4.313074349, + "rushingGame100To199Yards": 0.001608707, + "rushingGame200PlusYards": 0.0000549, "rushingTouchdowns": 0.213547804, "rushingTouchdowns40Plus": 0.007928391, "rushingTouchdowns50Plus": 0.005549873, "rushingYards": 26.38529239, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.117513926, - "turnovers": 0.222520645, + "totalTurnovers": 0.222520645, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26880,8 +32946,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns40Plus": 1, "receivingYards": 362, "receivingYardsAfterCatch": 144, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 32, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 69, "receivingYardsPerReception": 11.67741935, - "turnovers": 2, + "receptionsPer5Receptions": 3, + "teamLoss": 9, + "teamPointsScored": 12, + "teamWin": 7, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -26921,18 +32997,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.74253527, "receivingTargets": 19.63874953, "receivingTouchdowns": 0.58321028, - "receivingTouchdowns40Plus": 0.050434186, - "receivingTouchdowns50Plus": 0.032958741, + "receivingTouchdowns40Plus": 0.047899052, + "receivingTouchdowns50Plus": 0.001481414, "receivingYards": 115.0101795, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 7.30569616, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.081624808, "rushingAttempts": 70.43733204, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.280633236, + "rushingGame200PlusYards": 0.009576936, "rushingTouchdowns": 1.616230365, "rushingTouchdowns40Plus": 0.134148371, "rushingTouchdowns50Plus": 0.09390386, "rushingYards": 330.106114, + "rushingYardsPer10Yards": 33, + "rushingYardsPer20Yards": 16, + "rushingYardsPer25Yards": 13, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 66, "rushingYardsPerAttempt": 4.686522111, - "turnovers": 0.491482458, + "totalTurnovers": 0.491482458, "usesPoints": false, }, "rawStats": PlayerStats { @@ -26943,11 +33035,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingYards": 118, "receivingYardsAfterCatch": 100, + "receivingYardsPer10Yards": 6, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 5.9, + "receptionsPer5Receptions": 1, "rushingAttempts": 54, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 220, + "rushingYardsPer10Yards": 15, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 39, "rushingYardsPerAttempt": 4.07407407, + "teamLoss": 7, + "teamPointsScored": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -26988,11 +33092,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.31510669, "receivingTargets": 33.72080399, "receivingTouchdowns": 1.839290671, - "receivingTouchdowns40Plus": 0.156411463, - "receivingTouchdowns50Plus": 0.102214891, + "receivingTouchdowns40Plus": 0.117791855, + "receivingTouchdowns50Plus": 0.003643047, "receivingYards": 259.2381065, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 12.76085381, - "turnovers": 0.146123238, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.146123238, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27002,11 +33113,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 61, "receivingYards": 376, "receivingYardsAfterCatch": 137, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 71, "receivingYardsPerReception": 9.64102564, + "receptionsPer5Receptions": 3, "rushingAttempts": 1, "rushingTouchdowns": 1, "rushingYards": 17, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 17, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -27045,20 +33167,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 265.7081017, "passingCompletionPercentage": 0.614150698, "passingCompletions": 163.1848161, + "passingCompletionsPer10Completions": 16, + "passingCompletionsPer5Completions": 32, "passingIncompletions": 102.5232855, "passingInterceptions": 7.074393561, "passingTouchdowns": 9.40513421, "passingTouchdowns40Plus": 1.386432827, "passingTouchdowns50Plus": 0.906033852, "passingYards": 1799.489896, + "passingYards300To399": 1.216981373, + "passingYards400Plus": 0.164382274, + "passingYardsPer100Yards": 17, + "passingYardsPer10Yards": 179, + "passingYardsPer20Yards": 89, + "passingYardsPer25Yards": 71, + "passingYardsPer50Yards": 35, + "passingYardsPer5Yards": 359, "rushing2PtConversions": 0.058421152, "rushingAttempts": 40.24743297, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 8, + "rushingGame100To199Yards": 0.174065356, + "rushingGame200PlusYards": 0.005940183, "rushingTouchdowns": 1.261858802, "rushingTouchdowns40Plus": 0.077245502, "rushingTouchdowns50Plus": 0.054071851, "rushingYards": 178.6677688, + "rushingYardsPer10Yards": 17, + "rushingYardsPer20Yards": 8, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 35, "rushingYardsPerAttempt": 4.4392339, - "turnovers": 9.170196663, + "totalTurnovers": 9.170196663, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27067,13 +33208,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 115, "passingCompletionPercentage": 0.63478261, "passingCompletions": 73, + "passingCompletionsPer10Completions": 5, + "passingCompletionsPer5Completions": 12, "passingIncompletions": 42, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 7, "passingTouchdowns": 2, "passingYards": 708, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 68, + "passingYardsPer20Yards": 33, + "passingYardsPer25Yards": 25, + "passingYardsPer50Yards": 12, + "passingYardsPer5Yards": 139, "rushingAttempts": 16, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 64, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4, - "turnovers": 2, + "teamLoss": 2, + "teamPointsScored": 12, + "teamWin": 2, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -27116,18 +33275,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.72510127, "receivingTargets": 15.95861539, "receivingTouchdowns": 0.752009138, - "receivingTouchdowns40Plus": 0.159176412, - "receivingTouchdowns50Plus": 0.104021785, + "receivingTouchdowns40Plus": 0.050305971, + "receivingTouchdowns50Plus": 0.001555855, "receivingYards": 123.3948557, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 11.50523921, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.006928994, "rushingAttempts": 2.58481792, + "rushingGame100To199Yards": 0.000582332, + "rushingGame200PlusYards": 0.0000199, "rushingTouchdowns": 0.108168775, "rushingTouchdowns40Plus": 0.004747807, "rushingTouchdowns50Plus": 0.003323465, "rushingYards": 15.50908423, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 6.000068365, - "turnovers": 0.143901459, + "totalTurnovers": 0.143901459, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27140,11 +33310,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 64, "receivingYards": 616, "receivingYardsAfterCatch": 218, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 118, "receivingYardsPerReception": 13.10638298, + "receptionsPer5Receptions": 3, "rushingAttempts": 7, "rushingYards": 36, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 5.14285714, - "turnovers": 1, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 9, + "totalReturnTouchdowns": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -27184,11 +33367,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.43685167, "receivingTargets": 27.9256433, "receivingTouchdowns": 1.278816516, - "receivingTouchdowns40Plus": 0.122321842, - "receivingTouchdowns50Plus": 0.079937324, + "receivingTouchdowns40Plus": 0.075318976, + "receivingTouchdowns50Plus": 0.002329453, "receivingYards": 201.9204932, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 9.880215236, - "turnovers": 0.169246803, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.169246803, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27201,7 +33391,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 349, "receivingYardsAfterCatch": 184, + "receivingYardsPer10Yards": 29, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 63, "receivingYardsPerReception": 10.26470588, + "teamLoss": 8, + "teamPointsScored": 18, + "teamWin": 7, "usesPoints": false, }, }, @@ -27243,18 +33440,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.583109069, "receivingTargets": 8.105203493, "receivingTouchdowns": 0.159372589, - "receivingTouchdowns40Plus": 0.05689445, - "receivingTouchdowns50Plus": 0.037180523, + "receivingTouchdowns40Plus": 0.024964603, + "receivingTouchdowns50Plus": 0.000772101, "receivingYards": 49.60645304, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 8.885094742, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.037975934, "rushingAttempts": 18.70219023, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.017098209, + "rushingGame200PlusYards": 0.000583496, "rushingTouchdowns": 0.534168839, "rushingTouchdowns40Plus": 0.034670492, "rushingTouchdowns50Plus": 0.024269344, "rushingYards": 80.09098444, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.282438765, - "turnovers": 0.139761054, + "totalTurnovers": 0.139761054, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27265,11 +33476,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 24, "receivingYards": 88, "receivingYardsAfterCatch": 73, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 7.33333333, + "receptionsPer5Receptions": 1, "rushingAttempts": 30, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 160, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 5.33333333, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -27313,23 +33538,40 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.52774254, "receivingTargets": 35.23708286, "receivingTouchdowns": 0.960061909, - "receivingTouchdowns40Plus": 0.044796691, - "receivingTouchdowns50Plus": 0.029274638, + "receivingTouchdowns40Plus": 0.074502775, + "receivingTouchdowns50Plus": 0.00230421, "receivingYards": 199.6807126, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 7.822106177, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.041124897, "rushingAttempts": 32.30741249, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.047033232, + "rushingGame200PlusYards": 0.001605064, "rushingTouchdowns": 1.125215318, "rushingTouchdowns40Plus": 0.060296162, "rushingTouchdowns50Plus": 0.042207313, "rushingYards": 135.9178733, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 27, "rushingYardsPerAttempt": 4.207018228, - "turnovers": 0.223726054, + "totalTurnovers": 0.223726054, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 4, "defensiveSoloTackles": 4, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 8, "kickoffReturnYards": 543, "receivingReceptions": 25, @@ -27337,10 +33579,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 211, "receivingYardsAfterCatch": 195, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 8.44, "rushingAttempts": 4, "rushingYards": 20, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 5, + "teamLoss": 11, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -27381,11 +33632,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39.09303587, "receivingTargets": 69.9484834, "receivingTouchdowns": 4.011876986, - "receivingTouchdowns40Plus": 0.166724386, - "receivingTouchdowns50Plus": 0.108954386, + "receivingTouchdowns40Plus": 0.584777737, + "receivingTouchdowns50Plus": 0.018085909, "receivingYards": 547.0263601, + "receivingYardsPer10Yards": 54, + "receivingYardsPer20Yards": 27, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 109, "receivingYardsPerReception": 13.99293628, - "turnovers": 0.258930581, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.258930581, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27393,11 +33651,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24, "receivingTargets": 47, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 236, "receivingYardsAfterCatch": 56, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 9.83333333, + "receptionsPer5Receptions": 1, + "teamLoss": 13, + "teamPointsScored": 14, + "teamWin": 2, "usesPoints": false, }, }, @@ -27439,7 +33704,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 121, "receivingYardsAfterCatch": 33, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 17.28571429, + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -27479,11 +33751,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 46.58373081, "receivingTargets": 62.69582947, "receivingTouchdowns": 4.69024598, - "receivingTouchdowns40Plus": 0.154501122, - "receivingTouchdowns50Plus": 0.100966483, + "receivingTouchdowns40Plus": 0.346361523, + "receivingTouchdowns50Plus": 0.010712212, "receivingYards": 478.9714376, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 95, "receivingYardsPerReception": 10.28194671, - "turnovers": 0.315002506, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.315002506, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27492,7 +33771,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 95, "receivingYardsAfterCatch": 59, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 9.5, + "receptionsPer5Receptions": 1, + "teamLoss": 5, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -27528,15 +33815,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 29.9626735, "attemptedFieldGoalsFrom40To49": 9.40827948, "attemptedFieldGoalsFrom50Plus": 5.003766475, + "attemptedFieldGoalsFrom50To59": 5.003766475, "madeExtraPoints": 44.95572088, "madeFieldGoals": 25.05702245, "madeFieldGoalsFrom40To49": 7.176509406, "madeFieldGoalsFrom50Plus": 3.126286184, + "madeFieldGoalsFrom50To59": 3.126286184, "madeFieldGoalsFromUnder40": 14.75422686, "missedExtraPoints": 3.239355515, "missedFieldGoals": 4.905651057, "missedFieldGoalsFrom40To49": 2.231770074, "missedFieldGoalsFrom50Plus": 1.877480291, + "missedFieldGoalsFrom50To59": 1.877480291, "missedFieldGoalsFromUnder40": 0.796400692, "usesPoints": false, }, @@ -27547,12 +33837,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoalsFrom40To49": 2, "defensiveAssistedTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 350, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 34, + "fieldGoalAttemptedYardsPer20Yards": 16, + "fieldGoalAttemptedYardsPer25Yards": 12, + "fieldGoalAttemptedYardsPer50Yards": 4, + "fieldGoalAttemptedYardsPer5Yards": 69, + "fieldGoalMadeYards": 301, + "fieldGoalMadeYardsPer100Yards": 1, + "fieldGoalMadeYardsPer10Yards": 29, + "fieldGoalMadeYardsPer20Yards": 14, + "fieldGoalMadeYardsPer25Yards": 10, + "fieldGoalMadeYardsPer50Yards": 3, + "fieldGoalMadeYardsPer5Yards": 59, + "fieldGoalMissedYards": 49, + "fieldGoalMissedYardsPer10Yards": 4, + "fieldGoalMissedYardsPer20Yards": 2, + "fieldGoalMissedYardsPer25Yards": 1, + "fieldGoalMissedYardsPer5Yards": 9, "madeExtraPoints": 12, "madeFieldGoals": 9, "madeFieldGoalsFrom40To49": 1, "madeFieldGoalsFromUnder40": 8, "missedFieldGoals": 1, "missedFieldGoalsFrom40To49": 1, + "teamLoss": 2, + "teamPointsScored": 39, + "teamWin": 4, "usesPoints": false, }, }, @@ -27590,18 +33902,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.075226537, "receivingTargets": 11.60488733, "receivingTouchdowns": 0.35066782, - "receivingTouchdowns40Plus": 0.036636582, - "receivingTouchdowns50Plus": 0.023942006, + "receivingTouchdowns40Plus": 0.029746751, + "receivingTouchdowns50Plus": 0.000920003, "receivingYards": 61.00531602, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 7.554625959, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.16542618, "rushingAttempts": 74.34682547, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.239408127, + "rushingGame200PlusYards": 0.008170081, "rushingTouchdowns": 2.321656792, "rushingTouchdowns40Plus": 0.141879898, "rushingTouchdowns50Plus": 0.099315928, "rushingYards": 305.269128, + "rushingYardsPer10Yards": 30, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 61, "rushingYardsPerAttempt": 4.106014293, - "turnovers": 0.241297116, + "totalTurnovers": 0.241297116, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27609,10 +33936,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 53, "receivingYardsAfterCatch": 46, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 5.88888889, "rushingAttempts": 36, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 106, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 2.94444444, + "teamLoss": 5, + "teamWin": 5, "usesPoints": false, }, }, @@ -27653,18 +33989,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.074878844, "receivingTargets": 5.299685087, "receivingTouchdowns": 0.160404138, - "receivingTouchdowns40Plus": 0.040060189, - "receivingTouchdowns50Plus": 0.026179333, + "receivingTouchdowns40Plus": 0.016001215, + "receivingTouchdowns50Plus": 0.000494883, "receivingYards": 29.40546413, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.21627937, "rushing2PtConversions": 0.016869325, "rushingAttempts": 12.17453446, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.006780525, + "rushingGame200PlusYards": 0.000231393, "rushingTouchdowns": 0.482356278, "rushingTouchdowns40Plus": 0.022484613, "rushingTouchdowns50Plus": 0.015739229, "rushingYards": 50.96900138, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.186525698, - "turnovers": 0.064649681, + "totalTurnovers": 0.064649681, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27676,11 +34025,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 42, "receivingYardsAfterCatch": 38, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 6, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 100, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 20, "rushingYardsPerAttempt": 10, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -27720,18 +34081,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.630204802, "receivingTargets": 6.231015562, "receivingTouchdowns": 0.142709494, - "receivingTouchdowns40Plus": 0.035865865, - "receivingTouchdowns50Plus": 0.023438343, + "receivingTouchdowns40Plus": 0.017506842, + "receivingTouchdowns50Plus": 0.000541449, "receivingYards": 32.2997294, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 6.975874888, "rushing2PtConversions": 0.074527395, "rushingAttempts": 46.19967544, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 0.098962118, + "rushingGame200PlusYards": 0.003377197, "rushingTouchdowns": 1.831297994, "rushingTouchdowns40Plus": 0.086866605, "rushingTouchdowns50Plus": 0.060806624, "rushingYards": 196.5618943, + "rushingYardsPer10Yards": 19, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 3, + "rushingYardsPer5Yards": 39, "rushingYardsPerAttempt": 4.254616347, - "turnovers": 0.268081658, + "totalTurnovers": 0.268081658, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27739,11 +34113,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 22, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 22, "rushingAttempts": 17, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 70, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.11764706, + "teamLoss": 1, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -27789,12 +34175,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 0.954599843, "defensiveForcedFumbles": 12.44062535, "defensiveFumbles": 8.086406477, + "defensiveHalfSacks": 74.77655973, "defensiveInterceptions": 12.61309917, "defensiveOver45PointsAllowed": 0.62962963, "defensiveOver550YardsAllowed": 0.839506173, "defensivePointsAllowed": 424.6995717, "defensiveSacks": 37.38827987, "defensiveSafeties": 0.121919155, + "defensiveTacklesPer3Tackles": 335, + "defensiveTacklesPer5Tackles": 201, "defensiveTotalTackles": 1007.335031, "defensiveYardsAllowed": 6207.764224, "fumbleReturnTouchdown": 1.297875653, @@ -27803,6 +34192,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 773.2691358, "puntReturnTouchdown": 0.329193863, "puntReturnYards": 231.4931507, + "totalReturnTouchdowns": 2.488372803, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27823,6 +34213,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 418, "defensiveForcedFumbles": 13, "defensiveFumbles": 11, + "defensiveHalfSacks": 78, "defensiveInterceptions": 16, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, @@ -27830,11 +34221,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSacks": 39, "defensiveSafeties": 1, "defensiveSoloTackles": 829, + "defensiveStuffs": 95, + "defensiveTacklesPer3Tackles": 411, + "defensiveTacklesPer5Tackles": 242, "defensiveTotalTackles": 1247, "defensiveYardsAllowed": 6452, "fumbleReturnTouchdown": 1, "kickoffReturnYards": 513, "puntReturnYards": 362, + "teamLoss": 13, + "teamWin": 3, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -27877,11 +34274,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 33, "receivingYardsAfterCatch": 39, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 5.5, "rushingAttempts": 41, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 7, "rushingYards": 117, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 2.85365854, - "turnovers": 1, + "teamLoss": 2, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -27922,18 +34331,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.421114108, "receivingTargets": 8.440683404, "receivingTouchdowns": 0.288825922, - "receivingTouchdowns40Plus": 0.039035559, - "receivingTouchdowns50Plus": 0.025509738, + "receivingTouchdowns40Plus": 0.023727149, + "receivingTouchdowns50Plus": 0.000733829, "receivingYards": 46.62225568, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 7.260773581, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.143430471, "rushingAttempts": 62.13871979, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 12, + "rushingGame100To199Yards": 0.195904647, + "rushingGame200PlusYards": 0.006685474, "rushingTouchdowns": 2.012773523, "rushingTouchdowns40Plus": 0.118062445, "rushingTouchdowns50Plus": 0.082643711, "rushingYards": 268.0691726, + "rushingYardsPer10Yards": 26, + "rushingYardsPer20Yards": 13, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 53, "rushingYardsPerAttempt": 4.314044021, - "turnovers": 0.263936261, + "totalTurnovers": 0.263936261, "usesPoints": false, }, "rawStats": PlayerStats { @@ -27941,10 +34364,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 13, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 4.33333333, "rushingAttempts": 18, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 41, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 2.27777778, + "teamLoss": 3, + "teamWin": 3, "usesPoints": false, }, }, @@ -27990,12 +34422,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 0.985399346, "defensiveForcedFumbles": 14.91439242, "defensiveFumbles": 9.694355074, + "defensiveHalfSacks": 74.80496747, "defensiveInterceptions": 11.73201623, "defensiveOver45PointsAllowed": 0.525773196, "defensiveOver550YardsAllowed": 0.209876543, "defensivePointsAllowed": 426.1675094, "defensiveSacks": 37.40248373, "defensiveSafeties": 0.125708671, + "defensiveTacklesPer3Tackles": 341, + "defensiveTacklesPer5Tackles": 204, "defensiveTotalTackles": 1023.748757, "defensiveYardsAllowed": 6004.602323, "fumbleReturnTouchdown": 1.285355894, @@ -28004,6 +34439,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 722.9421275, "puntReturnTouchdown": 0.23736, "puntReturnYards": 211.56, + "totalReturnTouchdowns": 2.369859142, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28025,16 +34461,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 1, "defensiveForcedFumbles": 14, "defensiveFumbles": 9, + "defensiveHalfSacks": 40, "defensiveInterceptions": 14, "defensiveLessThan100YardsAllowed": 0, "defensiveOver550YardsAllowed": 0, "defensivePointsAllowed": 451, "defensiveSacks": 20, "defensiveSoloTackles": 747, + "defensiveStuffs": 76, + "defensiveTacklesPer3Tackles": 372, + "defensiveTacklesPer5Tackles": 219, "defensiveTotalTackles": 1130, "defensiveYardsAllowed": 6390, "kickoffReturnYards": 996, "puntReturnYards": 198, + "teamLoss": 14, + "teamWin": 3, "usesPoints": false, }, }, @@ -28070,15 +34512,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31.68599149, "attemptedFieldGoalsFrom40To49": 9.949401326, "attemptedFieldGoalsFrom50Plus": 5.291560578, + "attemptedFieldGoalsFrom50To59": 5.291560578, "madeExtraPoints": 36.66047936, "madeFieldGoals": 26.88946811, "madeFieldGoalsFrom40To49": 7.712131381, "madeFieldGoalsFrom50Plus": 3.37143961, + "madeFieldGoalsFrom50To59": 3.37143961, "madeFieldGoalsFromUnder40": 15.80589712, "missedExtraPoints": 2.128128454, "missedFieldGoals": 4.796523378, "missedFieldGoalsFrom40To49": 2.237269945, "missedFieldGoalsFrom50Plus": 1.920120968, + "missedFieldGoalsFrom50To59": 1.920120968, "missedFieldGoalsFromUnder40": 0.639132465, "usesPoints": false, }, @@ -28088,18 +34533,44 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 30, "attemptedFieldGoalsFrom40To49": 10, "attemptedFieldGoalsFrom50Plus": 6, + "attemptedFieldGoalsFrom50To59": 6, "defensiveAssistedTackles": 2, "defensiveTotalTackles": 2, + "fieldGoalAttemptedYards": 1188, + "fieldGoalAttemptedYardsPer100Yards": 5, + "fieldGoalAttemptedYardsPer10Yards": 112, + "fieldGoalAttemptedYardsPer20Yards": 52, + "fieldGoalAttemptedYardsPer25Yards": 40, + "fieldGoalAttemptedYardsPer50Yards": 15, + "fieldGoalAttemptedYardsPer5Yards": 231, + "fieldGoalMadeYards": 958, + "fieldGoalMadeYardsPer100Yards": 1, + "fieldGoalMadeYardsPer10Yards": 90, + "fieldGoalMadeYardsPer20Yards": 42, + "fieldGoalMadeYardsPer25Yards": 31, + "fieldGoalMadeYardsPer50Yards": 11, + "fieldGoalMadeYardsPer5Yards": 186, + "fieldGoalMissedYards": 230, + "fieldGoalMissedYardsPer10Yards": 21, + "fieldGoalMissedYardsPer20Yards": 10, + "fieldGoalMissedYardsPer25Yards": 7, + "fieldGoalMissedYardsPer50Yards": 2, + "fieldGoalMissedYardsPer5Yards": 44, "madeExtraPoints": 24, "madeFieldGoals": 25, "madeFieldGoalsFrom40To49": 8, "madeFieldGoalsFrom50Plus": 4, + "madeFieldGoalsFrom50To59": 4, "madeFieldGoalsFromUnder40": 13, "missedExtraPoints": 4, "missedFieldGoals": 5, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 2, + "missedFieldGoalsFrom50To59": 2, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 8, + "teamPointsScored": 99, + "teamWin": 8, "usesPoints": false, }, }, @@ -28140,16 +34611,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.22419771, "receivingTargets": 72.04639379, "receivingTouchdowns": 3.532557933, - "receivingTouchdowns40Plus": 0.172013994, - "receivingTouchdowns50Plus": 0.112411145, + "receivingTouchdowns40Plus": 0.549565141, + "receivingTouchdowns50Plus": 0.01699686, "receivingYards": 564.8861369, + "receivingYardsPer10Yards": 56, + "receivingYardsPer20Yards": 28, + "receivingYardsPer25Yards": 22, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 112, "receivingYardsPerReception": 12.77323651, - "turnovers": 0.318097417, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.318097417, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 3, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 5, "fumbles": 1, "lostFumbles": 1, @@ -28158,8 +34637,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 555, "receivingYardsAfterCatch": 128, + "receivingYardsPer10Yards": 50, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 107, "receivingYardsPerReception": 12.90697674, - "turnovers": 1, + "receptionsPer5Receptions": 5, + "teamLoss": 5, + "teamPointsScored": 18, + "teamWin": 11, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -28199,18 +34687,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.868426194, "receivingTargets": 2.497312937, "receivingTouchdowns": 0.063052928, - "receivingTouchdowns40Plus": 0.035143792, - "receivingTouchdowns50Plus": 0.022966468, + "receivingTouchdowns40Plus": 0.007715552, + "receivingTouchdowns50Plus": 0.000238625, "receivingYards": 13.27764841, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.106327481, "rushing2PtConversions": 0.028654892, "rushingAttempts": 20.55974392, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.019135134, + "rushingGame200PlusYards": 0.000653009, "rushingTouchdowns": 0.588046604, "rushingTouchdowns40Plus": 0.038154298, "rushingTouchdowns50Plus": 0.026708008, "rushingYards": 84.6559299, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.117557604, - "turnovers": 0.069465282, + "totalTurnovers": 0.069465282, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28220,10 +34719,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 30, "receivingYardsAfterCatch": 34, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 24, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 2.4, + "teamLoss": 2, + "teamWin": 4, "usesPoints": false, }, }, @@ -28259,15 +34765,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 32.40995189, "attemptedFieldGoalsFrom40To49": 10.17672489, "attemptedFieldGoalsFrom50Plus": 5.412461965, + "attemptedFieldGoalsFrom50To59": 5.412461965, "madeExtraPoints": 28.17544422, "madeFieldGoals": 26.97111239, "madeFieldGoalsFrom40To49": 7.72106213, "madeFieldGoalsFrom50Plus": 3.359505012, + "madeFieldGoalsFrom50To59": 3.359505012, "madeFieldGoalsFromUnder40": 15.89054524, "missedExtraPoints": 2.163202274, "missedFieldGoals": 5.438839502, "missedFieldGoalsFrom40To49": 2.455662762, "missedFieldGoalsFrom50Plus": 2.052956953, + "missedFieldGoalsFrom50To59": 2.052956953, "missedFieldGoalsFromUnder40": 0.930219786, "usesPoints": false, }, @@ -28277,14 +34786,38 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31, "attemptedFieldGoalsFrom40To49": 10, "attemptedFieldGoalsFrom50Plus": 6, + "attemptedFieldGoalsFrom50To59": 6, + "fieldGoalAttemptedYards": 1217, + "fieldGoalAttemptedYardsPer100Yards": 5, + "fieldGoalAttemptedYardsPer10Yards": 111, + "fieldGoalAttemptedYardsPer20Yards": 53, + "fieldGoalAttemptedYardsPer25Yards": 42, + "fieldGoalAttemptedYardsPer50Yards": 15, + "fieldGoalAttemptedYardsPer5Yards": 235, + "fieldGoalMadeYards": 1132, + "fieldGoalMadeYardsPer100Yards": 4, + "fieldGoalMadeYardsPer10Yards": 104, + "fieldGoalMadeYardsPer20Yards": 49, + "fieldGoalMadeYardsPer25Yards": 38, + "fieldGoalMadeYardsPer50Yards": 13, + "fieldGoalMadeYardsPer5Yards": 219, + "fieldGoalMissedYards": 85, + "fieldGoalMissedYardsPer10Yards": 7, + "fieldGoalMissedYardsPer20Yards": 3, + "fieldGoalMissedYardsPer25Yards": 2, + "fieldGoalMissedYardsPer5Yards": 16, "madeExtraPoints": 24, "madeFieldGoals": 29, "madeFieldGoalsFrom40To49": 9, "madeFieldGoalsFrom50Plus": 6, + "madeFieldGoalsFrom50To59": 6, "madeFieldGoalsFromUnder40": 14, "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 13, + "teamPointsScored": 111, + "teamWin": 3, "usesPoints": false, }, }, @@ -28322,20 +34855,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 547.2973057, "passingCompletionPercentage": 0.646235034, "passingCompletions": 353.6826933, + "passingCompletionsPer10Completions": 35, + "passingCompletionsPer5Completions": 70, "passingIncompletions": 193.6146125, "passingInterceptions": 13.25179614, "passingTouchdowns": 18.05202777, "passingTouchdowns40Plus": 3.284325115, "passingTouchdowns50Plus": 2.146306462, "passingYards": 3830.334018, + "passingYards300To399": 3.63720218, + "passingYards400Plus": 0.491290646, + "passingYardsPer100Yards": 38, + "passingYardsPer10Yards": 383, + "passingYardsPer20Yards": 191, + "passingYardsPer25Yards": 153, + "passingYardsPer50Yards": 76, + "passingYardsPer5Yards": 766, "rushing2PtConversions": 0.044373243, "rushingAttempts": 28.52039502, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.034234406, + "rushingGame200PlusYards": 0.001168289, "rushingTouchdowns": 0.842995682, "rushingTouchdowns40Plus": 0.053223514, "rushingTouchdowns50Plus": 0.03725646, "rushingYards": 109.4486021, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 21, "rushingYardsPerAttempt": 3.837555616, - "turnovers": 16.91478256, + "totalTurnovers": 16.91478256, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28347,15 +34899,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 479, "passingCompletionPercentage": 0.60960334, "passingCompletions": 292, + "passingCompletionsPer10Completions": 22, + "passingCompletionsPer5Completions": 52, "passingIncompletions": 187, + "passingIncompletionsPer10Incompletions": 11, + "passingIncompletionsPer5Incompletions": 30, "passingInterceptions": 15, "passingTouchdowns": 17, "passingYards": 3118, + "passingYards300To399": 2, + "passingYardsPer100Yards": 24, + "passingYardsPer10Yards": 305, + "passingYardsPer20Yards": 149, + "passingYardsPer25Yards": 118, + "passingYardsPer50Yards": 55, + "passingYardsPer5Yards": 618, "rushingAttempts": 32, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 2, "rushingYards": 108, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 3.375, - "turnovers": 18, + "teamLoss": 11, + "teamPointsScored": 114, + "teamWin": 3, + "totalTurnovers": 18, "usesPoints": false, }, }, @@ -28396,11 +34967,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.66443425, "receivingTargets": 47.43753867, "receivingTouchdowns": 2.730780864, - "receivingTouchdowns40Plus": 0.201331018, - "receivingTouchdowns50Plus": 0.13156982, + "receivingTouchdowns40Plus": 0.229540874, + "receivingTouchdowns50Plus": 0.007099202, "receivingYards": 387.0908652, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 77, "receivingYardsPerReception": 13.04898863, - "turnovers": 0.277693684, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.277693684, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28412,8 +34990,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 27, "receivingYards": 325, "receivingYardsAfterCatch": 126, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 20.3125, - "turnovers": 1, + "teamLoss": 8, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -28454,11 +35039,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.24021685, "receivingTargets": 29.03638222, "receivingTouchdowns": 1.429076492, - "receivingTouchdowns40Plus": 0.094241564, - "receivingTouchdowns50Plus": 0.061586862, + "receivingTouchdowns40Plus": 0.073707453, + "receivingTouchdowns50Plus": 0.002279612, "receivingYards": 197.2649874, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 12.14669664, - "turnovers": 0.116813222, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.116813222, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28468,11 +35060,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 30, "receivingTargets": 51, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 417, "receivingYardsAfterCatch": 145, + "receivingYardsPer10Yards": 34, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 79, "receivingYardsPerReception": 13.9, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -28511,14 +35109,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 132, "passingCompletionPercentage": 0.68181818, "passingCompletions": 90, + "passingCompletionsPer10Completions": 7, + "passingCompletionsPer5Completions": 16, "passingIncompletions": 42, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 7, "passingInterceptions": 3, "passingTouchdowns": 1, "passingYards": 780, + "passingYardsPer100Yards": 6, + "passingYardsPer10Yards": 75, + "passingYardsPer20Yards": 36, + "passingYardsPer25Yards": 29, + "passingYardsPer50Yards": 13, + "passingYardsPer5Yards": 154, "rushingAttempts": 14, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 36, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2.57142857, - "turnovers": 3, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 1, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -28559,11 +35174,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.58610575, "receivingTargets": 63.70048347, "receivingTouchdowns": 3.536712429, - "receivingTouchdowns40Plus": 0.089225066, - "receivingTouchdowns50Plus": 0.058308581, + "receivingTouchdowns40Plus": 0.26249384, + "receivingTouchdowns50Plus": 0.008118366, "receivingYards": 428.5404398, + "receivingYardsPer10Yards": 42, + "receivingYardsPer20Yards": 21, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 85, "receivingYardsPerReception": 10.06291682, - "turnovers": 0.412939285, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.412939285, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28576,7 +35198,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 60, "receivingYardsAfterCatch": 30, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10, + "teamLoss": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -28617,22 +35245,36 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 57.64546405, "receivingTargets": 85.68102322, "receivingTouchdowns": 2.874586268, - "receivingTouchdowns40Plus": 0.09728675, - "receivingTouchdowns50Plus": 0.063576891, + "receivingTouchdowns40Plus": 0.596820054, + "receivingTouchdowns50Plus": 0.018458352, "receivingYards": 587.7854386, + "receivingYardsPer10Yards": 58, + "receivingYardsPer20Yards": 29, + "receivingYardsPer25Yards": 23, + "receivingYardsPer50Yards": 11, + "receivingYardsPer5Yards": 117, "receivingYardsPerReception": 10.1965601, - "turnovers": 0.35395748, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 11, + "totalTurnovers": 0.35395748, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 13, "receivingTargets": 24, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 154, "receivingYardsAfterCatch": 55, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 11.84615385, + "receptionsPer5Receptions": 2, + "teamLoss": 1, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -28672,18 +35314,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.381144573, "receivingTargets": 9.512348907, "receivingTouchdowns": 0.36205318, - "receivingTouchdowns40Plus": 0.046019961, - "receivingTouchdowns50Plus": 0.030074045, + "receivingTouchdowns40Plus": 0.027161781, + "receivingTouchdowns50Plus": 0.000840055, "receivingYards": 54.2639698, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 7.351701251, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.158132062, "rushingAttempts": 72.18816263, + "rushingAttemptsPer10Attempts": 7, + "rushingAttemptsPer5Attempts": 14, + "rushingGame100To199Yards": 0.255802889, + "rushingGame200PlusYards": 0.008729571, "rushingTouchdowns": 3.502242128, "rushingTouchdowns40Plus": 0.13760793, "rushingTouchdowns50Plus": 0.096325551, "rushingYards": 315.5125772, + "rushingYardsPer10Yards": 31, + "rushingYardsPer20Yards": 15, + "rushingYardsPer25Yards": 12, + "rushingYardsPer50Yards": 6, + "rushingYardsPer5Yards": 63, "rushingYardsPerAttempt": 4.37069688, - "turnovers": 0.488066249, + "totalTurnovers": 0.488066249, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28694,11 +35351,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 15, "receivingYardsAfterCatch": 20, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3, "rushingAttempts": 54, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 3, "rushingYards": 217, + "rushingYardsPer10Yards": 16, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 39, "rushingYardsPerAttempt": 4.01851852, + "teamLoss": 3, + "teamPointsScored": 18, + "teamWin": 12, "usesPoints": false, }, }, @@ -28743,11 +35410,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.27989833, "receivingTargets": 37.50298972, "receivingTouchdowns": 2.113981477, - "receivingTouchdowns40Plus": 0.213630004, - "receivingTouchdowns50Plus": 0.139607208, + "receivingTouchdowns40Plus": 0.133335377, + "receivingTouchdowns50Plus": 0.004123775, "receivingYards": 309.9049181, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 12.76384744, - "turnovers": 0.139713068, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.139713068, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28759,15 +35433,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33, "receivingTargets": 51, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 354, "receivingYardsAfterCatch": 146, + "receivingYardsPer10Yards": 29, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 10.72727273, + "receptionsPer5Receptions": 1, "rushingAttempts": 3, "rushingYards": 1, "rushingYardsPerAttempt": 0.33333333, - "turnovers": 1, + "teamLoss": 3, + "teamPointsScored": 18, + "teamWin": 14, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -28808,11 +35489,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 42.31884116, "receivingTargets": 68.70532877, "receivingTouchdowns": 3.151753667, - "receivingTouchdowns40Plus": 0.161265055, - "receivingTouchdowns50Plus": 0.105386714, + "receivingTouchdowns40Plus": 0.451301923, + "receivingTouchdowns50Plus": 0.013957791, "receivingYards": 530.1814582, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 106, "receivingYardsPerReception": 12.52826031, - "turnovers": 0.304392499, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.304392499, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28822,10 +35510,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 50, "receivingTouchdowns": 3, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 397, "receivingYardsAfterCatch": 112, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 73, "receivingYardsPerReception": 15.88, + "receptionsPer5Receptions": 1, + "teamLoss": 10, + "teamPointsScored": 18, + "teamWin": 7, "usesPoints": false, }, }, @@ -28900,18 +35597,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.205656742, "receivingTargets": 2.875034757, "receivingTouchdowns": 0.082186733, - "receivingTouchdowns40Plus": 0.040700593, - "receivingTouchdowns50Plus": 0.026597838, + "receivingTouchdowns40Plus": 0.009110059, + "receivingTouchdowns50Plus": 0.000281754, "receivingYards": 15.78015856, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.154403614, "rushing2PtConversions": 0.013442633, "rushingAttempts": 12.22271756, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.006610659, + "rushingGame200PlusYards": 0.000225596, "rushingTouchdowns": 0.395020253, "rushingTouchdowns40Plus": 0.022574766, "rushingTouchdowns50Plus": 0.015802336, "rushingYards": 50.29215554, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.114645969, - "turnovers": 0.056245946, + "totalTurnovers": 0.056245946, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28921,11 +35629,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 21, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 5.25, "rushingAttempts": 27, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 60, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 2.22222222, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -28966,11 +35683,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.85993587, "receivingTargets": 21.63629123, "receivingTouchdowns": 1.361766711, - "receivingTouchdowns40Plus": 0.114405428, - "receivingTouchdowns50Plus": 0.074763947, + "receivingTouchdowns40Plus": 0.05960792, + "receivingTouchdowns50Plus": 0.001843544, "receivingYards": 154.0542358, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 10.36708618, - "turnovers": 0.095711444, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.095711444, "usesPoints": false, }, "rawStats": PlayerStats { @@ -28982,7 +35706,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 312, "receivingYardsAfterCatch": 120, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 12.48, + "receptionsPer5Receptions": 1, + "teamLoss": 11, + "teamPointsScored": 18, + "teamWin": 3, "usesPoints": false, }, }, @@ -29022,11 +35755,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27.25133731, "receivingTargets": 40.57957286, "receivingTouchdowns": 2.610876621, - "receivingTouchdowns40Plus": 0.101645615, - "receivingTouchdowns50Plus": 0.06642541, + "receivingTouchdowns40Plus": 0.112893485, + "receivingTouchdowns50Plus": 0.003491551, "receivingYards": 280.1123348, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 10.2788473, - "turnovers": 0.184275484, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.184275484, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29035,10 +35775,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 239, "receivingYardsAfterCatch": 113, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 7.70967742, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -29076,33 +35824,58 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 31.34754168, "passingCompletionPercentage": 0.652558492, "passingCompletions": 20.45610454, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 10.89143714, "passingInterceptions": 0.740874854, "passingTouchdowns": 1.746905022, "passingTouchdowns40Plus": 0.182666091, "passingTouchdowns50Plus": 0.11937229, "passingYards": 231.5390101, + "passingYards300To399": 0.167859648, + "passingYards400Plus": 0.022673437, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 46, "rushing2PtConversions": 0.004350479, "rushingAttempts": 1.988267248, + "rushingGame100To199Yards": 0.001512825, + "rushingGame200PlusYards": 0.0000516, "rushingTouchdowns": 0.109311871, "rushingTouchdowns40Plus": 0.003713348, "rushingTouchdowns50Plus": 0.002599344, "rushingYards": 5.957373135, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.996263777, - "turnovers": 0.999270472, + "totalTurnovers": 0.999270472, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 42, "passingCompletionPercentage": 0.5952381, "passingCompletions": 25, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 17, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 4, "passingYards": 224, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 44, "rushingAttempts": 2, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4, - "turnovers": 4, + "teamLoss": 3, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -29148,11 +35921,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 101, "receivingYardsAfterCatch": 110, + "receivingYardsPer10Yards": 7, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 8.41666667, "rushingAttempts": 42, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 170, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 4.04761905, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 8, "usesPoints": false, }, }, @@ -29193,18 +35977,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43.0913824, "receivingTargets": 58.30212421, "receivingTouchdowns": 2.755209761, - "receivingTouchdowns40Plus": 0.172277358, - "receivingTouchdowns50Plus": 0.112583254, + "receivingTouchdowns40Plus": 0.310404891, + "receivingTouchdowns50Plus": 0.009600151, "receivingYards": 456.8231535, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 91, "receivingYardsPerReception": 10.60126475, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.020483484, "rushingAttempts": 12.93922305, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.021203326, + "rushingGame200PlusYards": 0.000723588, "rushingTouchdowns": 0.58565211, "rushingTouchdowns40Plus": 0.023896898, "rushingTouchdowns50Plus": 0.016727829, "rushingYards": 91.90660808, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 7.102946424, - "turnovers": 0.354785824, + "totalTurnovers": 0.354785824, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29212,12 +36012,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35, "receivingTargets": 48, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 434, "receivingYardsAfterCatch": 145, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 83, "receivingYardsPerReception": 12.4, + "receptionsPer5Receptions": 2, "rushingAttempts": 6, "rushingYards": 39, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 6.5, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 8, "usesPoints": false, }, }, @@ -29256,20 +36071,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 29.25828048, "passingCompletionPercentage": 0.618906666, "passingCompletions": 18.10814484, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 11.15013564, "passingInterceptions": 0.771839336, "passingTouchdowns": 1.470043303, "passingTouchdowns40Plus": 0.141084565, "passingTouchdowns50Plus": 0.092198763, "passingYards": 200.9881616, + "passingYards300To399": 0.105684524, + "passingYards400Plus": 0.014275208, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 20, + "passingYardsPer20Yards": 10, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 40, "rushing2PtConversions": 0.006765022, "rushingAttempts": 5.175661204, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.036637065, + "rushingGame200PlusYards": 0.001250282, "rushingTouchdowns": 0.217698445, "rushingTouchdowns40Plus": 0.009946043, "rushingTouchdowns50Plus": 0.00696223, "rushingYards": 28.98370274, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 5.6, - "turnovers": 1.0076012, + "totalTurnovers": 1.0076012, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29280,14 +36112,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 61, "passingCompletionPercentage": 0.50819672, "passingCompletions": 31, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 30, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 3, "passingYards": 276, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 54, "rushingAttempts": 27, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 123, + "rushingYardsPer10Yards": 10, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 23, "rushingYardsPerAttempt": 4.55555556, - "turnovers": 5, + "teamLoss": 5, + "teamPointsScored": 6, + "teamWin": 3, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -29329,18 +36178,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.91835938, "receivingTargets": 20.03908098, "receivingTouchdowns": 0.356237524, - "receivingTouchdowns40Plus": 0.034868028, - "receivingTouchdowns50Plus": 0.022786256, + "receivingTouchdowns40Plus": 0.044019891, + "receivingTouchdowns50Plus": 0.00136144, "receivingYards": 102.2042656, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 6.420527594, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.025839068, "rushingAttempts": 23.18887458, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.031939361, + "rushingGame200PlusYards": 0.001089968, "rushingTouchdowns": 0.816515546, "rushingTouchdowns40Plus": 0.043230943, "rushingTouchdowns50Plus": 0.03026166, "rushingYards": 97.91646998, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.222562404, - "turnovers": 0.209404655, + "totalTurnovers": 0.209404655, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29358,11 +36223,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 19, "receivingYards": 126, "receivingYardsAfterCatch": 126, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 7.41176471, + "receptionsPer5Receptions": 1, "rushingAttempts": 35, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 186, + "rushingYardsPer10Yards": 15, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 4, + "rushingYardsPer5Yards": 33, "rushingYardsPerAttempt": 5.31428571, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -29402,18 +36281,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.25056156, "receivingTargets": 39.07458714, "receivingTouchdowns": 2.316550808, - "receivingTouchdowns40Plus": 0.197640651, - "receivingTouchdowns50Plus": 0.129158165, + "receivingTouchdowns40Plus": 0.138118896, + "receivingTouchdowns50Plus": 0.004271718, "receivingYards": 316.6585655, + "receivingYardsPer10Yards": 31, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 63, "receivingYardsPerReception": 12.06292539, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, "rushing2PtConversions": 0.021424046, "rushingAttempts": 8.626148699, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.004321143, + "rushingGame200PlusYards": 0.000147464, "rushingTouchdowns": 0.612544136, "rushingTouchdowns40Plus": 0.015894023, "rushingTouchdowns50Plus": 0.011125816, "rushingYards": 42.28409478, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.901850903, - "turnovers": 0.224468484, + "totalTurnovers": 0.224468484, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29423,10 +36316,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 38, "receivingYards": 245, "receivingYardsAfterCatch": 200, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 46, "receivingYardsPerReception": 9.07407407, "rushingAttempts": 1, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 8, + "teamWin": 6, "usesPoints": false, }, }, @@ -29466,18 +36367,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.49605675, "receivingTargets": 19.78135875, "receivingTouchdowns": 0.784524931, - "receivingTouchdowns40Plus": 0.076501787, - "receivingTouchdowns50Plus": 0.049993918, + "receivingTouchdowns40Plus": 0.051954604, + "receivingTouchdowns50Plus": 0.001606843, "receivingYards": 128.3766366, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 8.284471248, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.081130504, "rushingAttempts": 55.05730358, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.129039906, + "rushingGame200PlusYards": 0.004403637, "rushingTouchdowns": 2.384650438, "rushingTouchdowns40Plus": 0.104003924, "rushingTouchdowns50Plus": 0.072802747, "rushingYards": 224.590937, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 44, "rushingYardsPerAttempt": 4.079221509, - "turnovers": 0.232803229, + "totalTurnovers": 0.232803229, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29485,11 +36402,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 9, "receivingYardsAfterCatch": 15, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.25, "rushingAttempts": 21, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 102, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 4.85714286, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -29523,15 +36450,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31.82898386, "attemptedFieldGoalsFrom40To49": 9.994300932, "attemptedFieldGoalsFrom50Plus": 5.315440305, + "attemptedFieldGoalsFrom50To59": 5.315440305, "madeExtraPoints": 37.71396307, "madeFieldGoals": 26.32534618, "madeFieldGoalsFrom40To49": 7.531697515, "madeFieldGoalsFrom50Plus": 3.272180973, + "madeFieldGoalsFrom50To59": 3.272180973, "madeFieldGoalsFromUnder40": 15.5214677, "missedExtraPoints": 3.119725104, "missedFieldGoals": 5.503637676, "missedFieldGoalsFrom40To49": 2.462603417, "missedFieldGoalsFrom50Plus": 2.043259331, + "missedFieldGoalsFrom50To59": 2.043259331, "missedFieldGoalsFromUnder40": 0.997774928, "usesPoints": false, }, @@ -29541,14 +36471,40 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 20, "attemptedFieldGoalsFrom40To49": 8, "attemptedFieldGoalsFrom50Plus": 2, + "attemptedFieldGoalsFrom50To59": 2, + "fieldGoalAttemptedYards": 789, + "fieldGoalAttemptedYardsPer100Yards": 3, + "fieldGoalAttemptedYardsPer10Yards": 74, + "fieldGoalAttemptedYardsPer20Yards": 34, + "fieldGoalAttemptedYardsPer25Yards": 26, + "fieldGoalAttemptedYardsPer50Yards": 9, + "fieldGoalAttemptedYardsPer5Yards": 154, + "fieldGoalMadeYards": 643, + "fieldGoalMadeYardsPer100Yards": 2, + "fieldGoalMadeYardsPer10Yards": 59, + "fieldGoalMadeYardsPer20Yards": 28, + "fieldGoalMadeYardsPer25Yards": 20, + "fieldGoalMadeYardsPer50Yards": 6, + "fieldGoalMadeYardsPer5Yards": 124, + "fieldGoalMissedYards": 146, + "fieldGoalMissedYardsPer10Yards": 13, + "fieldGoalMissedYardsPer20Yards": 6, + "fieldGoalMissedYardsPer25Yards": 4, + "fieldGoalMissedYardsPer50Yards": 1, + "fieldGoalMissedYardsPer5Yards": 28, "madeExtraPoints": 28, "madeFieldGoals": 17, "madeFieldGoalsFrom40To49": 6, "madeFieldGoalsFrom50Plus": 1, + "madeFieldGoalsFrom50To59": 1, "madeFieldGoalsFromUnder40": 10, "missedFieldGoals": 3, "missedFieldGoalsFrom40To49": 2, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, + "teamLoss": 9, + "teamPointsScored": 79, + "teamWin": 6, "usesPoints": false, }, }, @@ -29586,11 +36542,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.14042677, "receivingTargets": 39.3574833, "receivingTouchdowns": 2.623112641, - "receivingTouchdowns40Plus": 0.059685008, - "receivingTouchdowns50Plus": 0.039004153, + "receivingTouchdowns40Plus": 0.091529236, + "receivingTouchdowns50Plus": 0.002830801, "receivingYards": 241.0631319, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 9.985868691, - "turnovers": 0.178303158, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.178303158, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29600,7 +36563,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 38, "receivingYards": 174, "receivingYardsAfterCatch": 61, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 8.7, + "receptionsPer5Receptions": 1, + "teamLoss": 7, + "teamWin": 4, "usesPoints": false, }, }, @@ -29640,14 +36611,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 101, "passingCompletionPercentage": 0.63366337, "passingCompletions": 64, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 11, "passingIncompletions": 37, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 6, "passingInterceptions": 3, "passingTouchdowns": 3, "passingYards": 573, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 56, + "passingYardsPer20Yards": 28, + "passingYardsPer25Yards": 22, + "passingYardsPer50Yards": 11, + "passingYardsPer5Yards": 113, "rushingAttempts": 17, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 87, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 5.11764706, - "turnovers": 4, + "teamLoss": 5, + "teamPointsScored": 18, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -29686,9 +36674,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "rushingAttempts": 18, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 52, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 2.88888889, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -29726,24 +36722,41 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 24.38887115, "receivingTargets": 32.4663667, "receivingTouchdowns": 1.200215308, - "receivingTouchdowns40Plus": 0.049931964, - "receivingTouchdowns50Plus": 0.032630538, + "receivingTouchdowns40Plus": 0.070971261, + "receivingTouchdowns50Plus": 0.002194987, "receivingYards": 189.5725304, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 7.772911227, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.114907496, "rushingAttempts": 90.65353109, + "rushingAttemptsPer10Attempts": 9, + "rushingAttemptsPer5Attempts": 18, + "rushingGame100To199Yards": 0.401417975, + "rushingGame200PlusYards": 0.013698855, "rushingTouchdowns": 2.475402151, "rushingTouchdowns40Plus": 0.174600787, "rushingTouchdowns50Plus": 0.122220551, "rushingYards": 392.5324164, + "rushingYardsPer10Yards": 39, + "rushingYardsPer20Yards": 19, + "rushingYardsPer25Yards": 15, + "rushingYardsPer50Yards": 7, + "rushingYardsPer5Yards": 78, "rushingYardsPerAttempt": 4.330028977, - "turnovers": 0.342565288, + "totalTurnovers": 0.342565288, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 2, "rushingYards": 2, "rushingYardsPerAttempt": 1, + "teamLoss": 1, "usesPoints": false, }, }, @@ -29788,8 +36801,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 5, "receivingYards": 495, "receivingYardsAfterCatch": 270, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 13.37837838, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamLoss": 12, + "teamPointsScored": 32, + "teamWin": 3, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -29832,11 +36854,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 53.83384451, "receivingTargets": 81.92842903, "receivingTouchdowns": 4.170011265, - "receivingTouchdowns40Plus": 0.182287573, - "receivingTouchdowns50Plus": 0.119124929, + "receivingTouchdowns40Plus": 0.787396864, + "receivingTouchdowns50Plus": 0.02435248, "receivingYards": 650.4654696, + "receivingYardsPer10Yards": 65, + "receivingYardsPer20Yards": 32, + "receivingYardsPer25Yards": 26, + "receivingYardsPer50Yards": 13, + "receivingYardsPer5Yards": 130, "receivingYardsPerReception": 12.08283517, - "turnovers": 0.602939058, + "receptionsPer10Receptions": 5, + "receptionsPer5Receptions": 10, + "totalTurnovers": 0.602939058, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29845,10 +36874,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 18, "receivingYards": 136, "receivingYardsAfterCatch": 45, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 11.33333333, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, + "teamLoss": 7, + "teamWin": 8, "usesPoints": false, }, }, @@ -29888,11 +36924,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.43940741, "receivingTargets": 55.16402818, "receivingTouchdowns": 4.310584167, - "receivingTouchdowns40Plus": 0.198429319, - "receivingTouchdowns50Plus": 0.12967356, + "receivingTouchdowns40Plus": 0.291738569, + "receivingTouchdowns50Plus": 0.009022842, "receivingYards": 448.1013443, + "receivingYardsPer10Yards": 44, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 17, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 89, "receivingYardsPerReception": 12.64415455, - "turnovers": 0.298991082, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.298991082, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29903,8 +36946,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 189, "receivingYardsAfterCatch": 99, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 9.94736842, - "turnovers": 1, + "receptionsPer5Receptions": 1, + "teamLoss": 12, + "teamPointsScored": 18, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -29942,18 +36994,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.219642558, "receivingTargets": 11.88044461, "receivingTouchdowns": 0.393794826, - "receivingTouchdowns40Plus": 0.03354748, - "receivingTouchdowns50Plus": 0.021923278, + "receivingTouchdowns40Plus": 0.02656427, + "receivingTouchdowns50Plus": 0.000821575, "receivingYards": 56.39609838, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 6.116950633, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.105989901, "rushingAttempts": 57.53622285, + "rushingAttemptsPer10Attempts": 5, + "rushingAttemptsPer5Attempts": 11, + "rushingGame100To199Yards": 0.178805077, + "rushingGame200PlusYards": 0.006101931, "rushingTouchdowns": 1.828575753, "rushingTouchdowns40Plus": 0.110031625, "rushingTouchdowns50Plus": 0.077022138, "rushingYards": 224.6646921, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 11, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 44, "rushingYardsPerAttempt": 3.90475219, - "turnovers": 0.341544538, + "totalTurnovers": 0.341544538, "usesPoints": false, }, "rawStats": PlayerStats { @@ -29962,10 +37029,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 4, "receivingYardsAfterCatch": 11, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 18, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.25, + "teamLoss": 3, + "teamWin": 5, "usesPoints": false, }, }, @@ -30010,18 +37083,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 39.48038379, "receivingTargets": 58.61551989, "receivingTouchdowns": 2.387581954, - "receivingTouchdowns40Plus": 0.099585195, - "receivingTouchdowns50Plus": 0.065078925, + "receivingTouchdowns40Plus": 0.233529148, + "receivingTouchdowns50Plus": 0.007222551, "receivingYards": 404.1038375, + "receivingYardsPer10Yards": 40, + "receivingYardsPer20Yards": 20, + "receivingYardsPer25Yards": 16, + "receivingYardsPer50Yards": 8, + "receivingYardsPer5Yards": 80, "receivingYardsPerReception": 10.23556001, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.03509179, "rushingAttempts": 7.939081896, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.005812628, + "rushingGame200PlusYards": 0.000198363, "rushingTouchdowns": 0.493554876, "rushingTouchdowns40Plus": 0.014622677, "rushingTouchdowns50Plus": 0.010235874, "rushingYards": 48.78551783, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 6.144982313, - "turnovers": 0.368791396, + "totalTurnovers": 0.368791396, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30039,11 +37126,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 32, "receivingYards": 145, "receivingYardsAfterCatch": 92, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 8.05555556, + "receptionsPer5Receptions": 1, "rushingAttempts": 9, "rushingTouchdowns": 2, "rushingYards": 91, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 10.11111111, + "teamLoss": 10, + "teamPointsScored": 18, + "teamWin": 7, "usesPoints": false, }, }, @@ -30084,25 +37183,47 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.237264447, "receivingTargets": 6.970469275, "receivingTouchdowns": 0.220938269, - "receivingTouchdowns40Plus": 0.038400135, - "receivingTouchdowns50Plus": 0.025094488, + "receivingTouchdowns40Plus": 0.019884011, + "receivingTouchdowns50Plus": 0.000614969, "receivingYards": 37.42451737, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 7.145813955, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.036248903, "rushingAttempts": 34.22964386, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.05358403, + "rushingGame200PlusYards": 0.001828617, "rushingTouchdowns": 1.253272635, "rushingTouchdowns40Plus": 0.063978569, "rushingTouchdowns50Plus": 0.044784998, "rushingYards": 143.1764259, + "rushingYardsPer10Yards": 14, + "rushingYardsPer20Yards": 7, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 28, "rushingYardsPerAttempt": 4.18281962, - "turnovers": 0.15320045, + "totalTurnovers": 0.15320045, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 2, "rushingAttempts": 34, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 4, "rushingYards": 99, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 2.91176471, + "teamLoss": 2, + "teamWin": 4, "usesPoints": false, }, }, @@ -30142,11 +37263,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.648340245, "receivingTargets": 12.65681571, "receivingTouchdowns": 0.818751286, - "receivingTouchdowns40Plus": 0.103587543, - "receivingTouchdowns50Plus": 0.06769446, + "receivingTouchdowns40Plus": 0.039348504, + "receivingTouchdowns50Plus": 0.001216964, "receivingYards": 88.0102047, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 10.17654281, - "turnovers": 0.058480693, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.058480693, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30157,7 +37284,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 18, "receivingYards": 72, "receivingYardsAfterCatch": 52, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 7.2, + "teamLoss": 7, + "teamWin": 10, "usesPoints": false, }, }, @@ -30199,11 +37331,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.48739221, "receivingTargets": 25.76624814, "receivingTouchdowns": 1.293544232, - "receivingTouchdowns40Plus": 0.117799544, - "receivingTouchdowns50Plus": 0.076982002, + "receivingTouchdowns40Plus": 0.075961808, + "receivingTouchdowns50Plus": 0.002349334, "receivingYards": 196.4355178, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 11.9142867, - "turnovers": 0.098099084, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.098099084, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30214,11 +37353,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 247, "receivingYardsAfterCatch": 68, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 45, "receivingYardsPerReception": 11.22727273, "rushingAttempts": 3, "rushingTouchdowns": 1, "rushingYards": 16, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 5.33333333, + "teamLoss": 6, + "teamPointsScored": 18, + "teamWin": 7, "usesPoints": false, }, }, @@ -30256,20 +37405,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 147.5146508, "passingCompletionPercentage": 0.628967935, "passingCompletions": 92.78198528, + "passingCompletionsPer10Completions": 9, + "passingCompletionsPer5Completions": 18, "passingIncompletions": 54.73266557, "passingInterceptions": 2.744822674, "passingTouchdowns": 5.275524314, "passingTouchdowns40Plus": 0.882420309, "passingTouchdowns50Plus": 0.576661672, "passingYards": 1025.644436, + "passingYards300To399": 0.984384325, + "passingYards400Plus": 0.132964512, + "passingYardsPer100Yards": 10, + "passingYardsPer10Yards": 102, + "passingYardsPer20Yards": 51, + "passingYardsPer25Yards": 41, + "passingYardsPer50Yards": 20, + "passingYardsPer5Yards": 205, "rushing2PtConversions": 0.020915263, "rushingAttempts": 7.951295735, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.006796182, + "rushingGame200PlusYards": 0.000231928, "rushingTouchdowns": 0.29312536, "rushingTouchdowns40Plus": 0.014850038, "rushingTouchdowns50Plus": 0.010395026, "rushingYards": 25.22674696, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.172658621, - "turnovers": 3.772345347, + "totalTurnovers": 3.772345347, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30280,18 +37446,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 191, "passingCompletionPercentage": 0.57591623, "passingCompletions": 110, + "passingCompletionsPer10Completions": 8, + "passingCompletionsPer5Completions": 20, "passingIncompletions": 81, + "passingIncompletionsPer10Incompletions": 6, + "passingIncompletionsPer5Incompletions": 14, "passingInterceptions": 3, "passingTouchdowns": 5, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 1051, + "passingYards300To399": 2, + "passingYardsPer100Yards": 9, + "passingYardsPer10Yards": 102, + "passingYardsPer20Yards": 51, + "passingYardsPer25Yards": 40, + "passingYardsPer50Yards": 19, + "passingYardsPer5Yards": 208, "receivingYards": -3, "receivingYardsAfterCatch": -3, "rushingAttempts": 3, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2, - "turnovers": 7, + "teamLoss": 4, + "teamPointsScored": 30, + "teamWin": 1, + "totalTurnovers": 7, "usesPoints": false, }, }, @@ -30332,11 +37513,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 45.60955192, "receivingTargets": 77.77894171, "receivingTouchdowns": 3.955320604, - "receivingTouchdowns40Plus": 0.197045313, - "receivingTouchdowns50Plus": 0.128769112, + "receivingTouchdowns40Plus": 0.719627404, + "receivingTouchdowns50Plus": 0.022256518, "receivingYards": 629.5498595, + "receivingYardsPer10Yards": 62, + "receivingYardsPer20Yards": 31, + "receivingYardsPer25Yards": 25, + "receivingYardsPer50Yards": 12, + "receivingYardsPer5Yards": 125, "receivingYardsPerReception": 13.80302663, - "turnovers": 0.328062043, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 9, + "totalTurnovers": 0.328062043, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30344,10 +37532,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingYards": 165, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 23.57142857, "rushingAttempts": 2, "rushingYards": 23, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 11.5, + "teamLoss": 5, + "teamWin": 2, "usesPoints": false, }, }, @@ -30388,11 +37585,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.27691094, "receivingTargets": 19.06300636, "receivingTouchdowns": 1.873831276, - "receivingTouchdowns40Plus": 0.116272973, - "receivingTouchdowns50Plus": 0.075984388, + "receivingTouchdowns40Plus": 0.054329467, + "receivingTouchdowns50Plus": 0.001680293, "receivingYards": 136.2421937, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 11.09743277, - "turnovers": 0.088305811, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.088305811, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30402,10 +37606,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15, "receivingTargets": 34, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, "receivingYards": 315, "receivingYardsAfterCatch": 60, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 60, "receivingYardsPerReception": 21, + "teamLoss": 3, + "teamPointsScored": 12, + "teamWin": 14, "usesPoints": false, }, }, @@ -30443,34 +37654,58 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 32.24184217, "passingCompletionPercentage": 0.65044317, "passingCompletions": 20.97148602, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11.27035616, "passingInterceptions": 0.873594391, "passingTouchdowns": 2.597945049, "passingTouchdowns40Plus": 0.198362611, "passingTouchdowns50Plus": 0.129629966, "passingYards": 242.1321057, + "passingYards300To399": 0.197718679, + "passingYards400Plus": 0.026706609, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushing2PtConversions": 0.005224658, "rushingAttempts": 2.803763569, + "rushingGame100To199Yards": 0.004857396, + "rushingGame200PlusYards": 0.000165764, "rushingTouchdowns": 0.107364414, "rushingTouchdowns40Plus": 0.005275177, "rushingTouchdowns50Plus": 0.003692624, "rushingYards": 10.60736368, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.783258973, - "turnovers": 1.206806041, + "totalTurnovers": 1.206806041, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 21, "passingCompletionPercentage": 0.66666667, "passingCompletions": 14, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 7, "passingTouchdowns": 1, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 195, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 17, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 37, "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -30512,7 +37747,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 17, "receivingYards": 153, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 17, + "teamLoss": 3, + "teamWin": 4, "usesPoints": false, }, }, @@ -30547,9 +37789,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptFieldGoalsFromUnder40": 3, "attemptedExtraPoints": 6, "attemptedFieldGoals": 3, + "fieldGoalAttemptedYards": 80, + "fieldGoalAttemptedYardsPer10Yards": 8, + "fieldGoalAttemptedYardsPer20Yards": 4, + "fieldGoalAttemptedYardsPer25Yards": 3, + "fieldGoalAttemptedYardsPer50Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 16, + "fieldGoalMadeYards": 80, + "fieldGoalMadeYardsPer10Yards": 8, + "fieldGoalMadeYardsPer20Yards": 4, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 16, "madeExtraPoints": 6, "madeFieldGoals": 3, "madeFieldGoalsFromUnder40": 3, + "teamLoss": 1, + "teamPointsScored": 15, + "teamWin": 1, "usesPoints": false, }, }, @@ -30590,11 +37847,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 31.40034207, "receivingTargets": 52.57721526, "receivingTouchdowns": 2.51720166, - "receivingTouchdowns40Plus": 0.128067551, - "receivingTouchdowns50Plus": 0.083692145, + "receivingTouchdowns40Plus": 0.204549701, + "receivingTouchdowns50Plus": 0.006326279, "receivingYards": 384.6964233, + "receivingYardsPer10Yards": 38, + "receivingYardsPer20Yards": 19, + "receivingYardsPer25Yards": 15, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 76, "receivingYardsPerReception": 12.25134499, - "turnovers": 0.225857522, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.225857522, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30607,7 +37871,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 416, "receivingYardsAfterCatch": 176, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 78, "receivingYardsPerReception": 11.88571429, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 12, "usesPoints": false, }, }, @@ -30648,14 +37921,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 105, "passingCompletionPercentage": 0.57142857, "passingCompletions": 60, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 10, "passingIncompletions": 45, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 6, "passingInterceptions": 3, "passingTouchdowns": 1, "passingYards": 534, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 50, + "passingYardsPer20Yards": 24, + "passingYardsPer25Yards": 19, + "passingYardsPer50Yards": 9, + "passingYardsPer5Yards": 104, "rushingAttempts": 14, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 21, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.5, - "turnovers": 5, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 3, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -30695,18 +37983,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.148789176, "receivingTargets": 2.932096082, "receivingTouchdowns": 0.059615289, - "receivingTouchdowns40Plus": 0.034402568, - "receivingTouchdowns50Plus": 0.022482078, + "receivingTouchdowns40Plus": 0.008608409, + "receivingTouchdowns50Plus": 0.000266239, "receivingYards": 14.85761295, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.914411667, "rushing2PtConversions": 0.052084149, "rushingAttempts": 34.29948148, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.045674994, + "rushingGame200PlusYards": 0.001558712, "rushingTouchdowns": 0.946333852, "rushingTouchdowns40Plus": 0.064095348, "rushingTouchdowns50Plus": 0.044866744, "rushingYards": 133.1974425, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 26, "rushingYardsPerAttempt": 3.883366066, - "turnovers": 0.153437271, + "totalTurnovers": 0.153437271, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30718,11 +38017,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 17, "receivingYardsAfterCatch": 18, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.5, "rushingAttempts": 20, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingTouchdowns": 1, "rushingYards": 90, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.5, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -30798,20 +38109,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 287.0809734, "passingCompletionPercentage": 0.645188854, "passingCompletions": 185.2214441, + "passingCompletionsPer10Completions": 18, + "passingCompletionsPer5Completions": 37, "passingIncompletions": 101.8595292, "passingInterceptions": 7.219774241, "passingTouchdowns": 9.086147785, "passingTouchdowns40Plus": 1.680803743, "passingTouchdowns50Plus": 1.098405246, "passingYards": 1997.74753, + "passingYards300To399": 1.782423989, + "passingYards400Plus": 0.240758745, + "passingYardsPer100Yards": 19, + "passingYardsPer10Yards": 199, + "passingYardsPer20Yards": 99, + "passingYardsPer25Yards": 79, + "passingYardsPer50Yards": 39, + "passingYardsPer5Yards": 399, "rushing2PtConversions": 0.053236935, "rushingAttempts": 28.51151643, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.08471935, + "rushingGame200PlusYards": 0.002891146, "rushingTouchdowns": 0.965525203, "rushingTouchdowns40Plus": 0.054011, "rushingTouchdowns50Plus": 0.0378077, "rushingYards": 124.9481863, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 4.382376034, - "turnovers": 9.394216668, + "totalTurnovers": 9.394216668, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30819,15 +38149,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 180, "passingCompletionPercentage": 0.65, "passingCompletions": 117, + "passingCompletionsPer10Completions": 9, + "passingCompletionsPer5Completions": 21, "passingIncompletions": 63, + "passingIncompletionsPer10Incompletions": 3, + "passingIncompletionsPer5Incompletions": 10, "passingInterceptions": 5, "passingTouchdowns": 4, "passingYards": 1252, + "passingYardsPer100Yards": 8, + "passingYardsPer10Yards": 121, + "passingYardsPer20Yards": 59, + "passingYardsPer25Yards": 47, + "passingYardsPer50Yards": 21, + "passingYardsPer5Yards": 246, "rushingAttempts": 19, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 2, "rushingYards": 38, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2, - "turnovers": 5, + "teamLoss": 4, + "teamPointsScored": 36, + "teamWin": 3, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -30868,18 +38213,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.45264446, "receivingTargets": 28.39036073, "receivingTouchdowns": 0.931926961, - "receivingTouchdowns40Plus": 0.115605445, - "receivingTouchdowns50Plus": 0.075548158, + "receivingTouchdowns40Plus": 0.075653196, + "receivingTouchdowns50Plus": 0.00233979, "receivingYards": 202.5910312, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 10.97897007, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.006173469, "rushingAttempts": 3.945233553, + "rushingGame100To199Yards": 0.000968619, + "rushingGame200PlusYards": 0.0000331, "rushingTouchdowns": 0.133584886, "rushingTouchdowns40Plus": 0.007250788, "rushingTouchdowns50Plus": 0.005075552, "rushingYards": 20.77257053, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.265232147, - "turnovers": 0.135148226, + "totalTurnovers": 0.135148226, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30887,16 +38244,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27, "receivingTargets": 32, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 272, "receivingYardsAfterCatch": 330, + "receivingYardsPer10Yards": 22, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 50, "receivingYardsPerReception": 10.07407407, + "receptionsPer5Receptions": 1, "rushingAttempts": 9, "rushingTouchdowns": 1, "rushingTouchdowns40Plus": 1, "rushingYards": 65, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 7.22222222, + "teamLoss": 6, + "teamPointsScored": 12, + "teamWin": 7, "usesPoints": false, }, }, @@ -30936,11 +38304,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33.25216145, "receivingTargets": 45.91706385, "receivingTouchdowns": 3.773150412, - "receivingTouchdowns40Plus": 0.096595978, - "receivingTouchdowns50Plus": 0.063125471, + "receivingTouchdowns40Plus": 0.136392708, + "receivingTouchdowns50Plus": 0.004218331, "receivingYards": 314.7556722, + "receivingYardsPer10Yards": 31, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 62, "receivingYardsPerReception": 9.465720676, - "turnovers": 0.18211586, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.18211586, "usesPoints": false, }, "rawStats": PlayerStats { @@ -30949,7 +38324,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 28, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 9.33333333, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -30990,18 +38370,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.804193454, "receivingTargets": 4.992564232, "receivingTouchdowns": 0.15822097, - "receivingTouchdowns40Plus": 0.041308425, - "receivingTouchdowns50Plus": 0.026995056, + "receivingTouchdowns40Plus": 0.01532706, + "receivingTouchdowns50Plus": 0.000474033, "receivingYards": 28.01101956, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.363195352, "rushing2PtConversions": 0.003848465, "rushingAttempts": 4.482839026, + "rushingGame100To199Yards": 0.000832973, + "rushingGame200PlusYards": 0.0000284, "rushingTouchdowns": 0.123439782, "rushingTouchdowns40Plus": 0.008242478, "rushingTouchdowns50Plus": 0.005769734, "rushingYards": 18.77300524, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.187749132, - "turnovers": 0.034386366, + "totalTurnovers": 0.034386366, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31010,10 +38398,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 41, "receivingYardsAfterCatch": 39, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 13.66666667, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 12, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.33333333, + "teamLoss": 6, "usesPoints": false, }, }, @@ -31060,12 +38456,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 12, "receivingYards": 93, "receivingYardsAfterCatch": 105, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 9.3, "rushingAttempts": 23, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 3, "rushingYards": 77, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 3.34782609, - "turnovers": 1, + "teamLoss": 7, + "teamPointsScored": 18, + "teamWin": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -31107,18 +38515,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.558612656, "receivingTargets": 8.46547642, "receivingTouchdowns": 0.219695306, - "receivingTouchdowns40Plus": 0.041698489, - "receivingTouchdowns50Plus": 0.027249962, + "receivingTouchdowns40Plus": 0.024031381, + "receivingTouchdowns50Plus": 0.000743239, "receivingYards": 46.80569577, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 7.136523871, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.048890037, "rushingAttempts": 26.65369914, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.034086238, + "rushingGame200PlusYards": 0.001163233, "rushingTouchdowns": 0.968061346, "rushingTouchdowns40Plus": 0.049605961, "rushingTouchdowns50Plus": 0.034724173, "rushingYards": 114.8409648, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 22, "rushingYardsPerAttempt": 4.308631392, - "turnovers": 0.131717413, + "totalTurnovers": 0.131717413, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31130,11 +38552,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 39, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.8, "rushingAttempts": 31, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 5, "rushingTouchdowns": 1, "rushingYards": 141, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 26, "rushingYardsPerAttempt": 4.5483871, + "teamLoss": 7, + "teamPointsScored": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -31180,18 +38614,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 43.94870046, "receivingTargets": 70.29201953, "receivingTouchdowns": 2.791680805, - "receivingTouchdowns40Plus": 0.142664833, - "receivingTouchdowns50Plus": 0.093231469, + "receivingTouchdowns40Plus": 0.508585151, + "receivingTouchdowns50Plus": 0.015729438, "receivingYards": 534.1528019, + "receivingYardsPer10Yards": 53, + "receivingYardsPer20Yards": 26, + "receivingYardsPer25Yards": 21, + "receivingYardsPer50Yards": 10, + "receivingYardsPer5Yards": 106, "receivingYardsPerReception": 12.15400674, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, "rushing2PtConversions": 0.007165692, "rushingAttempts": 3.87943153, + "rushingGame100To199Yards": 0.001375255, + "rushingGame200PlusYards": 0.0000469, "rushingTouchdowns": 0.168616696, "rushingTouchdowns40Plus": 0.00713052, "rushingTouchdowns50Plus": 0.004991364, "rushingYards": 23.72529855, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6.115663692, - "turnovers": 0.280452918, + "totalTurnovers": 0.280452918, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31206,13 +38652,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 107, "receivingYardsAfterCatch": 37, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 15.28571429, "rushingAttempts": 9, "rushingTouchdowns": 1, "rushingTouchdowns40Plus": 1, "rushingYards": 103, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 11.44444444, - "turnovers": 3, + "teamLoss": 11, + "teamPointsScored": 12, + "teamWin": 1, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -31253,18 +38711,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.825961608, "receivingTargets": 5.020858538, "receivingTouchdowns": 0.149595841, - "receivingTouchdowns40Plus": 0.039338773, - "receivingTouchdowns50Plus": 0.025707888, + "receivingTouchdowns40Plus": 0.015162055, + "receivingTouchdowns50Plus": 0.00046893, "receivingYards": 27.67144009, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.232545155, "rushing2PtConversions": 0.027232265, "rushingAttempts": 19.64174107, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.018269964, + "rushingGame200PlusYards": 0.000623484, "rushingTouchdowns": 0.640830222, "rushingTouchdowns40Plus": 0.03643251, "rushingTouchdowns50Plus": 0.025502757, "rushingYards": 82.63841526, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.207285646, - "turnovers": 0.091679434, + "totalTurnovers": 0.091679434, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31277,11 +38748,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 8, "receivingYardsAfterCatch": -1, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4, "rushingAttempts": 24, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 54, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 2.25, - "turnovers": 1, + "teamLoss": 14, + "teamWin": 3, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -31325,18 +38803,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 23.87439231, "receivingTargets": 33.4454368, "receivingTouchdowns": 0.855303105, - "receivingTouchdowns40Plus": 0.046799489, - "receivingTouchdowns50Plus": 0.030583466, + "receivingTouchdowns40Plus": 0.071596656, + "receivingTouchdowns50Plus": 0.00221433, "receivingYards": 191.3617616, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 8.015356331, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.027855768, "rushingAttempts": 21.56537175, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.021535335, + "rushingGame200PlusYards": 0.000734918, "rushingTouchdowns": 0.79643625, "rushingTouchdowns40Plus": 0.040014374, "rushingTouchdowns50Plus": 0.028010061, "rushingYards": 92.58378205, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.293168842, - "turnovers": 0.187902656, + "totalTurnovers": 0.187902656, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31346,10 +38840,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 15, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 5, "rushingAttempts": 2, "rushingYards": -2, "rushingYardsPerAttempt": -1, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, }, @@ -31389,11 +38887,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 44.96729412, "receivingTargets": 65.68916266, "receivingTouchdowns": 2.880956926, - "receivingTouchdowns40Plus": 0.117145602, - "receivingTouchdowns50Plus": 0.076554651, + "receivingTouchdowns40Plus": 0.329519752, + "receivingTouchdowns50Plus": 0.010191333, "receivingYards": 470.6241113, + "receivingYardsPer10Yards": 47, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 94, "receivingYardsPerReception": 10.46592019, - "turnovers": 0.304072046, + "receptionsPer10Receptions": 4, + "receptionsPer5Receptions": 8, + "totalTurnovers": 0.304072046, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31403,7 +38908,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 28, "receivingYards": 128, "receivingYardsAfterCatch": 85, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 9.14285714, + "teamLoss": 8, + "teamWin": 2, "usesPoints": false, }, }, @@ -31444,11 +38955,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.516191329, "receivingTargets": 9.989251748, "receivingTouchdowns": 0.547986962, - "receivingTouchdowns40Plus": 0.106458284, - "receivingTouchdowns50Plus": 0.069570489, + "receivingTouchdowns40Plus": 0.033093278, + "receivingTouchdowns50Plus": 0.001023503, "receivingYards": 70.95336323, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.88877838, - "turnovers": 0.051207586, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.051207586, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31457,9 +38974,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19, "receivingTargets": 27, "receivingTouchdowns": 1, + "receivingTouchdowns40Plus": 1, "receivingYards": 278, "receivingYardsAfterCatch": 66, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 14.63157895, + "receptionsPer5Receptions": 1, + "teamLoss": 9, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -31501,18 +39029,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.16038416, "receivingTargets": 22.24714552, "receivingTouchdowns": 0.888644567, - "receivingTouchdowns40Plus": 0.045633843, - "receivingTouchdowns50Plus": 0.029821717, + "receivingTouchdowns40Plus": 0.051473675, + "receivingTouchdowns50Plus": 0.001591969, "receivingYards": 126.7816343, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 7.388041734, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.056271853, "rushingAttempts": 32.03908171, + "rushingAttemptsPer10Attempts": 3, + "rushingAttemptsPer5Attempts": 6, + "rushingGame100To199Yards": 0.0488079, + "rushingGame200PlusYards": 0.001665626, "rushingTouchdowns": 1.169463681, "rushingTouchdowns40Plus": 0.05979655, "rushingTouchdowns50Plus": 0.041857585, "rushingYards": 137.7908311, + "rushingYardsPer10Yards": 13, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 5, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 27, "rushingYardsPerAttempt": 4.300711, - "turnovers": 0.201275508, + "totalTurnovers": 0.201275508, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31524,7 +39068,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 38, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 12.66666667, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -31562,20 +39113,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 33.04468239, "passingCompletionPercentage": 0.620652269, "passingCompletions": 20.50925709, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.5354253, "passingInterceptions": 1.043156757, "passingTouchdowns": 1.167850743, "passingTouchdowns40Plus": 0.158901306, "passingTouchdowns50Plus": 0.103842004, "passingYards": 214.575337, + "passingYards300To399": 0.129275188, + "passingYards400Plus": 0.017461688, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 21, + "passingYardsPer20Yards": 10, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 42, "rushing2PtConversions": 0.004381766, "rushingAttempts": 2.653662573, + "rushingGame100To199Yards": 0.004704031, + "rushingGame200PlusYards": 0.000160531, "rushingTouchdowns": 0.115598806, "rushingTouchdowns40Plus": 0.004986011, "rushingTouchdowns50Plus": 0.003490208, "rushingYards": 10.43991638, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.934153679, - "turnovers": 1.292887293, + "totalTurnovers": 1.292887293, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31584,14 +39149,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 68, "passingCompletionPercentage": 0.58823529, "passingCompletions": 40, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 28, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 2, "passingTouchdowns": 2, "passingYards": 411, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 40, + "passingYardsPer20Yards": 19, + "passingYardsPer25Yards": 16, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 81, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 44, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 5.5, - "turnovers": 4, + "teamLoss": 2, + "teamPointsScored": 12, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -31632,11 +39214,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.52310333, "receivingTargets": 18.36285393, "receivingTouchdowns": 0.824548198, - "receivingTouchdowns40Plus": 0.126024547, - "receivingTouchdowns50Plus": 0.082357041, + "receivingTouchdowns40Plus": 0.053541706, + "receivingTouchdowns50Plus": 0.001655929, "receivingYards": 133.7002718, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 12.7054033, - "turnovers": 0.060552768, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.060552768, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31646,7 +39235,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 158, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 29, "receivingYardsPerReception": 9.875, + "teamLoss": 9, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -31686,18 +39283,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.506826153, "receivingTargets": 6.361260194, "receivingTouchdowns": 0.169982218, - "receivingTouchdowns40Plus": 0.035266024, - "receivingTouchdowns50Plus": 0.023046347, + "receivingTouchdowns40Plus": 0.017731273, + "receivingTouchdowns50Plus": 0.00054839, "receivingYards": 32.83435813, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.28547253, "rushing2PtConversions": 0.100021678, "rushingAttempts": 68.23262357, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 13, + "rushingGame100To199Yards": 0.215596419, + "rushingGame200PlusYards": 0.007357479, "rushingTouchdowns": 2.699760992, "rushingTouchdowns40Plus": 0.129807786, "rushingTouchdowns50Plus": 0.09086545, "rushingYards": 289.2133665, + "rushingYardsPer10Yards": 28, + "rushingYardsPer20Yards": 14, + "rushingYardsPer25Yards": 11, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 57, "rushingYardsPerAttempt": 4.23863764, - "turnovers": 0.367046529, + "totalTurnovers": 0.367046529, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31707,10 +39317,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 19, "receivingYardsAfterCatch": 29, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.33333333, "rushingAttempts": 17, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 53, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.11764706, + "teamLoss": 9, + "teamWin": 6, "usesPoints": false, }, }, @@ -31748,20 +39367,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 36.56680473, "passingCompletionPercentage": 0.628282517, "passingCompletions": 22.97428413, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.5925206, "passingInterceptions": 1.116002445, "passingTouchdowns": 1.422834889, "passingTouchdowns40Plus": 0.188389094, "passingTouchdowns50Plus": 0.123112273, "passingYards": 235.4530479, + "passingYards300To399": 0.178347757, + "passingYards400Plus": 0.024090106, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 47, "rushing2PtConversions": 0.005059569, "rushingAttempts": 3.238594501, + "rushingGame100To199Yards": 0.006959826, + "rushingGame200PlusYards": 0.000237512, "rushingTouchdowns": 0.147943488, "rushingTouchdowns40Plus": 0.006117182, "rushingTouchdowns50Plus": 0.004282027, "rushingYards": 12.68038138, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.915396441, - "turnovers": 1.393122614, + "totalTurnovers": 1.393122614, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31770,13 +39403,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 83, "passingCompletionPercentage": 0.54216867, "passingCompletions": 45, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 7, "passingIncompletions": 38, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 5, "passingYards": 412, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 38, + "passingYardsPer20Yards": 17, + "passingYardsPer25Yards": 14, + "passingYardsPer50Yards": 6, + "passingYardsPer5Yards": 80, "rushingAttempts": 15, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 61, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.06666667, - "turnovers": 7, + "teamLoss": 5, + "teamWin": 1, + "totalTurnovers": 7, "usesPoints": false, }, }, @@ -31816,18 +39465,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.231924609, "receivingTargets": 10.71200988, "receivingTouchdowns": 0.284686965, - "receivingTouchdowns40Plus": 0.041263174, - "receivingTouchdowns50Plus": 0.026965484, + "receivingTouchdowns40Plus": 0.028902579, + "receivingTouchdowns50Plus": 0.000893894, "receivingYards": 58.81594897, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 7.144860014, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.095505389, "rushingAttempts": 47.99603329, + "rushingAttemptsPer10Attempts": 4, + "rushingAttemptsPer5Attempts": 9, + "rushingGame100To199Yards": 0.110154975, + "rushingGame200PlusYards": 0.003759167, "rushingTouchdowns": 1.491032553, "rushingTouchdowns40Plus": 0.090406528, "rushingTouchdowns50Plus": 0.063284569, "rushingYards": 204.016153, + "rushingYardsPer10Yards": 20, + "rushingYardsPer20Yards": 10, + "rushingYardsPer25Yards": 8, + "rushingYardsPer50Yards": 4, + "rushingYardsPer5Yards": 40, "rushingYardsPerAttempt": 4.250687796, - "turnovers": 0.176497361, + "totalTurnovers": 0.176497361, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31835,10 +39499,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 116, "receivingYardsAfterCatch": 112, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 12.88888889, "rushingAttempts": 23, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 102, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.43478261, + "teamLoss": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -31879,11 +39555,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.450994, "receivingTargets": 43.1854706, "receivingTouchdowns": 1.285453892, - "receivingTouchdowns40Plus": 0.112577421, - "receivingTouchdowns50Plus": 0.073569344, + "receivingTouchdowns40Plus": 0.129799426, + "receivingTouchdowns50Plus": 0.004014415, "receivingYards": 305.2046762, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 11.99185683, - "turnovers": 0.146451868, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.146451868, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31896,11 +39579,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 533, "receivingYardsAfterCatch": 189, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 99, "receivingYardsPerReception": 13.325, + "receptionsPer5Receptions": 1, "rushingAttempts": 2, "rushingYards": 7, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.5, - "turnovers": 1, + "teamLoss": 10, + "teamPointsScored": 18, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -31938,20 +39632,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 37.71811552, "passingCompletionPercentage": 0.640313034, "passingCompletions": 24.15140097, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.56671454, "passingInterceptions": 0.855766408, "passingTouchdowns": 1.807374886, "passingTouchdowns40Plus": 0.246401605, "passingTouchdowns50Plus": 0.161023449, "passingYards": 272.1398783, + "passingYards300To399": 0.309990458, + "passingYards400Plus": 0.041871583, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 27, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 54, "rushing2PtConversions": 0.009191219, "rushingAttempts": 3.405044244, + "rushingGame100To199Yards": 0.005057778, + "rushingGame200PlusYards": 0.000172603, "rushingTouchdowns": 0.142488992, "rushingTouchdowns40Plus": 0.006441192, "rushingTouchdowns50Plus": 0.004508835, "rushingYards": 10.82221046, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.178287764, - "turnovers": 1.146531677, + "totalTurnovers": 1.146531677, "usesPoints": false, }, "rawStats": PlayerStats { @@ -31959,14 +39667,28 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 162, "passingCompletionPercentage": 0.58024691, "passingCompletions": 94, + "passingCompletionsPer10Completions": 6, + "passingCompletionsPer5Completions": 16, "passingIncompletions": 68, + "passingIncompletionsPer10Incompletions": 5, + "passingIncompletionsPer5Incompletions": 12, "passingInterceptions": 3, "passingTouchdowns": 5, "passingYards": 1051, + "passingYardsPer100Yards": 8, + "passingYardsPer10Yards": 103, + "passingYardsPer20Yards": 50, + "passingYardsPer25Yards": 39, + "passingYardsPer50Yards": 18, + "passingYardsPer5Yards": 208, "rushingAttempts": 9, "rushingYards": 6, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 0.66666667, - "turnovers": 3, + "teamLoss": 3, + "teamPointsScored": 30, + "teamWin": 6, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -32006,18 +39728,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 0.77230638, "receivingTargets": 1.04251493, "receivingTouchdowns": 0.033526247, - "receivingTouchdowns40Plus": 0.009913976, - "receivingTouchdowns50Plus": 0.006478783, + "receivingTouchdowns40Plus": 0.003144039, + "receivingTouchdowns50Plus": 0.0000972, "receivingYards": 5.934324437, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7.683899285, "rushing2PtConversions": 0.007338262, "rushingAttempts": 3.692099251, + "rushingGame100To199Yards": 0.002731996, + "rushingGame200PlusYards": 0.0000932, "rushingTouchdowns": 0.126620913, "rushingTouchdowns40Plus": 0.006830305, "rushingTouchdowns50Plus": 0.004781213, "rushingYards": 15.87844714, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.300655551, - "turnovers": 0.014092099, + "totalTurnovers": 0.014092099, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32030,11 +39757,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 12, "receivingYards": 58, "receivingYardsAfterCatch": 83, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 4.83333333, "rushingAttempts": 49, + "rushingAttemptsPer5Attempts": 5, "rushingYards": 262, + "rushingYardsPer10Yards": 22, + "rushingYardsPer20Yards": 9, + "rushingYardsPer25Yards": 7, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 48, "rushingYardsPerAttempt": 5.34693878, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -32076,10 +39813,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 29, "receivingYardsAfterCatch": 55, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 5.8, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 21, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 2.33333333, + "teamLoss": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -32124,18 +39869,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.54832863, "receivingTargets": 29.03626889, "receivingTouchdowns": 1.05879388, - "receivingTouchdowns40Plus": 0.11853581, - "receivingTouchdowns50Plus": 0.077463152, + "receivingTouchdowns40Plus": 0.077870832, + "receivingTouchdowns50Plus": 0.002408376, "receivingYards": 208.4867112, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 11.88071614, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.022280308, "rushingAttempts": 7.78469338, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.009012996, + "rushingGame200PlusYards": 0.000307579, "rushingTouchdowns": 0.320223678, "rushingTouchdowns40Plus": 0.014337068, "rushingTouchdowns50Plus": 0.010035948, "rushingYards": 60.41413541, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 7.760631339, - "turnovers": 0.26816046, + "totalTurnovers": 0.26816046, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32149,10 +39909,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 187, "receivingYardsAfterCatch": 121, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 8.13043478, + "receptionsPer5Receptions": 1, "rushingAttempts": 12, "rushingYards": 86, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 7.16666667, + "teamLoss": 6, + "teamPointsScored": 20, + "teamWin": 9, "usesPoints": false, }, }, @@ -32190,20 +39964,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 35.94116469, "passingCompletionPercentage": 0.60595644, "passingCompletions": 21.77878021, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 14.16238448, "passingInterceptions": 1.125614452, "passingTouchdowns": 1.708785612, "passingTouchdowns40Plus": 0.191892163, "passingTouchdowns50Plus": 0.125401528, "passingYards": 237.81903, + "passingYards300To399": 0.184993832, + "passingYards400Plus": 0.024987816, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 47, "rushing2PtConversions": 0.00791144, "rushingAttempts": 3.121745894, + "rushingGame100To199Yards": 0.005452885, + "rushingGame200PlusYards": 0.000186086, "rushingTouchdowns": 0.149628789, "rushingTouchdowns40Plus": 0.005890287, "rushingTouchdowns50Plus": 0.004123201, "rushingYards": 11.23371538, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.598536129, - "turnovers": 1.397469723, + "totalTurnovers": 1.397469723, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32212,14 +40000,28 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 88, "passingCompletionPercentage": 0.60227273, "passingCompletions": 53, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 35, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 4, "passingTouchdowns": 2, "passingYards": 483, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 46, + "passingYardsPer20Yards": 22, + "passingYardsPer25Yards": 17, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 96, "rushingAttempts": 6, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.16666667, - "turnovers": 5, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 1, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -32259,18 +40061,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21.41736227, "receivingTargets": 28.39732671, "receivingTouchdowns": 1.431097796, - "receivingTouchdowns40Plus": 0.04586194, - "receivingTouchdowns50Plus": 0.029970778, + "receivingTouchdowns40Plus": 0.062059186, + "receivingTouchdowns50Plus": 0.001919356, "receivingYards": 162.1352855, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 7.570273286, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, "rushing2PtConversions": 0.012189124, "rushingAttempts": 9.888359441, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.004144822, + "rushingGame200PlusYards": 0.000141447, "rushingTouchdowns": 0.421483484, "rushingTouchdowns40Plus": 0.018232087, "rushingTouchdowns50Plus": 0.012762461, "rushingYards": 41.45714058, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.192519581, - "turnovers": 0.257294369, + "totalTurnovers": 0.257294369, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32282,11 +40098,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 200, "receivingYardsAfterCatch": 149, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 10.52631579, "rushingAttempts": 7, "rushingTouchdowns": 1, "rushingYards": 26, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.71428571, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 12, "usesPoints": false, }, }, @@ -32328,11 +40152,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.0938004, "receivingTargets": 45.97746342, "receivingTouchdowns": 1.983432985, - "receivingTouchdowns40Plus": 0.127582966, - "receivingTouchdowns50Plus": 0.083375468, + "receivingTouchdowns40Plus": 0.152301165, + "receivingTouchdowns50Plus": 0.004710345, "receivingYards": 333.00731, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 11.44598868, - "turnovers": 0.173106525, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.173106525, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32344,7 +40175,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 35, "receivingYards": 214, "receivingYardsAfterCatch": 75, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 8.91666667, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -32382,20 +40219,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 33.39653963, "passingCompletionPercentage": 0.622406192, "passingCompletions": 20.78621305, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.61032658, "passingInterceptions": 1.038669702, "passingTouchdowns": 2.073718848, "passingTouchdowns40Plus": 0.177095586, "passingTouchdowns50Plus": 0.115731965, "passingYards": 227.6688196, + "passingYards300To399": 0.158093967, + "passingYards400Plus": 0.02135435, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 45, "rushing2PtConversions": 0.006017274, "rushingAttempts": 2.750770193, + "rushingGame100To199Yards": 0.006169225, + "rushingGame200PlusYards": 0.000210532, "rushingTouchdowns": 0.129831894, "rushingTouchdowns40Plus": 0.005172999, "rushingTouchdowns50Plus": 0.0036211, "rushingYards": 11.94342986, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 4.341849382, - "turnovers": 1.240148003, + "totalTurnovers": 1.240148003, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32404,14 +40255,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 62, "passingCompletionPercentage": 0.61290323, "passingCompletions": 38, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 6, "passingIncompletions": 24, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 3, "passingTouchdowns": 1, "passingYards": 390, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 38, + "passingYardsPer20Yards": 18, + "passingYardsPer25Yards": 15, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 77, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 32, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4, - "turnovers": 4, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 1, + "totalTurnovers": 4, "usesPoints": false, }, }, @@ -32449,36 +40318,66 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 36.88088304, "passingCompletionPercentage": 0.632188144, "passingCompletions": 23.31565699, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.56522606, "passingInterceptions": 1.31093393, "passingTouchdowns": 1.011932393, "passingTouchdowns40Plus": 0.212145089, "passingTouchdowns50Plus": 0.138636815, "passingYards": 251.0868886, + "passingYards300To399": 0.22674723, + "passingYards400Plus": 0.030627605, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 25, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 50, "rushing2PtConversions": 0.004233606, "rushingAttempts": 2.136002398, + "rushingGame100To199Yards": 0.002042384, + "rushingGame200PlusYards": 0.0000697, "rushingTouchdowns": 0.090450353, "rushingTouchdowns40Plus": 0.003994616, "rushingTouchdowns50Plus": 0.002796231, "rushingYards": 6.908129463, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.234139377, - "turnovers": 1.711003817, + "totalTurnovers": 1.711003817, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 106, "passingCompletionPercentage": 0.59433962, "passingCompletions": 63, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 11, "passingIncompletions": 43, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 7, "passingInterceptions": 3, "passingTouchdowns": 3, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 731, + "passingYards300To399": 1, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 70, + "passingYardsPer20Yards": 34, + "passingYardsPer25Yards": 27, + "passingYardsPer50Yards": 13, + "passingYardsPer5Yards": 144, "rushingAttempts": 6, "rushingYards": 39, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 6.5, - "turnovers": 3, + "teamLoss": 4, + "teamPointsScored": 18, + "teamWin": 2, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -32523,11 +40422,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.67272194, "receivingTargets": 17.01575508, "receivingTouchdowns": 1.113179799, - "receivingTouchdowns40Plus": 0.148975453, - "receivingTouchdowns50Plus": 0.097355458, + "receivingTouchdowns40Plus": 0.052106416, + "receivingTouchdowns50Plus": 0.001611539, "receivingYards": 128.8327192, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 12.07121482, - "turnovers": 0.076767142, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.076767142, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32540,11 +40446,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 204, "receivingYardsAfterCatch": 68, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 12.75, "rushingAttempts": 2, "rushingYards": 7, "rushingYardsPerAttempt": 3.5, - "turnovers": 2, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 6, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -32615,11 +40529,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 29.56742971, "receivingTargets": 39.93851217, "receivingTouchdowns": 1.597538482, - "receivingTouchdowns40Plus": 0.08033009, - "receivingTouchdowns50Plus": 0.052495714, + "receivingTouchdowns40Plus": 0.102037724, + "receivingTouchdowns50Plus": 0.003155806, "receivingYards": 261.724736, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 52, "receivingYardsPerReception": 8.851791942, - "turnovers": 0.099968533, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.099968533, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32628,10 +40549,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21, "receivingTargets": 27, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 1, "receivingYards": 232, "receivingYardsAfterCatch": 105, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 11.04761905, + "teamLoss": 9, + "teamPointsScored": 12, + "teamWin": 6, "usesPoints": false, }, }, @@ -32671,18 +40598,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.8737424, "receivingTargets": 5.108607046, "receivingTouchdowns": 0.098088454, - "receivingTouchdowns40Plus": 0.035817634, - "receivingTouchdowns50Plus": 0.023406824, + "receivingTouchdowns40Plus": 0.014506521, + "receivingTouchdowns50Plus": 0.000448655, "receivingYards": 26.1526684, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.751266787, "rushing2PtConversions": 0.026473187, "rushingAttempts": 25.33897558, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.035019078, + "rushingGame200PlusYards": 0.001195067, "rushingTouchdowns": 0.677354117, "rushingTouchdowns40Plus": 0.047127808, "rushingTouchdowns50Plus": 0.032989465, "rushingYards": 116.169902, + "rushingYardsPer10Yards": 11, + "rushingYardsPer20Yards": 5, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 23, "rushingYardsPerAttempt": 4.584632936, - "turnovers": 0.130653596, + "totalTurnovers": 0.130653596, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32694,10 +40634,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 7, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.33333333, "rushingAttempts": 4, "rushingYards": 17, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.25, + "teamLoss": 9, + "teamWin": 6, "usesPoints": false, }, }, @@ -32738,11 +40683,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 35.96140718, "receivingTargets": 59.05109671, "receivingTouchdowns": 2.324097583, - "receivingTouchdowns40Plus": 0.15722696, - "receivingTouchdowns50Plus": 0.102747818, + "receivingTouchdowns40Plus": 0.300435816, + "receivingTouchdowns50Plus": 0.009291829, "receivingYards": 453.4007759, + "receivingYardsPer10Yards": 45, + "receivingYardsPer20Yards": 22, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 90, "receivingYardsPerReception": 12.60798204, - "turnovers": 0.206931613, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, + "totalTurnovers": 0.206931613, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32753,7 +40705,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 257, "receivingYardsAfterCatch": 62, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 12.85, + "teamLoss": 12, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -32828,16 +40788,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 58, "passingCompletionPercentage": 0.65517241, "passingCompletions": 38, + "passingCompletionsPer10Completions": 3, + "passingCompletionsPer5Completions": 6, "passingIncompletions": 20, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 2, "passingTouchdowns": 2, "passingTouchdowns40Plus": 1, "passingTouchdowns50Plus": 1, "passingYards": 402, + "passingYardsPer100Yards": 3, + "passingYardsPer10Yards": 40, + "passingYardsPer20Yards": 20, + "passingYardsPer25Yards": 15, + "passingYardsPer50Yards": 7, + "passingYardsPer5Yards": 80, "rushingAttempts": 4, "rushingYards": 5, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.25, - "turnovers": 3, + "teamLoss": 2, + "teamPointsScored": 12, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -32877,11 +40850,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.9321884, "receivingTargets": 28.93988126, "receivingTouchdowns": 1.547119258, - "receivingTouchdowns40Plus": 0.090257626, - "receivingTouchdowns50Plus": 0.058983359, + "receivingTouchdowns40Plus": 0.072913824, + "receivingTouchdowns50Plus": 0.002255067, "receivingYards": 195.2073113, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 10.31086883, - "turnovers": 0.128020807, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.128020807, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32891,7 +40871,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 207, "receivingYardsAfterCatch": 123, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 11.5, + "teamLoss": 9, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -32933,11 +40920,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.971095453, "receivingTargets": 10.99043956, "receivingTouchdowns": 0.705007984, - "receivingTouchdowns40Plus": 0.121106404, - "receivingTouchdowns50Plus": 0.079143035, + "receivingTouchdowns40Plus": 0.036361507, + "receivingTouchdowns50Plus": 0.001124583, "receivingYards": 80.42865102, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.53744796, - "turnovers": 0.041477638, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.041477638, "usesPoints": false, }, "rawStats": PlayerStats { @@ -32951,7 +40944,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 161, "receivingYardsAfterCatch": 83, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 16.1, + "teamLoss": 2, + "teamPointsScored": 8, + "teamWin": 12, "usesPoints": false, }, }, @@ -33022,15 +41023,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 31.66714631, "attemptedFieldGoalsFrom40To49": 9.943483941, "attemptedFieldGoalsFrom50Plus": 5.288413434, + "attemptedFieldGoalsFrom50To59": 5.288413434, "madeExtraPoints": 39.05204325, "madeFieldGoals": 25.74080666, "madeFieldGoalsFrom40To49": 7.351886543, "madeFieldGoalsFrom50Plus": 3.180278732, + "madeFieldGoalsFrom50To59": 3.180278732, "madeFieldGoalsFromUnder40": 15.20864138, "missedExtraPoints": 3.892149574, "missedFieldGoals": 5.92633965, "missedFieldGoalsFrom40To49": 2.591597398, "missedFieldGoalsFrom50Plus": 2.108134702, + "missedFieldGoalsFrom50To59": 2.108134702, "missedFieldGoalsFromUnder40": 1.22660755, "usesPoints": false, }, @@ -33040,14 +41044,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 5, "attemptedFieldGoalsFrom40To49": 2, "attemptedFieldGoalsFrom50Plus": 1, + "attemptedFieldGoalsFrom50To59": 1, + "fieldGoalAttemptedYards": 192, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 18, + "fieldGoalAttemptedYardsPer20Yards": 8, + "fieldGoalAttemptedYardsPer25Yards": 7, + "fieldGoalAttemptedYardsPer50Yards": 3, + "fieldGoalAttemptedYardsPer5Yards": 37, + "fieldGoalMadeYards": 150, + "fieldGoalMadeYardsPer10Yards": 14, + "fieldGoalMadeYardsPer20Yards": 6, + "fieldGoalMadeYardsPer25Yards": 5, + "fieldGoalMadeYardsPer50Yards": 2, + "fieldGoalMadeYardsPer5Yards": 29, + "fieldGoalMissedYards": 42, + "fieldGoalMissedYardsPer10Yards": 4, + "fieldGoalMissedYardsPer20Yards": 2, + "fieldGoalMissedYardsPer25Yards": 1, + "fieldGoalMissedYardsPer5Yards": 8, "madeExtraPoints": 4, "madeFieldGoals": 4, "madeFieldGoalsFrom40To49": 1, "madeFieldGoalsFrom50Plus": 1, + "madeFieldGoalsFrom50To59": 1, "madeFieldGoalsFromUnder40": 2, "missedExtraPoints": 1, "missedFieldGoals": 1, "missedFieldGoalsFrom40To49": 1, + "teamLoss": 1, + "teamPointsScored": 16, + "teamWin": 1, "usesPoints": false, }, }, @@ -33092,11 +41119,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.830213052, "receivingTargets": 9.465775572, "receivingTouchdowns": 0.308313046, - "receivingTouchdowns40Plus": 0.056245969, - "receivingTouchdowns50Plus": 0.036756741, + "receivingTouchdowns40Plus": 0.028291227, + "receivingTouchdowns50Plus": 0.000874986, "receivingYards": 57.08229208, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 9.790772921, - "turnovers": 0.065298386, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.065298386, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33108,13 +41141,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 243, "receivingYardsAfterCatch": 92, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 46, "receivingYardsPerReception": 17.35714286, "rushingAttempts": 4, "rushingTouchdowns": 1, "rushingTouchdowns40Plus": 1, "rushingTouchdowns50Plus": 1, "rushingYards": 78, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 19.5, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 13, "usesPoints": false, }, }, @@ -33159,11 +41205,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.218552688, "receivingTargets": 6.595685729, "receivingTouchdowns": 0.537467489, - "receivingTouchdowns40Plus": 0.118032105, - "receivingTouchdowns50Plus": 0.07713398, + "receivingTouchdowns40Plus": 0.023771952, + "receivingTouchdowns50Plus": 0.000735215, "receivingYards": 48.44493227, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 11.4837803, - "turnovers": 0.030343359, + "totalTurnovers": 0.030343359, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33174,10 +41224,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 32, "receivingYards": 156, "receivingYardsAfterCatch": 184, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 6.5, "rushingAttempts": 17, "rushingYards": 80, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 18, "rushingYardsPerAttempt": 4.70588235, + "teamLoss": 12, + "teamWin": 5, "usesPoints": false, }, }, @@ -33216,11 +41276,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 19, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 3.16666667, "rushing2PtConversions": 1, "rushingAttempts": 15, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 49, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 3.26666667, + "teamLoss": 1, + "teamPointsScored": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -33260,23 +41331,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 33.41546025, "receivingTargets": 52.03751573, "receivingTouchdowns": 2.513504673, - "receivingTouchdowns40Plus": 0.115567772, - "receivingTouchdowns50Plus": 0.075523539, + "receivingTouchdowns40Plus": 0.188642548, + "receivingTouchdowns50Plus": 0.005834306, "receivingYards": 371.2951842, + "receivingYardsPer10Yards": 37, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 74, "receivingYardsPerReception": 11.11147898, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, "rushing2PtConversions": 0.016944617, "rushingAttempts": 3.945233553, + "rushingGame100To199Yards": 0.000275057, + "rushingGame200PlusYards": 0.00000939, "rushingTouchdowns": 0.36665685, "rushingTouchdowns40Plus": 0.007250788, "rushingTouchdowns50Plus": 0.005075552, "rushingYards": 11.78190015, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.986363163, - "turnovers": 0.247871753, + "totalTurnovers": 0.247871753, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveSoloTackles": 3, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 4, "fumbles": 1, "kickoffReturnYards": 8, @@ -33286,8 +41369,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 3, "receivingYards": 174, "receivingYardsAfterCatch": 62, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 30, "receivingYardsPerReception": 9.15789474, - "turnovers": 1, + "teamLoss": 10, + "teamPointsScored": 18, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -33326,15 +41416,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.4393682, "receivingTargets": 33.13548136, "receivingTouchdowns": 2.152461386, - "receivingTouchdowns40Plus": 0.17064492, - "receivingTouchdowns50Plus": 0.111516455, + "receivingTouchdowns40Plus": 0.136703048, + "receivingTouchdowns50Plus": 0.004227929, "receivingYards": 276.8648436, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 15.0148769, - "turnovers": 0.118027429, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.118027429, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -33374,11 +41473,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11.69892384, "receivingTargets": 16.88169433, "receivingTouchdowns": 1.255486654, - "receivingTouchdowns40Plus": 0.085609994, - "receivingTouchdowns50Plus": 0.055946131, + "receivingTouchdowns40Plus": 0.04711915, + "receivingTouchdowns50Plus": 0.001457293, "receivingYards": 112.3743088, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 9.605525293, - "turnovers": 0.079108956, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.079108956, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33389,11 +41495,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 299, "receivingYardsAfterCatch": 182, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 4, + "receivingYardsPer5Yards": 56, "receivingYardsPerReception": 10.67857143, "rushingAttempts": 1, "rushingTouchdowns": 1, "rushingYards": 1, "rushingYardsPerAttempt": 1, + "teamLoss": 3, + "teamPointsScored": 12, + "teamWin": 14, "usesPoints": false, }, }, @@ -33434,11 +41547,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.737259382, "receivingTargets": 2.75043448, "receivingTouchdowns": 0.174066935, - "receivingTouchdowns40Plus": 0.059981434, - "receivingTouchdowns50Plus": 0.039197867, + "receivingTouchdowns40Plus": 0.009784424, + "receivingTouchdowns50Plus": 0.000302611, "receivingYards": 17.10686461, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9.847041144, - "turnovers": 0.019457305, + "totalTurnovers": 0.019457305, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33449,10 +41564,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 23, "receivingYards": 104, "receivingYardsAfterCatch": 86, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 7.42857143, "rushingAttempts": 13, "rushingYards": 70, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 5.38461538, + "teamLoss": 4, + "teamWin": 8, "usesPoints": false, }, }, @@ -33493,19 +41617,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 92, "passingCompletionPercentage": 0.70652174, "passingCompletions": 65, + "passingCompletionsPer10Completions": 5, + "passingCompletionsPer5Completions": 11, "passingIncompletions": 27, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 4, "passingInterceptions": 3, "passingTouchdowns": 5, "passingYards": 781, + "passingYards300To399": 1, + "passingYardsPer100Yards": 5, + "passingYardsPer10Yards": 75, + "passingYardsPer20Yards": 37, + "passingYardsPer25Yards": 29, + "passingYardsPer50Yards": 13, + "passingYardsPer5Yards": 154, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": -6, "receivingYardsAfterCatch": 2, "receivingYardsPerReception": -6, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 0, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 0, - "turnovers": 6, + "teamLoss": 2, + "teamPointsScored": 30, + "teamWin": 2, + "totalTurnovers": 6, "usesPoints": false, }, }, @@ -33545,11 +41685,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11.59446589, "receivingTargets": 17.47101025, "receivingTouchdowns": 0.684212259, - "receivingTouchdowns40Plus": 0.181369449, - "receivingTouchdowns50Plus": 0.118524935, + "receivingTouchdowns40Plus": 0.055044488, + "receivingTouchdowns50Plus": 0.001702407, "receivingYards": 138.8546957, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 11.97594586, - "turnovers": 0.119274229, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.119274229, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33558,7 +41705,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 145, "receivingYardsAfterCatch": 60, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 14.5, + "teamLoss": 11, + "teamPointsScored": 12, + "teamWin": 1, "usesPoints": false, }, }, @@ -33600,18 +41754,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.932734749, "receivingTargets": 11.75378818, "receivingTouchdowns": 0.454754515, - "receivingTouchdowns40Plus": 0.034301783, - "receivingTouchdowns50Plus": 0.022416215, + "receivingTouchdowns40Plus": 0.027452883, + "receivingTouchdowns50Plus": 0.000849058, "receivingYards": 54.98938358, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 6.155940496, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.088430266, "rushingAttempts": 64.07143526, + "rushingAttemptsPer10Attempts": 6, + "rushingAttemptsPer5Attempts": 12, + "rushingGame100To199Yards": 0.165982905, + "rushingGame200PlusYards": 0.00566436, "rushingTouchdowns": 1.721186547, "rushingTouchdowns40Plus": 0.121621213, "rushingTouchdowns50Plus": 0.085134849, "rushingYards": 253.9056437, + "rushingYardsPer10Yards": 25, + "rushingYardsPer20Yards": 12, + "rushingYardsPer25Yards": 10, + "rushingYardsPer50Yards": 5, + "rushingYardsPer5Yards": 50, "rushingYardsPerAttempt": 3.962852442, - "turnovers": 0.296959483, + "totalTurnovers": 0.296959483, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33619,10 +41788,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 28, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 26, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 2.6, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -33696,11 +41873,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.623118084, "receivingTargets": 6.702301266, "receivingTouchdowns": 0.478196397, - "receivingTouchdowns40Plus": 0.097845509, - "receivingTouchdowns50Plus": 0.06394204, + "receivingTouchdowns40Plus": 0.022959926, + "receivingTouchdowns50Plus": 0.000710101, "receivingYards": 46.30639486, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 10.01626911, - "turnovers": 0.031261854, + "totalTurnovers": 0.031261854, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33710,7 +41891,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingYards": 123, "receivingYardsAfterCatch": 49, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 11.18181818, + "teamLoss": 3, + "teamWin": 14, "usesPoints": false, }, }, @@ -33750,11 +41937,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.8261871, "receivingTargets": 32.9144226, "receivingTouchdowns": 2.04466785, - "receivingTouchdowns40Plus": 0.118783953, - "receivingTouchdowns50Plus": 0.077625313, + "receivingTouchdowns40Plus": 0.089441351, + "receivingTouchdowns50Plus": 0.002766227, "receivingYards": 236.5545459, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 47, "receivingYardsPerReception": 10.36329655, - "turnovers": 0.154352303, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.154352303, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33767,8 +41961,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 40, "receivingYards": 302, "receivingYardsAfterCatch": 127, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 9.74193548, "rushingAttempts": 1, + "teamLoss": 8, + "teamWin": 4, "usesPoints": false, }, }, @@ -33811,18 +42012,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 37.49373487, "receivingTargets": 61.43641525, "receivingTouchdowns": 2.715962648, - "receivingTouchdowns40Plus": 0.145270203, - "receivingTouchdowns50Plus": 0.094934078, + "receivingTouchdowns40Plus": 0.31551255, + "receivingTouchdowns50Plus": 0.00975812, "receivingYards": 462.4235551, + "receivingYardsPer10Yards": 46, + "receivingYardsPer20Yards": 23, + "receivingYardsPer25Yards": 18, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 92, "receivingYardsPerReception": 12.33335534, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 7, "rushing2PtConversions": 0.009142676, "rushingAttempts": 7.977914839, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.006884549, + "rushingGame200PlusYards": 0.000234943, "rushingTouchdowns": 0.28894222, "rushingTouchdowns40Plus": 0.014694536, "rushingTouchdowns50Plus": 0.010286175, "rushingYards": 52.94026945, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6.635852916, - "turnovers": 0.316823021, + "totalTurnovers": 0.316823021, "usesPoints": false, }, "rawStats": PlayerStats { @@ -33833,10 +42049,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 58, "receivingYardsAfterCatch": 46, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 8.28571429, "rushingAttempts": 2, "rushingYards": 10, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 5, + "teamLoss": 4, + "teamWin": 6, "usesPoints": false, }, }, @@ -33876,22 +42099,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.287134225, "receivingTargets": 12.00593856, "receivingTouchdowns": 0.72112826, - "receivingTouchdowns40Plus": 0.107432136, - "receivingTouchdowns50Plus": 0.070206901, + "receivingTouchdowns40Plus": 0.038061723, + "receivingTouchdowns50Plus": 0.001177167, "receivingYards": 84.23255657, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 10.16425634, - "turnovers": 0.056038192, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.056038192, "usesPoints": false, }, "rawStats": PlayerStats { "receivingReceptions": 18, "receivingTargets": 24, "receivingTouchdowns": 4, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 216, "receivingYardsAfterCatch": 165, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 12, + "teamLoss": 8, + "teamPointsScored": 24, + "teamWin": 9, "usesPoints": false, }, }, @@ -33930,35 +42165,63 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 16.38420796, "passingCompletionPercentage": 0.60922869, "passingCompletions": 9.981729551, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 6.402478406, "passingInterceptions": 0.453106561, "passingTouchdowns": 0.720167669, "passingTouchdowns40Plus": 0.048813789, "passingTouchdowns50Plus": 0.031899811, "passingYards": 108.8085814, + "passingYards300To399": 0.055516585, + "passingYards400Plus": 0.007498835, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 10, + "passingYardsPer20Yards": 5, + "passingYardsPer25Yards": 4, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 21, "rushing2PtConversions": 0.004996351, "rushingAttempts": 1.957968873, + "rushingGame100To199Yards": 0.003340356, + "rushingGame200PlusYards": 0.000113994, "rushingTouchdowns": 0.080742731, "rushingTouchdowns40Plus": 0.003655756, "rushingTouchdowns50Plus": 0.002559029, "rushingYards": 8.810859928, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4.5, - "turnovers": 0.579794887, + "totalTurnovers": 0.579794887, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 19, "passingCompletionPercentage": 0.57894737, "passingCompletions": 11, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 8, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 169, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 16, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 33, "rushingAttempts": 5, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 35, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 7, - "turnovers": 1, + "teamPointsScored": 12, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -33999,11 +42262,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.73924503, "receivingTargets": 44.61368876, "receivingTouchdowns": 1.370891478, - "receivingTouchdowns40Plus": 0.198471013, - "receivingTouchdowns50Plus": 0.129700807, + "receivingTouchdowns40Plus": 0.192791944, + "receivingTouchdowns50Plus": 0.005962637, "receivingYards": 361.9145792, + "receivingYardsPer10Yards": 36, + "receivingYardsPer20Yards": 18, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 72, "receivingYardsPerReception": 14.06080787, - "turnovers": 0.185138177, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.185138177, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34015,10 +42285,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 323, "receivingYardsAfterCatch": 98, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 59, "receivingYardsPerReception": 15.38095238, "rushingAttempts": 6, "rushingYards": 54, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 9, + "teamLoss": 13, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -34052,15 +42334,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 33.17376679, "attemptedFieldGoalsFrom40To49": 10.41656277, "attemptedFieldGoalsFrom50Plus": 5.540019054, + "attemptedFieldGoalsFrom50To59": 5.540019054, "madeExtraPoints": 33.59867827, "madeFieldGoals": 27.60588552, "madeFieldGoalsFrom40To49": 7.902755688, "madeFieldGoalsFrom50Plus": 3.438535332, + "madeFieldGoalsFrom50To59": 3.438535332, "madeFieldGoalsFromUnder40": 16.2645945, "missedExtraPoints": 2.580590817, "missedFieldGoals": 5.56788127, "missedFieldGoalsFrom40To49": 2.513807084, "missedFieldGoalsFrom50Plus": 2.101483722, + "missedFieldGoalsFrom50To59": 2.101483722, "missedFieldGoalsFromUnder40": 0.952590464, "usesPoints": false, }, @@ -34070,6 +42355,27 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoals": 5, "attemptedFieldGoalsFrom40To49": 3, "attemptedFieldGoalsFrom50Plus": 1, + "attemptedFieldGoalsFrom50To59": 1, + "fieldGoalAttemptedYards": 225, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 22, + "fieldGoalAttemptedYardsPer20Yards": 11, + "fieldGoalAttemptedYardsPer25Yards": 8, + "fieldGoalAttemptedYardsPer50Yards": 3, + "fieldGoalAttemptedYardsPer5Yards": 44, + "fieldGoalMadeYards": 123, + "fieldGoalMadeYardsPer10Yards": 12, + "fieldGoalMadeYardsPer20Yards": 6, + "fieldGoalMadeYardsPer25Yards": 4, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 24, + "fieldGoalMissedYards": 102, + "fieldGoalMissedYardsPer100Yards": 1, + "fieldGoalMissedYardsPer10Yards": 10, + "fieldGoalMissedYardsPer20Yards": 5, + "fieldGoalMissedYardsPer25Yards": 4, + "fieldGoalMissedYardsPer50Yards": 2, + "fieldGoalMissedYardsPer5Yards": 20, "madeExtraPoints": 12, "madeFieldGoals": 3, "madeFieldGoalsFrom40To49": 2, @@ -34077,6 +42383,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFrom50Plus": 1, + "missedFieldGoalsFrom50To59": 1, + "teamLoss": 2, + "teamPointsScored": 21, + "teamWin": 1, "usesPoints": false, }, }, @@ -34147,20 +42457,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 71.22937545, "passingCompletionPercentage": 0.632197966, "passingCompletions": 45.03106631, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 9, "passingIncompletions": 26.19830914, "passingInterceptions": 1.755665237, "passingTouchdowns": 2.463100299, "passingTouchdowns40Plus": 0.420513846, "passingTouchdowns50Plus": 0.274805798, "passingYards": 499.7548262, + "passingYards300To399": 0.445243039, + "passingYards400Plus": 0.06014066, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 49, + "passingYardsPer20Yards": 24, + "passingYardsPer25Yards": 19, + "passingYardsPer50Yards": 9, + "passingYardsPer5Yards": 99, "rushing2PtConversions": 0.010674493, "rushingAttempts": 4.2896239, + "rushingGame100To199Yards": 0.006733362, + "rushingGame200PlusYards": 0.000229784, "rushingTouchdowns": 0.203120178, "rushingTouchdowns40Plus": 0.008022824, "rushingTouchdowns50Plus": 0.005615977, "rushingYards": 17.68658039, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.123107479, - "turnovers": 2.447466591, + "totalTurnovers": 2.447466591, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34169,14 +42493,28 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 78, "passingCompletionPercentage": 0.58974359, "passingCompletions": 46, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 9, "passingIncompletions": 32, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 4, "passingTouchdowns": 2, "passingYards": 416, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 41, + "passingYardsPer20Yards": 20, + "passingYardsPer25Yards": 16, + "passingYardsPer50Yards": 8, + "passingYardsPer5Yards": 83, "rushingAttempts": 6, "rushingYards": 13, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 2.16666667, - "turnovers": 5, + "teamLoss": 2, + "teamPointsScored": 12, + "totalTurnovers": 5, "usesPoints": false, }, }, @@ -34251,11 +42589,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.075991589, "receivingTargets": 13.18443081, "receivingTouchdowns": 0.8385708, - "receivingTouchdowns40Plus": 0.119552071, - "receivingTouchdowns50Plus": 0.078127278, + "receivingTouchdowns40Plus": 0.041566713, + "receivingTouchdowns50Plus": 0.001285568, "receivingYards": 94.7042649, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 10.43459152, - "turnovers": 0.058457605, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.058457605, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34266,7 +42610,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 174, "receivingYardsAfterCatch": 124, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 9.15789474, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 12, "usesPoints": false, }, }, @@ -34306,11 +42658,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.757378615, "receivingTargets": 2.59561503, "receivingTouchdowns": 0.154914641, - "receivingTouchdowns40Plus": 0.10193328, - "receivingTouchdowns50Plus": 0.066613398, + "receivingTouchdowns40Plus": 0.010370506, + "receivingTouchdowns50Plus": 0.000320737, "receivingYards": 18.21362911, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.36408942, - "turnovers": 0.011883519, + "totalTurnovers": 0.011883519, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34320,7 +42674,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 60, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 5.45454545, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamPointsScored": 24, + "teamWin": 9, "usesPoints": false, }, }, @@ -34362,18 +42724,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.414431132, "receivingTargets": 5.777768755, "receivingTouchdowns": 0.16842671, - "receivingTouchdowns40Plus": 0.039747518, - "receivingTouchdowns50Plus": 0.025975003, + "receivingTouchdowns40Plus": 0.017011208, + "receivingTouchdowns50Plus": 0.00052612, "receivingYards": 31.26354862, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.082123991, "rushing2PtConversions": 0.037307825, "rushingAttempts": 18.48555509, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.015986776, + "rushingGame200PlusYards": 0.000545567, "rushingTouchdowns": 0.698506389, "rushingTouchdowns40Plus": 0.034244462, "rushingTouchdowns50Plus": 0.023971124, "rushingYards": 79.71463274, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.31226611, - "turnovers": 0.090730467, + "totalTurnovers": 0.090730467, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34385,10 +42760,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 21, "receivingYardsAfterCatch": 21, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.5, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 14, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 1.55555556, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 13, + "totalReturnTouchdowns": 1, "usesPoints": false, }, }, @@ -34433,11 +42817,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 32.78987993, "receivingTargets": 48.6816572, "receivingTouchdowns": 1.642164609, - "receivingTouchdowns40Plus": 0.128468047, - "receivingTouchdowns50Plus": 0.083953869, + "receivingTouchdowns40Plus": 0.173142416, + "receivingTouchdowns50Plus": 0.00535492, "receivingYards": 355.6586056, + "receivingYardsPer10Yards": 35, + "receivingYardsPer20Yards": 17, + "receivingYardsPer25Yards": 14, + "receivingYardsPer50Yards": 7, + "receivingYardsPer5Yards": 71, "receivingYardsPerReception": 10.84659676, - "turnovers": 0.27509277, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.27509277, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34448,7 +42839,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 135, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 13.5, + "teamLoss": 9, + "teamPointsScored": 12, + "teamWin": 2, "usesPoints": false, }, }, @@ -34494,11 +42892,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.3679512, "receivingTargets": 18.97601237, "receivingTouchdowns": 1.227722023, - "receivingTouchdowns40Plus": 0.147565585, - "receivingTouchdowns50Plus": 0.09643411, + "receivingTouchdowns40Plus": 0.056286197, + "receivingTouchdowns50Plus": 0.00174081, "receivingYards": 143.1033588, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 11.57049833, - "turnovers": 0.073588635, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.073588635, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34513,8 +42918,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYardsPerReception": 0.5, "rushingAttempts": 5, "rushingYards": 30, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 6, - "turnovers": 1, + "teamLoss": 11, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -34554,18 +42963,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.01191432, "receivingTargets": 8.992120015, "receivingTouchdowns": 0.303065843, - "receivingTouchdowns40Plus": 0.065776036, - "receivingTouchdowns50Plus": 0.04298464, + "receivingTouchdowns40Plus": 0.027959523, + "receivingTouchdowns50Plus": 0.000864728, "receivingYards": 56.32737499, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 8.033095162, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.033340765, "rushingAttempts": 19.79705321, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.019748993, + "rushingGame200PlusYards": 0.000673957, "rushingTouchdowns": 0.912341745, "rushingTouchdowns40Plus": 0.036698304, "rushingTouchdowns50Plus": 0.025688812, "rushingYards": 88.69408814, + "rushingYardsPer10Yards": 8, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 17, "rushingYardsPerAttempt": 4.480166174, - "turnovers": 0.138229857, + "totalTurnovers": 0.138229857, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34578,10 +43002,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 57, "receivingYardsAfterCatch": 27, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 6.33333333, "rushingAttempts": 17, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 66, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 3.88235294, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -34625,10 +43061,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 33, "receivingYardsAfterCatch": 31, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 33, "rushingAttempts": 14, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 64, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 4.57142857, + "teamLoss": 6, "usesPoints": false, }, }, @@ -34704,18 +43150,28 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.177302234, "receivingTargets": 3.423673905, "receivingTouchdowns": 0.188659692, - "receivingTouchdowns40Plus": 0.01645331, - "receivingTouchdowns50Plus": 0.010752238, + "receivingTouchdowns40Plus": 0.009674454, + "receivingTouchdowns50Plus": 0.00029921, "receivingYards": 25.62165889, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 11.76761705, "rushing2PtConversions": 0.012555013, "rushingAttempts": 4.385782535, + "rushingGame100To199Yards": 0.001642713, + "rushingGame200PlusYards": 0.0000561, "rushingTouchdowns": 0.195104373, "rushingTouchdowns40Plus": 0.008062389, "rushingTouchdowns50Plus": 0.005643672, "rushingYards": 26.61348601, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.068127135, - "turnovers": 0.034390145, + "totalTurnovers": 0.034390145, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34729,11 +43185,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 9, "receivingYardsAfterCatch": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 9, "rushingAttempts": 3, "rushingYards": 17, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 5.66666667, - "turnovers": 2, + "teamLoss": 5, + "teamWin": 12, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -34777,18 +43238,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.667654265, "receivingTargets": 10.1009939, "receivingTouchdowns": 0.253229855, - "receivingTouchdowns40Plus": 0.037026814, - "receivingTouchdowns50Plus": 0.024197023, + "receivingTouchdowns40Plus": 0.026998931, + "receivingTouchdowns50Plus": 0.000835018, "receivingYards": 54.65764564, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 7.128339874, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.018216157, "rushingAttempts": 18.01279204, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.014578605, + "rushingGame200PlusYards": 0.000497512, "rushingTouchdowns": 0.392754282, "rushingTouchdowns40Plus": 0.033379258, "rushingTouchdowns50Plus": 0.023365481, "rushingYards": 73.9943988, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.107880589, - "turnovers": 0.103992989, + "totalTurnovers": 0.103992989, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34802,12 +43278,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingYards": 61, "receivingYardsAfterCatch": 79, + "receivingYardsPer10Yards": 3, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 4.69230769, "rushingAttempts": 22, "rushingTouchdowns": 1, "rushingYards": 109, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.95454545, - "turnovers": 1, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -34848,11 +43333,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.922885578, "receivingTargets": 12.72252039, "receivingTouchdowns": 0.862105568, - "receivingTouchdowns40Plus": 0.274496438, - "receivingTouchdowns50Plus": 0.179383422, + "receivingTouchdowns40Plus": 0.047020432, + "receivingTouchdowns50Plus": 0.00145424, "receivingYards": 112.2245955, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 16.21066739, - "turnovers": 0.034856628, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.034856628, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34863,11 +43354,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 110, "receivingYardsAfterCatch": 52, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 12.22222222, "rushingAttempts": 2, "rushingYards": -7, "rushingYardsPerAttempt": -3.5, - "turnovers": 1, + "teamLoss": 7, + "teamPointsScored": 6, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -34905,20 +43403,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 241.145141, "passingCompletionPercentage": 0.639121131, "passingCompletions": 154.1209552, + "passingCompletionsPer10Completions": 15, + "passingCompletionsPer5Completions": 30, "passingIncompletions": 87.02418584, "passingInterceptions": 5.855029906, "passingTouchdowns": 8.545322938, "passingTouchdowns40Plus": 1.459282218, "passingTouchdowns50Plus": 0.95364093, "passingYards": 1740.045117, + "passingYards300To399": 1.540565402, + "passingYards400Plus": 0.208089992, + "passingYardsPer100Yards": 17, + "passingYardsPer10Yards": 174, + "passingYardsPer20Yards": 87, + "passingYardsPer25Yards": 69, + "passingYardsPer50Yards": 34, + "passingYardsPer5Yards": 348, "rushing2PtConversions": 0.042266165, "rushingAttempts": 23.5283643, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.06035031, + "rushingGame200PlusYards": 0.002059525, "rushingTouchdowns": 1.334394821, "rushingTouchdowns40Plus": 0.044490232, "rushingTouchdowns50Plus": 0.031143162, "rushingYards": 98.691949, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.194594563, - "turnovers": 7.809904872, + "totalTurnovers": 7.809904872, "usesPoints": false, }, "rawStats": PlayerStats { @@ -34998,11 +43515,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 44, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 14.66666667, "rushingAttempts": 12, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 2.16666667, + "teamLoss": 2, + "teamPointsScored": 12, + "teamWin": 3, "usesPoints": false, }, }, @@ -35046,11 +43574,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 27.17721249, "receivingTargets": 42.86512444, "receivingTouchdowns": 2.138873946, - "receivingTouchdowns40Plus": 0.16461524, - "receivingTouchdowns50Plus": 0.107576059, + "receivingTouchdowns40Plus": 0.151817878, + "receivingTouchdowns50Plus": 0.004695398, "receivingYards": 332.4718057, + "receivingYardsPer10Yards": 33, + "receivingYardsPer20Yards": 16, + "receivingYardsPer25Yards": 13, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 66, "receivingYardsPerReception": 12.23347706, - "turnovers": 0.161702932, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.161702932, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35061,8 +43596,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 78, "receivingYardsAfterCatch": 21, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 9.75, - "turnovers": 2, + "receptionsPer5Receptions": 1, + "teamLoss": 2, + "teamWin": 2, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -35102,11 +43645,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.515882173, "receivingTargets": 5.3245346, "receivingTouchdowns": 0.331868869, - "receivingTouchdowns40Plus": 0.083132146, - "receivingTouchdowns50Plus": 0.054326857, + "receivingTouchdowns40Plus": 0.01895858, + "receivingTouchdowns50Plus": 0.000586348, "receivingYards": 35.72213782, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.16022041, - "turnovers": 0.023774646, + "totalTurnovers": 0.023774646, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35115,7 +43662,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 139, "receivingYardsAfterCatch": 74, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 8.17647059, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 12, "usesPoints": false, }, }, @@ -35155,14 +43710,32 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 34, "passingCompletionPercentage": 0.55882353, "passingCompletions": 19, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 15, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingInterceptions": 2, "passingTouchdowns": 1, "passingYards": 161, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 16, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 32, "rushingAttempts": 19, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 90, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 16, "rushingYardsPerAttempt": 4.73684211, - "turnovers": 2, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 1, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -35234,11 +43807,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 34.73089071, "receivingTargets": 58.95507146, "receivingTouchdowns": 2.479077745, - "receivingTouchdowns40Plus": 0.216947496, - "receivingTouchdowns50Plus": 0.141775189, + "receivingTouchdowns40Plus": 0.362858423, + "receivingTouchdowns50Plus": 0.011222425, "receivingYards": 488.0622521, + "receivingYardsPer10Yards": 48, + "receivingYardsPer20Yards": 24, + "receivingYardsPer25Yards": 19, + "receivingYardsPer50Yards": 9, + "receivingYardsPer5Yards": 97, "receivingYardsPerReception": 14.05268457, - "turnovers": 0.249813613, + "receptionsPer10Receptions": 3, + "receptionsPer5Receptions": 6, + "totalTurnovers": 0.249813613, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35246,7 +43826,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 15, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5, + "teamLoss": 5, + "teamWin": 2, "usesPoints": false, }, }, @@ -35288,11 +43872,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.28488805, "receivingTargets": 24.64818607, "receivingTouchdowns": 0.81163852, - "receivingTouchdowns40Plus": 0.077231424, - "receivingTouchdowns50Plus": 0.050470736, + "receivingTouchdowns40Plus": 0.063992572, + "receivingTouchdowns50Plus": 0.001979152, "receivingYards": 170.7471559, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 11.17097851, - "turnovers": 0.09094425, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.09094425, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35336,11 +43927,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 54, "receivingYardsAfterCatch": 61, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.8, "rushingAttempts": 15, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 55, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 3.66666667, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -35414,11 +44017,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 22.4073161, "receivingTargets": 33.76273362, "receivingTouchdowns": 2.981700073, - "receivingTouchdowns40Plus": 0.109277839, - "receivingTouchdowns50Plus": 0.071413068, + "receivingTouchdowns40Plus": 0.093257036, + "receivingTouchdowns50Plus": 0.002884238, "receivingYards": 241.2275135, + "receivingYardsPer10Yards": 24, + "receivingYardsPer20Yards": 12, + "receivingYardsPer25Yards": 9, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 48, "receivingYardsPerReception": 10.76556926, - "turnovers": 0.151519868, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.151519868, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35427,7 +44037,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 130, "receivingYardsAfterCatch": 42, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 13, + "teamLoss": 1, + "teamPointsScored": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -35467,18 +44085,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.712791657, "receivingTargets": 12.92084074, "receivingTouchdowns": 0.4334733, - "receivingTouchdowns40Plus": 0.033992273, - "receivingTouchdowns50Plus": 0.022213951, + "receivingTouchdowns40Plus": 0.031268851, + "receivingTouchdowns50Plus": 0.000967078, "receivingYards": 64.8005594, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 6.671671924, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.02628916, "rushingAttempts": 20.04181259, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.015571861, + "rushingGame200PlusYards": 0.000531408, "rushingTouchdowns": 0.709591674, "rushingTouchdowns40Plus": 0.037158422, "rushingTouchdowns50Plus": 0.026010895, "rushingYards": 78.74346308, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 3.928959157, - "turnovers": 0.113378566, + "totalTurnovers": 0.113378566, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35492,8 +44125,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYardsAfterCatch": 7, "receivingYardsPerReception": -0.5, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 28, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 3.5, + "teamLoss": 3, + "teamWin": 5, "usesPoints": false, }, }, @@ -35570,27 +44210,46 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.18752678, "receivingTargets": 5.528597412, "receivingTouchdowns": 0.157035389, - "receivingTouchdowns40Plus": 0.040194173, - "receivingTouchdowns50Plus": 0.026266892, + "receivingTouchdowns40Plus": 0.01668108, + "receivingTouchdowns50Plus": 0.00051591, "receivingYards": 30.82885038, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.362066442, "rushing2PtConversions": 0.049780592, "rushingAttempts": 23.58056844, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 4, + "rushingGame100To199Yards": 0.024483394, + "rushingGame200PlusYards": 0.000835524, "rushingTouchdowns": 0.715457168, "rushingTouchdowns40Plus": 0.043801943, "rushingTouchdowns50Plus": 0.03066136, "rushingYards": 98.5465355, + "rushingYardsPer10Yards": 9, + "rushingYardsPer20Yards": 4, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 19, "rushingYardsPerAttempt": 4.179141641, - "turnovers": 0.108200958, + "totalTurnovers": 0.108200958, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, "rushingAttempts": 12, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 42, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 3.5, + "teamLoss": 2, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -35633,11 +44292,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 47, "receivingYardsAfterCatch": 46, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11.75, "rushingAttempts": 12, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 24, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 2, - "turnovers": 1, + "teamLoss": 1, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -35677,32 +44345,52 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.606732766, "receivingTargets": 7.491938811, "receivingTouchdowns": 0.18119887, - "receivingTouchdowns40Plus": 0.036174644, - "receivingTouchdowns50Plus": 0.02364013, + "receivingTouchdowns40Plus": 0.021024351, + "receivingTouchdowns50Plus": 0.000650238, "receivingYards": 40.32841055, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 7.192854062, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.041806748, "rushingAttempts": 28.78364148, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.041961408, + "rushingGame200PlusYards": 0.001431982, "rushingTouchdowns": 0.857944838, "rushingTouchdowns40Plus": 0.053667835, "rushingTouchdowns50Plus": 0.037567485, "rushingYards": 124.7173148, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 4.332923436, - "turnovers": 0.10832825, + "totalTurnovers": 0.10832825, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, + "defensiveStuffs": 0.5, "defensiveTotalTackles": 1, "kickoffReturnYards": 69, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 7, "receivingYardsAfterCatch": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, "rushingAttempts": 11, "rushingYards": 38, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 3.45454545, + "teamLoss": 9, + "teamWin": 4, "usesPoints": false, }, }, @@ -35778,18 +44466,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.10487669, "receivingTargets": 22.40883524, "receivingTouchdowns": 1.195827899, - "receivingTouchdowns40Plus": 0.158179414, - "receivingTouchdowns50Plus": 0.103370247, + "receivingTouchdowns40Plus": 0.065291281, + "receivingTouchdowns50Plus": 0.002019318, "receivingYards": 172.2567902, + "receivingYardsPer10Yards": 17, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 13.14448005, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.008192284, "rushingAttempts": 4.159308333, + "rushingGame100To199Yards": 0.001175315, + "rushingGame200PlusYards": 0.0000401, "rushingTouchdowns": 0.15336555, "rushingTouchdowns40Plus": 0.007645109, "rushingTouchdowns50Plus": 0.005351576, "rushingYards": 22.75149617, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.470019136, - "turnovers": 0.185040256, + "totalTurnovers": 0.185040256, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35802,10 +44502,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 104, "receivingYardsAfterCatch": 28, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 13, "rushingAttempts": 4, "rushingYards": 25, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.25, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 13, "usesPoints": false, }, }, @@ -35845,11 +44554,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 23.17148006, "receivingTargets": 35.26150722, "receivingTouchdowns": 1.625384175, - "receivingTouchdowns40Plus": 0.158808301, - "receivingTouchdowns50Plus": 0.103781225, + "receivingTouchdowns40Plus": 0.107187119, + "receivingTouchdowns50Plus": 0.003315066, "receivingYards": 271.1884484, + "receivingYardsPer10Yards": 27, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 54, "receivingYardsPerReception": 11.70354451, - "turnovers": 0.246057004, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.246057004, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35857,7 +44573,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 135, "receivingYardsAfterCatch": 75, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 15, + "teamLoss": 8, + "teamWin": 9, "usesPoints": false, }, }, @@ -35897,11 +44619,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.069773445, "receivingTargets": 5.864192163, "receivingTouchdowns": 0.249796737, - "receivingTouchdowns40Plus": 0.072637072, - "receivingTouchdowns50Plus": 0.047468327, + "receivingTouchdowns40Plus": 0.019998597, + "receivingTouchdowns50Plus": 0.000618513, "receivingYards": 37.63653604, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.247820929, - "turnovers": 0.027520098, + "totalTurnovers": 0.027520098, "usesPoints": false, }, "rawStats": PlayerStats { @@ -35909,7 +44635,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 23, "receivingYards": 132, "receivingYardsAfterCatch": 102, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 6.94736842, + "receptionsPer5Receptions": 1, + "teamLoss": 8, + "teamWin": 9, "usesPoints": false, }, }, @@ -35984,18 +44717,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.67686868, "receivingTargets": 4.819323534, "receivingTouchdowns": 0.135899018, - "receivingTouchdowns40Plus": 0.035950111, - "receivingTouchdowns50Plus": 0.023493397, + "receivingTouchdowns40Plus": 0.014115884, + "receivingTouchdowns50Plus": 0.000436574, "receivingYards": 25.5440108, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.947218685, "rushing2PtConversions": 0.009570476, "rushingAttempts": 8.538758257, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.003021398, + "rushingGame200PlusYards": 0.000103109, "rushingTouchdowns": 0.244972922, "rushingTouchdowns40Plus": 0.015733168, "rushingTouchdowns50Plus": 0.011013217, "rushingYards": 35.34482869, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 7, "rushingYardsPerAttempt": 4.139340596, - "turnovers": 0.049104145, + "totalTurnovers": 0.049104145, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36004,8 +44748,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 2, "kickoffReturnYards": 723, "rushingAttempts": 8, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 12, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.5, + "teamLoss": 7, + "teamWin": 6, "usesPoints": false, }, }, @@ -36045,24 +44793,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.457205257, "receivingTargets": 4.482971497, "receivingTouchdowns": 0.163676229, - "receivingTouchdowns40Plus": 0.036624016, - "receivingTouchdowns50Plus": 0.023933794, + "receivingTouchdowns40Plus": 0.013437074, + "receivingTouchdowns50Plus": 0.00041558, "receivingYards": 24.17996975, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 6.994079887, "rushing2PtConversions": 0.028174611, "rushingAttempts": 17.80303216, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.015119578, + "rushingGame200PlusYards": 0.000515973, "rushingTouchdowns": 0.623779289, "rushingTouchdowns40Plus": 0.032985696, "rushingTouchdowns50Plus": 0.023089987, "rushingYards": 75.48462643, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.239987086, - "turnovers": 0.083703728, + "totalTurnovers": 0.083703728, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 2, "rushingYards": 19, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 9.5, + "teamWin": 3, "usesPoints": false, }, }, @@ -36100,20 +44863,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 34.94753219, "passingCompletionPercentage": 0.630087774, "passingCompletions": 22.02001277, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.92751942, "passingInterceptions": 0.857759965, "passingTouchdowns": 1.894478222, "passingTouchdowns40Plus": 0.192084051, "passingTouchdowns50Plus": 0.125526927, "passingYards": 237.9479941, + "passingYards300To399": 0.18536283, + "passingYards400Plus": 0.025037658, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 47, "rushing2PtConversions": 0.006397932, "rushingAttempts": 3.174503252, + "rushingGame100To199Yards": 0.004867269, + "rushingGame200PlusYards": 0.000166101, "rushingTouchdowns": 0.132983958, "rushingTouchdowns40Plus": 0.005992673, "rushingTouchdowns50Plus": 0.004194871, "rushingYards": 10.6180516, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.344791532, - "turnovers": 1.079428865, + "totalTurnovers": 1.079428865, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36121,9 +44898,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 1, "passingCompletions": 3, "passingYards": 22, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, "rushingAttempts": 3, "rushingYards": -1, "rushingYardsPerAttempt": -0.33333333, + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -36236,11 +45018,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 21.71041982, "receivingTargets": 34.46908991, "receivingTouchdowns": 1.258128549, - "receivingTouchdowns40Plus": 0.164080015, - "receivingTouchdowns50Plus": 0.10722629, + "receivingTouchdowns40Plus": 0.104861721, + "receivingTouchdowns50Plus": 0.003243146, "receivingYards": 267.0566523, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 13, + "receivingYardsPer25Yards": 10, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 53, "receivingYardsPerReception": 12.30085159, - "turnovers": 0.156159497, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.156159497, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36254,8 +45043,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 296, "receivingYardsAfterCatch": 132, + "receivingYardsPer10Yards": 25, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 55, "receivingYardsPerReception": 13.45454545, - "turnovers": 1, + "teamLoss": 10, + "teamPointsScored": 12, + "teamWin": 7, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -36296,11 +45093,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.61341114, "receivingTargets": 18.75149486, "receivingTouchdowns": 1.381141298, - "receivingTouchdowns40Plus": 0.094387058, - "receivingTouchdowns50Plus": 0.061681943, + "receivingTouchdowns40Plus": 0.051738375, + "receivingTouchdowns50Plus": 0.001600156, "receivingYards": 127.6319306, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 12.02553344, - "turnovers": 0.064310645, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.064310645, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36312,8 +45116,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 150, "receivingYardsAfterCatch": 86, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 10, "rushingAttempts": 1, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 14, "usesPoints": false, }, }, @@ -36354,11 +45166,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.519143024, "receivingTargets": 15.95094488, "receivingTouchdowns": 0.803682134, - "receivingTouchdowns40Plus": 0.128908974, - "receivingTouchdowns50Plus": 0.084242014, + "receivingTouchdowns40Plus": 0.04844475, + "receivingTouchdowns50Plus": 0.001498291, "receivingYards": 116.6818161, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 12.25759669, - "turnovers": 0.068469638, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.068469638, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36369,13 +45187,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 14, "receivingTouchdowns": 2, "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 143, "receivingYardsAfterCatch": 31, + "receivingYardsPer100Yards": 1, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 28.6, "rushingAttempts": 1, "rushingYards": 15, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 15, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 6, "usesPoints": false, }, }, @@ -36416,11 +45244,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.433179734, "receivingTargets": 2.701734498, "receivingTouchdowns": 0.122689014, - "receivingTouchdowns40Plus": 0.117571033, - "receivingTouchdowns50Plus": 0.07683267, + "receivingTouchdowns40Plus": 0.011100347, + "receivingTouchdowns50Plus": 0.00034331, "receivingYards": 19.60819207, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 13.68160016, - "turnovers": 0.010308627, + "totalTurnovers": 0.010308627, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36428,7 +45258,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 25, "receivingYards": 186, "receivingYardsAfterCatch": 75, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 35, "receivingYardsPerReception": 16.90909091, + "teamLoss": 7, + "teamWin": 3, "usesPoints": false, }, }, @@ -36466,6 +45303,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedFieldGoalsFrom40To49": 1, "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "fieldGoalAttemptedYards": 196, + "fieldGoalAttemptedYardsPer10Yards": 19, + "fieldGoalAttemptedYardsPer20Yards": 9, + "fieldGoalAttemptedYardsPer25Yards": 6, + "fieldGoalAttemptedYardsPer50Yards": 3, + "fieldGoalAttemptedYardsPer5Yards": 38, + "fieldGoalMadeYards": 119, + "fieldGoalMadeYardsPer10Yards": 11, + "fieldGoalMadeYardsPer20Yards": 5, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 23, + "fieldGoalMissedYards": 77, + "fieldGoalMissedYardsPer10Yards": 7, + "fieldGoalMissedYardsPer20Yards": 3, + "fieldGoalMissedYardsPer25Yards": 2, + "fieldGoalMissedYardsPer5Yards": 14, "madeExtraPoints": 5, "madeFieldGoals": 5, "madeFieldGoalsFromUnder40": 5, @@ -36473,6 +45327,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "missedFieldGoals": 2, "missedFieldGoalsFrom40To49": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 3, + "teamPointsScored": 20, + "teamWin": 1, "usesPoints": false, }, }, @@ -36513,11 +45370,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.854791401, "receivingTargets": 10.7191039, "receivingTouchdowns": 0.226220699, - "receivingTouchdowns40Plus": 0.098621247, - "receivingTouchdowns50Plus": 0.064448985, + "receivingTouchdowns40Plus": 0.034450469, + "receivingTouchdowns50Plus": 0.001065478, "receivingYards": 73.41509014, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.71004001, - "turnovers": 0.076773664, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.076773664, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36526,11 +45389,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13, "receivingTargets": 23, "receivingTouchdowns": 2, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 1, "receivingYards": 268, "receivingYardsAfterCatch": 105, + "receivingYardsPer10Yards": 23, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 51, "receivingYardsPerReception": 20.61538462, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 6, "usesPoints": false, }, }, @@ -36605,11 +45474,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.60412288, "receivingTargets": 26.79191144, "receivingTouchdowns": 1.391839561, - "receivingTouchdowns40Plus": 0.126946343, - "receivingTouchdowns50Plus": 0.082959435, + "receivingTouchdowns40Plus": 0.072990959, + "receivingTouchdowns50Plus": 0.002257452, "receivingYards": 195.3281638, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 10.49918693, - "turnovers": 0.125802404, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.125802404, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36619,7 +45495,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 108, "receivingYardsAfterCatch": 54, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 7.71428571, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -36662,18 +45545,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.23133498, "receivingTargets": 30.65164228, "receivingTouchdowns": 1.258508706, - "receivingTouchdowns40Plus": 0.117812733, - "receivingTouchdowns50Plus": 0.076990621, + "receivingTouchdowns40Plus": 0.081615884, + "receivingTouchdowns50Plus": 0.002524203, "receivingYards": 217.7822917, + "receivingYardsPer10Yards": 21, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 11.9454934, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, "rushing2PtConversions": 0.006003051, "rushingAttempts": 4.408028726, + "rushingGame100To199Yards": 0.001698604, + "rushingGame200PlusYards": 0.000058, "rushingTouchdowns": 0.15383664, "rushingTouchdowns40Plus": 0.008103359, "rushingTouchdowns50Plus": 0.005672351, "rushingYards": 27.05831651, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.138416557, - "turnovers": 0.157179412, + "totalTurnovers": 0.157179412, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36686,12 +45582,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 51, "receivingYardsAfterCatch": 27, + "receivingYardsPer10Yards": 3, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.75, "rushingAttempts": 4, "rushingTouchdowns": 1, "rushingYards": 57, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 14.25, - "turnovers": 1, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 5, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -36731,18 +45636,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.453722265, "receivingTargets": 5.87689409, "receivingTouchdowns": 0.264999451, - "receivingTouchdowns40Plus": 0.041323973, - "receivingTouchdowns50Plus": 0.027005216, + "receivingTouchdowns40Plus": 0.017456749, + "receivingTouchdowns50Plus": 0.000539899, "receivingYards": 32.19554322, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.228906811, "rushing2PtConversions": 0.007919409, "rushingAttempts": 4.034084048, + "rushingGame100To199Yards": 0.000625289, + "rushingGame200PlusYards": 0.0000213, "rushingTouchdowns": 0.154144683, "rushingTouchdowns40Plus": 0.007414446, "rushingTouchdowns50Plus": 0.005190112, "rushingYards": 16.99353503, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.212489088, - "turnovers": 0.046266267, + "totalTurnovers": 0.046266267, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36754,11 +45667,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 105, "receivingYardsAfterCatch": 93, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 7, "rushingAttempts": 6, "rushingTouchdowns": 1, "rushingYards": 8, "rushingYardsPerAttempt": 1.33333333, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -36799,11 +45719,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.477502471, "receivingTargets": 9.244409757, "receivingTouchdowns": 0.438234978, - "receivingTouchdowns40Plus": 0.136821824, - "receivingTouchdowns50Plus": 0.089413062, + "receivingTouchdowns40Plus": 0.032635413, + "receivingTouchdowns50Plus": 0.001009343, "receivingYards": 69.66727061, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 12.71880222, - "turnovers": 0.031519023, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.031519023, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36813,10 +45739,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 40, "receivingYards": 185, "receivingYardsAfterCatch": 33, + "receivingYardsPer10Yards": 14, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 8.04347826, + "receptionsPer5Receptions": 1, "rushingAttempts": 1, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 8, + "teamLoss": 8, + "teamWin": 7, "usesPoints": false, }, }, @@ -36856,23 +45791,40 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.999749089, "receivingTargets": 11.66152643, "receivingTouchdowns": 0.386132828, - "receivingTouchdowns40Plus": 0.041899433, - "receivingTouchdowns50Plus": 0.027381279, + "receivingTouchdowns40Plus": 0.031258228, + "receivingTouchdowns50Plus": 0.000966749, "receivingYards": 65.8556286, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 7.317496071, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.061456977, "rushingAttempts": 29.02116993, + "rushingAttemptsPer10Attempts": 2, + "rushingAttemptsPer5Attempts": 5, + "rushingGame100To199Yards": 0.041808915, + "rushingGame200PlusYards": 0.001426778, "rushingTouchdowns": 0.955187785, "rushingTouchdowns40Plus": 0.05411893, "rushingTouchdowns50Plus": 0.037883251, "rushingYards": 124.4015275, + "rushingYardsPer10Yards": 12, + "rushingYardsPer20Yards": 6, + "rushingYardsPer25Yards": 4, + "rushingYardsPer50Yards": 2, + "rushingYardsPer5Yards": 24, "rushingYardsPerAttempt": 4.286578652, - "turnovers": 0.152020993, + "totalTurnovers": 0.152020993, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 1, + "teamWin": 4, "usesPoints": false, }, }, @@ -36910,20 +45862,39 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 69.24830964, "passingCompletionPercentage": 0.620153676, "passingCompletions": 42.94459377, + "passingCompletionsPer10Completions": 4, + "passingCompletionsPer5Completions": 8, "passingIncompletions": 26.30371586, "passingInterceptions": 1.822826538, "passingTouchdowns": 2.416740859, "passingTouchdowns40Plus": 0.367510697, "passingTouchdowns50Plus": 0.24016824, "passingYards": 464.4919713, + "passingYards300To399": 0.340271833, + "passingYards400Plus": 0.045961803, + "passingYardsPer100Yards": 4, + "passingYardsPer10Yards": 46, + "passingYardsPer20Yards": 23, + "passingYardsPer25Yards": 18, + "passingYardsPer50Yards": 9, + "passingYardsPer5Yards": 92, "rushing2PtConversions": 0.030417003, "rushingAttempts": 11.85549732, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.080923778, + "rushingGame200PlusYards": 0.002761618, "rushingTouchdowns": 0.598330523, "rushingTouchdowns40Plus": 0.022933933, "rushingTouchdowns50Plus": 0.016053753, "rushingYards": 60.90905509, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 5.137621262, - "turnovers": 2.373433068, + "totalTurnovers": 2.373433068, "usesPoints": false, }, "rawStats": PlayerStats { @@ -36933,14 +45904,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 8, "passingCompletionPercentage": 0.75, "passingCompletions": 6, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 2, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 58, + "passingYardsPer10Yards": 5, + "passingYardsPer20Yards": 2, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 11, "rushingAttempts": 5, "rushingYards": 70, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 14, - "turnovers": 2, + "teamLoss": 1, + "teamPointsScored": 6, + "teamWin": 2, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -36978,14 +45961,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 25, "passingCompletionPercentage": 0.56, "passingCompletions": 14, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 11, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 139, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 13, + "passingYardsPer20Yards": 6, + "passingYardsPer25Yards": 5, + "passingYardsPer50Yards": 2, + "passingYardsPer5Yards": 27, "rushingAttempts": 2, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.5, - "turnovers": 1, + "teamLoss": 3, + "teamPointsScored": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -37026,14 +46021,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingIncompletions": 6, "passingTouchdowns": 1, "passingYards": 108, + "passingYardsPer10Yards": 8, + "passingYardsPer20Yards": 3, + "passingYardsPer25Yards": 2, + "passingYardsPer5Yards": 19, "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 4, "receivingYardsAfterCatch": 7, "receivingYardsPerReception": 4, "rushingAttempts": 20, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 75, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 13, "rushingYardsPerAttempt": 3.75, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -37075,11 +46082,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.99888175, "receivingTargets": 14.45638817, "receivingTouchdowns": 0.722992509, - "receivingTouchdowns40Plus": 0.123916125, - "receivingTouchdowns50Plus": 0.080979188, + "receivingTouchdowns40Plus": 0.044905797, + "receivingTouchdowns50Plus": 0.001388839, "receivingYards": 105.0058739, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 11.66876916, - "turnovers": 0.053542856, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.053542856, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37089,10 +46102,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 10, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 10, "rushingAttempts": 1, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 9, + "teamLoss": 2, + "teamWin": 11, "usesPoints": false, }, }, @@ -37170,7 +46188,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 46, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11.5, + "teamLoss": 7, + "teamWin": 1, "usesPoints": false, }, }, @@ -37211,11 +46235,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.898326202, "receivingTargets": 11.62986724, "receivingTouchdowns": 0.449832754, - "receivingTouchdowns40Plus": 0.13384932, - "receivingTouchdowns50Plus": 0.08747053, + "receivingTouchdowns40Plus": 0.038522482, + "receivingTouchdowns50Plus": 0.001191417, "receivingYards": 85.68379397, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 12.42095422, - "turnovers": 0.077261253, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.077261253, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37226,14 +46256,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19, "receivingTargets": 41, "receivingTouchdowns": 3, - "receivingTouchdowns40Plus": 2, - "receivingTouchdowns50Plus": 1, "receivingYards": 245, "receivingYardsAfterCatch": 63, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 43, "receivingYardsPerReception": 12.89473684, "rushingAttempts": 2, "rushingYards": 37, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 18.5, + "teamLoss": 14, + "teamPointsScored": 18, + "teamWin": 3, "usesPoints": false, }, }, @@ -37277,7 +46317,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 21, "receivingYards": 89, "receivingYardsAfterCatch": 25, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 8.9, + "receptionsPer5Receptions": 1, + "teamLoss": 4, + "teamWin": 6, "usesPoints": false, }, }, @@ -37317,11 +46364,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.371386439, "receivingTargets": 5.864192163, "receivingTouchdowns": 0.174662393, - "receivingTouchdowns40Plus": 0.036684966, - "receivingTouchdowns50Plus": 0.023973625, + "receivingTouchdowns40Plus": 0.016840789, + "receivingTouchdowns50Plus": 0.000520849, "receivingYards": 30.90916891, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.070793064, - "turnovers": 0.026037907, + "totalTurnovers": 0.026037907, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37333,11 +46384,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 11, "receivingYardsAfterCatch": 4, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.2, "rushingAttempts": 9, "rushingTouchdowns": 1, "rushingYards": 21, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.33333333, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -37379,11 +46435,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.013263574, "receivingTargets": 11.03239078, "receivingTouchdowns": 0.751403142, - "receivingTouchdowns40Plus": 0.149767067, - "receivingTouchdowns50Plus": 0.097872778, + "receivingTouchdowns40Plus": 0.037872552, + "receivingTouchdowns50Plus": 0.001171316, "receivingYards": 83.55562476, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.91394333, - "turnovers": 0.041728536, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.041728536, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37393,7 +46455,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 82, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 16.4, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -37430,6 +46499,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -37469,11 +46540,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.521222649, "receivingTargets": 2.230161556, "receivingTouchdowns": 0.156178281, - "receivingTouchdowns40Plus": 0.020348386, - "receivingTouchdowns50Plus": 0.01329767, + "receivingTouchdowns40Plus": 0.007128918, + "receivingTouchdowns50Plus": 0.000220482, "receivingYards": 14.83894415, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 9.754616888, - "turnovers": 0.010286616, + "totalTurnovers": 0.010286616, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37487,7 +46560,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 148, "receivingYardsAfterCatch": 75, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 28, "receivingYardsPerReception": 9.86666667, + "receptionsPer5Receptions": 1, + "teamLoss": 12, + "teamPointsScored": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -37526,20 +46607,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.014819877, "rushing2PtConversions": 0.007631679, "rushingAttempts": 3.927975922, + "rushingGame100To199Yards": 0.000621067, + "rushingGame200PlusYards": 0.0000212, "rushingTouchdowns": 0.142943984, "rushingTouchdowns40Plus": 0.00721996, "rushingTouchdowns50Plus": 0.005053972, "rushingYards": 16.40133235, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.175517537, - "turnovers": 0.014819877, + "totalTurnovers": 0.014819877, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveTotalTackles": 2, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 20, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 3.33333333, + "teamWin": 3, "usesPoints": false, }, }, @@ -37579,11 +46669,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 18.46119022, "receivingTargets": 28.72424159, "receivingTouchdowns": 1.015533382, - "receivingTouchdowns40Plus": 0.080215255, - "receivingTouchdowns50Plus": 0.052420669, + "receivingTouchdowns40Plus": 0.070526915, + "receivingTouchdowns50Plus": 0.002181245, "receivingYards": 188.4005619, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 10.20522293, - "turnovers": 0.122842632, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.122842632, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37593,7 +46690,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 30, "receivingYards": 197, "receivingYardsAfterCatch": 182, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 33, "receivingYardsPerReception": 9.38095238, + "teamLoss": 10, + "teamWin": 7, "usesPoints": false, }, }, @@ -37636,11 +46740,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.515454018, "receivingTargets": 10.96540491, "receivingTouchdowns": 0.645676514, - "receivingTouchdowns40Plus": 0.102186133, - "receivingTouchdowns50Plus": 0.066778638, + "receivingTouchdowns40Plus": 0.035266694, + "receivingTouchdowns50Plus": 0.001090722, "receivingYards": 76.02561131, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 11.66850554, - "turnovers": 0.055509721, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.055509721, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37652,11 +46762,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 62, "receivingYardsAfterCatch": 43, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 10.33333333, "rushingAttempts": 4, "rushingYards": 15, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 3.75, - "turnovers": 1, + "teamLoss": 4, + "teamWin": 12, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -37699,7 +46817,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 116, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 16.57142857, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -37740,11 +46865,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 25.97232083, "receivingTargets": 40.78283566, "receivingTouchdowns": 1.683807606, - "receivingTouchdowns40Plus": 0.149478894, - "receivingTouchdowns50Plus": 0.097684457, + "receivingTouchdowns40Plus": 0.132029326, + "receivingTouchdowns50Plus": 0.004083381, "receivingYards": 308.9064907, + "receivingYardsPer10Yards": 30, + "receivingYardsPer20Yards": 15, + "receivingYardsPer25Yards": 12, + "receivingYardsPer50Yards": 6, + "receivingYardsPer5Yards": 61, "receivingYardsPerReception": 11.89368069, - "turnovers": 0.186814653, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.186814653, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37758,8 +46890,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 17, "receivingYards": 62, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 7.75, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -37799,11 +46936,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.411748829, "receivingTargets": 10.65067877, "receivingTouchdowns": 0.816560231, - "receivingTouchdowns40Plus": 0.088952446, - "receivingTouchdowns50Plus": 0.058130423, + "receivingTouchdowns40Plus": 0.033508956, + "receivingTouchdowns50Plus": 0.001036359, "receivingYards": 71.50925495, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 9.648094748, - "turnovers": 0.050118774, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.050118774, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37818,8 +46961,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 108, "receivingYardsAfterCatch": 40, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 12, - "turnovers": 1, + "teamLoss": 3, + "teamPointsScored": 12, + "teamWin": 10, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -37859,11 +47010,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11.58624989, "receivingTargets": 17.22925329, "receivingTouchdowns": 0.70124286, - "receivingTouchdowns40Plus": 0.090296281, - "receivingTouchdowns50Plus": 0.05900862, + "receivingTouchdowns40Plus": 0.048333728, + "receivingTouchdowns50Plus": 0.001494858, "receivingYards": 116.2754563, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 23, "receivingYardsPerReception": 10.03564203, - "turnovers": 0.074625942, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.074625942, "usesPoints": false, }, "rawStats": PlayerStats { @@ -37875,10 +47033,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 151, "receivingYardsAfterCatch": 62, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 12.58333333, "rushingAttempts": 2, "rushingYards": 27, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 13.5, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -37918,22 +47086,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 19.21281539, "receivingTargets": 28.01589316, "receivingTouchdowns": 2.024140441, - "receivingTouchdowns40Plus": 0.133981796, - "receivingTouchdowns50Plus": 0.087557104, + "receivingTouchdowns40Plus": 0.077184863, + "receivingTouchdowns50Plus": 0.002387161, "receivingYards": 206.8268382, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 10.76504583, - "turnovers": 0.129918426, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.129918426, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSafeties": 1, "defensiveSoloTackles": 1, + "defensiveStuffs": 1, "defensiveTotalTackles": 1, "receivingReceptions": 13, "receivingTargets": 15, "receivingYards": 114, "receivingYardsAfterCatch": 63, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 8.76923077, + "receptionsPer5Receptions": 1, + "teamLoss": 9, + "teamWin": 8, "usesPoints": false, }, }, @@ -38041,11 +47224,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.204691159, "receivingTargets": 11.34383672, "receivingTouchdowns": 0.797337283, - "receivingTouchdowns40Plus": 0.108681271, - "receivingTouchdowns50Plus": 0.071023211, + "receivingTouchdowns40Plus": 0.036697942, + "receivingTouchdowns50Plus": 0.001134988, "receivingYards": 79.76836396, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 9.722287216, - "turnovers": 0.066006339, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.066006339, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38055,7 +47244,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 66, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11, + "teamLoss": 9, + "teamPointsScored": 14, + "teamWin": 8, "usesPoints": false, }, }, @@ -38096,11 +47292,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.571677776, "receivingTargets": 2.6622673, "receivingTouchdowns": 0.129213462, - "receivingTouchdowns40Plus": 0.107706416, - "receivingTouchdowns50Plus": 0.070386143, + "receivingTouchdowns40Plus": 0.010751861, + "receivingTouchdowns50Plus": 0.000332532, "receivingYards": 18.94112208, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.05153014, - "turnovers": 0.011304821, + "totalTurnovers": 0.011304821, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38111,7 +47309,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 38, "receivingYardsAfterCatch": 24, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 19, + "teamLoss": 4, + "teamPointsScored": 2, + "teamWin": 6, "usesPoints": false, }, }, @@ -38156,7 +47361,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 141, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 14.1, + "teamLoss": 9, + "teamPointsScored": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -38228,11 +47441,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.163491331, "receivingTargets": 10.84283687, "receivingTouchdowns": 0.573861235, - "receivingTouchdowns40Plus": 0.086016972, - "receivingTouchdowns50Plus": 0.056212091, + "receivingTouchdowns40Plus": 0.033954903, + "receivingTouchdowns50Plus": 0.001050152, "receivingYards": 72.29622464, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.0923169, - "turnovers": 0.048440039, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.048440039, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38241,7 +47460,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 322, "receivingYardsAfterCatch": 150, + "receivingYardsPer10Yards": 26, + "receivingYardsPer20Yards": 11, + "receivingYardsPer25Yards": 7, + "receivingYardsPer5Yards": 60, "receivingYardsPerReception": 12.88, + "receptionsPer5Receptions": 1, + "teamLoss": 8, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -38281,32 +47508,49 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.805791331, "receivingTargets": 11.55553751, "receivingTouchdowns": 0.372672988, - "receivingTouchdowns40Plus": 0.043442003, - "receivingTouchdowns50Plus": 0.028389349, + "receivingTouchdowns40Plus": 0.031191781, + "receivingTouchdowns50Plus": 0.000964694, "receivingYards": 64.54634337, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 7.32998784, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.004633791, "rushingAttempts": 2.079654167, + "rushingGame100To199Yards": 0.000134078, + "rushingGame200PlusYards": 0.00000458, "rushingTouchdowns": 0.086747971, "rushingTouchdowns40Plus": 0.003818222, "rushingTouchdowns50Plus": 0.002672755, "rushingYards": 8.748083603, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4.206508824, - "turnovers": 0.062628608, + "totalTurnovers": 0.062628608, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 8, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 8, "receivingReceptions": 10, "receivingTargets": 12, "receivingYards": 86, "receivingYardsAfterCatch": 56, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 8.6, "rushingAttempts": 4, "rushingTouchdowns": 2, "rushingYards": 7, "rushingYardsPerAttempt": 1.75, + "teamLoss": 4, + "teamPointsScored": 12, + "teamWin": 13, "usesPoints": false, }, }, @@ -38347,11 +47591,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.781228344, "receivingTargets": 2.59561503, "receivingTouchdowns": 0.148121409, - "receivingTouchdowns40Plus": 0.106239195, - "receivingTouchdowns50Plus": 0.069427314, + "receivingTouchdowns40Plus": 0.010463128, + "receivingTouchdowns50Plus": 0.000323602, "receivingYards": 18.38955318, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.32408519, - "turnovers": 0.011472724, + "totalTurnovers": 0.011472724, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38360,7 +47606,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 113, "receivingYardsAfterCatch": 62, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 10.27272727, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 8, "usesPoints": false, }, }, @@ -38400,11 +47653,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.92822531, "receivingTargets": 23.59434655, "receivingTouchdowns": 1.445737163, - "receivingTouchdowns40Plus": 0.098787348, - "receivingTouchdowns50Plus": 0.064557532, + "receivingTouchdowns40Plus": 0.062249813, + "receivingTouchdowns50Plus": 0.001925252, "receivingYards": 162.6337525, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 10.21041261, - "turnovers": 0.107707794, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.107707794, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38414,7 +47674,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingYards": 109, "receivingYardsAfterCatch": 33, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 15.57142857, + "teamLoss": 10, + "teamWin": 4, "usesPoints": false, }, }, @@ -38467,11 +47734,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 53, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.6, "rushingAttempts": 8, "rushingYards": 39, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 4.875, - "turnovers": 1, + "teamLoss": 7, + "teamWin": 9, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -38510,7 +47785,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 0.33333333, "passingCompletions": 3, "passingIncompletions": 6, + "passingIncompletionsPer5Incompletions": 1, "passingYards": 23, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer5Yards": 4, + "teamLoss": 1, "usesPoints": false, }, }, @@ -38550,11 +47830,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.567249519, "receivingTargets": 2.403025248, "receivingTouchdowns": 0.151452439, - "receivingTouchdowns40Plus": 0.085481328, - "receivingTouchdowns50Plus": 0.055862048, + "receivingTouchdowns40Plus": 0.009310468, + "receivingTouchdowns50Plus": 0.000287953, "receivingYards": 16.21867318, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.3484946, - "turnovers": 0.010597853, + "totalTurnovers": 0.010597853, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38566,7 +47848,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 149, "receivingYardsAfterCatch": 74, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 10.64285714, + "teamLoss": 7, + "teamPointsScored": 12, + "teamWin": 10, "usesPoints": false, }, }, @@ -38607,16 +47897,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.297965883, "receivingTargets": 12.04251261, "receivingTouchdowns": 0.770155392, - "receivingTouchdowns40Plus": 0.119263609, - "receivingTouchdowns50Plus": 0.077938769, + "receivingTouchdowns40Plus": 0.038920655, + "receivingTouchdowns50Plus": 0.001203732, "receivingYards": 86.64570443, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 10.44180052, - "turnovers": 0.053446415, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.053446415, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveSoloTackles": 6, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 7, "fumbles": 1, "kickoffReturnYards": 18, @@ -38625,11 +47922,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 103, "receivingYardsAfterCatch": 47, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 9.36363636, "rushingAttempts": 1, "rushingTouchdowns": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 5, + "teamPointsScored": 18, + "teamWin": 12, "usesPoints": false, }, }, @@ -38668,16 +47972,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 5, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 7, "kickoffReturnYards": 356, "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 30, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 15, "rushingAttempts": 6, "rushingYards": 30, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5, + "teamWin": 9, "usesPoints": false, }, }, @@ -38750,18 +48061,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.1678644, "receivingTargets": 21.63629123, "receivingTouchdowns": 1.125880637, - "receivingTouchdowns40Plus": 0.144356888, - "receivingTouchdowns50Plus": 0.094337226, + "receivingTouchdowns40Plus": 0.062250348, + "receivingTouchdowns50Plus": 0.001925269, "receivingYards": 162.6800771, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 8, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 32, "receivingYardsPerReception": 12.35432505, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.007733846, "rushingAttempts": 4.469899027, + "rushingGame100To199Yards": 0.001926671, + "rushingGame200PlusYards": 0.0000657, "rushingTouchdowns": 0.193101287, "rushingTouchdowns40Plus": 0.008217358, "rushingTouchdowns50Plus": 0.005752151, "rushingYards": 28.74390848, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.430549842, - "turnovers": 0.121124251, + "totalTurnovers": 0.121124251, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38772,10 +48096,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 207, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 38, "receivingYardsPerReception": 13.8, + "receptionsPer5Receptions": 1, "rushingAttempts": 2, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -38815,11 +48149,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.448450152, "receivingTargets": 10.19570891, "receivingTouchdowns": 0.460836798, - "receivingTouchdowns40Plus": 0.037937169, - "receivingTouchdowns50Plus": 0.02479194, + "receivingTouchdowns40Plus": 0.027205649, + "receivingTouchdowns50Plus": 0.000841412, "receivingYards": 54.37596502, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 7.300305958, - "turnovers": 0.044366257, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.044366257, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38830,10 +48170,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 74, "receivingYardsAfterCatch": 72, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 6.72727273, "rushingAttempts": 7, "rushingYards": 16, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.28571429, + "teamLoss": 7, + "teamWin": 10, "usesPoints": false, }, }, @@ -38873,18 +48219,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.010626831, "receivingTargets": 2.76440293, "receivingTouchdowns": 0.079147865, - "receivingTouchdowns40Plus": 0.04055065, - "receivingTouchdowns50Plus": 0.02649985, + "receivingTouchdowns40Plus": 0.008848288, + "receivingTouchdowns50Plus": 0.000273658, "receivingYards": 15.35892153, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.638872263, "rushing2PtConversions": 0.02254985, "rushingAttempts": 15.18851718, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, + "rushingGame100To199Yards": 0.010729737, + "rushingGame200PlusYards": 0.000366165, "rushingTouchdowns": 0.438839166, "rushingTouchdowns40Plus": 0.028100151, "rushingTouchdowns50Plus": 0.019670106, "rushingYards": 63.65328463, + "rushingYardsPer10Yards": 6, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 12, "rushingYardsPerAttempt": 4.190882091, - "turnovers": 0.033532435, + "totalTurnovers": 0.033532435, "usesPoints": false, }, "rawStats": PlayerStats { @@ -38892,11 +48249,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 8, "receivingYardsAfterCatch": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, "rushingAttempts": 12, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 64, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 5.33333333, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -38975,7 +48341,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 15, "receivingYards": 141, "receivingYardsAfterCatch": 78, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 17.625, + "teamLoss": 4, + "teamWin": 3, "usesPoints": false, }, }, @@ -39015,11 +48388,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.871246283, "receivingTargets": 2.747609889, "receivingTouchdowns": 0.184753392, - "receivingTouchdowns40Plus": 0.103178268, - "receivingTouchdowns50Plus": 0.067426998, + "receivingTouchdowns40Plus": 0.010979328, + "receivingTouchdowns50Plus": 0.000339567, "receivingYards": 19.37542827, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.35429085, - "turnovers": 0.012052521, + "totalTurnovers": 0.012052521, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39035,8 +48410,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 84, "receivingYardsAfterCatch": 33, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.5, - "turnovers": 1, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 11, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -39076,11 +48458,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 12.74293072, "receivingTargets": 17.63068227, "receivingTouchdowns": 0.955953023, - "receivingTouchdowns40Plus": 0.070362921, - "receivingTouchdowns50Plus": 0.045982169, + "receivingTouchdowns40Plus": 0.04701923, + "receivingTouchdowns50Plus": 0.001454203, "receivingYards": 111.8248883, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 8.77544505, - "turnovers": 0.068934884, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.068934884, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39093,11 +48482,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 129, "receivingYardsAfterCatch": 47, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 8.6, "rushingAttempts": 2, "rushingTouchdowns": 1, "rushingYards": 1, "rushingYardsPerAttempt": 0.5, + "teamLoss": 7, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -39135,20 +48531,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 39.30179654, "passingCompletionPercentage": 0.64613851, "passingCompletions": 25.39440426, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 5, "passingIncompletions": 13.90739228, "passingInterceptions": 0.80422427, "passingTouchdowns": 2.257073802, "passingTouchdowns40Plus": 0.268383345, "passingTouchdowns50Plus": 0.175388516, "passingYards": 284.8734604, + "passingYards300To399": 0.371502547, + "passingYards400Plus": 0.050180253, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 28, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 56, "rushing2PtConversions": 0.007485533, "rushingAttempts": 2.904860387, + "rushingGame100To199Yards": 0.003859293, + "rushingGame200PlusYards": 0.000131703, "rushingTouchdowns": 0.183988188, "rushingTouchdowns40Plus": 0.005470368, "rushingTouchdowns50Plus": 0.003829258, "rushingYards": 9.464192368, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.258054125, - "turnovers": 1.227473908, + "totalTurnovers": 1.227473908, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39158,6 +48567,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rushingAttempts": 5, "rushingYards": -5, "rushingYardsPerAttempt": -1, + "teamWin": 3, "usesPoints": false, }, }, @@ -39197,11 +48607,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.629269191, "receivingTargets": 14.26886194, "receivingTouchdowns": 0.79234677, - "receivingTouchdowns40Plus": 0.099516574, - "receivingTouchdowns50Plus": 0.065034081, + "receivingTouchdowns40Plus": 0.042806969, + "receivingTouchdowns50Plus": 0.001323927, "receivingYards": 98.29434974, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 10.20787225, - "turnovers": 0.065113804, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.065113804, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39210,7 +48626,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 140, "receivingYardsAfterCatch": 117, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 7.36842105, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 13, "usesPoints": false, }, }, @@ -39249,10 +48672,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 29, "receivingYardsAfterCatch": 44, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 4.83333333, "rushingAttempts": 13, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 58, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.46153846, + "teamLoss": 3, + "teamWin": 1, "usesPoints": false, }, }, @@ -39388,18 +48819,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.87046617, "receivingTargets": 24.61234583, "receivingTouchdowns": 1.590129596, - "receivingTouchdowns40Plus": 0.193780449, - "receivingTouchdowns50Plus": 0.126635523, + "receivingTouchdowns40Plus": 0.074746106, + "receivingTouchdowns50Plus": 0.002311735, "receivingYards": 198.5014549, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 13.34870425, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.026137981, "rushingAttempts": 8.808221711, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.006463408, + "rushingGame200PlusYards": 0.000220571, "rushingTouchdowns": 0.366835081, "rushingTouchdowns40Plus": 0.016231079, "rushingTouchdowns50Plus": 0.011361755, "rushingYards": 51.40322342, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 5.835823065, - "turnovers": 0.163612209, + "totalTurnovers": 0.163612209, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39407,7 +48853,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 64, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 32, + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -39447,11 +48900,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.780603218, "receivingTargets": 8.604281436, "receivingTouchdowns": 0.547990473, - "receivingTouchdowns40Plus": 0.085435783, - "receivingTouchdowns50Plus": 0.055832284, + "receivingTouchdowns40Plus": 0.028358566, + "receivingTouchdowns50Plus": 0.000877069, "receivingYards": 57.31594522, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 9.915218717, - "turnovers": 0.039088851, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.039088851, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39459,7 +48918,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 7, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamWin": 5, "usesPoints": false, }, }, @@ -39534,11 +48995,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.095789235, "receivingTargets": 9.766656012, "receivingTouchdowns": 0.504074297, - "receivingTouchdowns40Plus": 0.154194668, - "receivingTouchdowns50Plus": 0.100766216, + "receivingTouchdowns40Plus": 0.033412881, + "receivingTouchdowns50Plus": 0.001033388, "receivingYards": 74.74298141, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 12.26141169, - "turnovers": 0.043846014, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.043846014, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39548,7 +49015,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 15, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.5, + "teamLoss": 3, + "teamWin": 1, "usesPoints": false, }, }, @@ -39588,11 +49059,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.40342459, "receivingTargets": 5.856671546, "receivingTouchdowns": 0.242530307, - "receivingTouchdowns40Plus": 0.042342282, - "receivingTouchdowns50Plus": 0.027670681, + "receivingTouchdowns40Plus": 0.017637219, + "receivingTouchdowns50Plus": 0.000545481, "receivingYards": 32.57564775, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.397798482, - "turnovers": 0.026228741, + "totalTurnovers": 0.026228741, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39604,7 +49079,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 69, "receivingYardsAfterCatch": 54, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 8.625, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 12, "usesPoints": false, }, }, @@ -39646,11 +49127,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.329743106, "receivingTargets": 8.17721702, "receivingTouchdowns": 0.52935271, - "receivingTouchdowns40Plus": 0.140450916, - "receivingTouchdowns50Plus": 0.091784674, + "receivingTouchdowns40Plus": 0.029770321, + "receivingTouchdowns50Plus": 0.000920732, "receivingYards": 60.94157116, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 11.43424176, - "turnovers": 0.031711681, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.031711681, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39663,12 +49150,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 5, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, - "receivingTouchdowns50Plus": 1, "receivingYards": 75, "receivingYardsAfterCatch": 43, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 37.5, - "turnovers": 1, + "teamLoss": 7, + "teamPointsScored": 6, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -39708,11 +49201,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11.48599548, "receivingTargets": 17.27303918, "receivingTouchdowns": 1.362064373, - "receivingTouchdowns40Plus": 0.118972448, - "receivingTouchdowns50Plus": 0.077748495, + "receivingTouchdowns40Plus": 0.050700863, + "receivingTouchdowns50Plus": 0.001568068, "receivingYards": 124.0913862, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 10.80371191, - "turnovers": 0.07766912, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.07766912, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39720,7 +49220,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 15, "receivingYards": 132, "receivingYardsAfterCatch": 59, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 13.2, + "teamLoss": 4, + "teamWin": 7, "usesPoints": false, }, }, @@ -39763,11 +49270,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 37, "receivingYardsAfterCatch": 37, + "receivingYardsPer10Yards": 3, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.4, "rushingAttempts": 18, + "rushingAttemptsPer5Attempts": 2, "rushingTouchdowns": 1, "rushingYards": 81, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 14, "rushingYardsPerAttempt": 4.5, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -39805,20 +49321,34 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 37.27273646, "passingCompletionPercentage": 0.622682468, "passingCompletions": 23.20907954, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 14.06365692, "passingInterceptions": 1.150324178, "passingTouchdowns": 1.967930198, "passingTouchdowns40Plus": 0.201416029, "passingTouchdowns50Plus": 0.131625375, "passingYards": 244.1425922, + "passingYards300To399": 0.20392485, + "passingYards400Plus": 0.0275449, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushing2PtConversions": 0.010561843, "rushingAttempts": 3.288871296, + "rushingGame100To199Yards": 0.005109819, + "rushingGame200PlusYards": 0.000174379, "rushingTouchdowns": 0.147803017, "rushingTouchdowns40Plus": 0.006214952, "rushingTouchdowns50Plus": 0.004350466, "rushingYards": 10.87730847, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.307307429, - "turnovers": 1.456771312, + "totalTurnovers": 1.456771312, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39826,12 +49356,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 12, "passingCompletionPercentage": 0.66666667, "passingCompletions": 8, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 4, "passingTouchdowns": 1, "passingYards": 52, + "passingYardsPer10Yards": 4, + "passingYardsPer20Yards": 2, + "passingYardsPer25Yards": 2, + "passingYardsPer5Yards": 10, "rushingAttempts": 1, "rushingYards": 4, "rushingYardsPerAttempt": 4, + "teamLoss": 3, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -39873,11 +49411,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.15767116, "receivingTargets": 11.40569995, "receivingTouchdowns": 0.632468294, - "receivingTouchdowns40Plus": 0.107575151, - "receivingTouchdowns50Plus": 0.070300361, + "receivingTouchdowns40Plus": 0.036640812, + "receivingTouchdowns50Plus": 0.001133221, "receivingYards": 79.93908574, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 11.16830935, - "turnovers": 0.042587753, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.042587753, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39886,6 +49430,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYards": 3, "receivingYardsAfterCatch": 7, "receivingYardsPerReception": 3, + "teamWin": 1, "usesPoints": false, }, }, @@ -39925,23 +49470,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.786804434, "receivingTargets": 3.674833114, "receivingTouchdowns": 0.119583527, - "receivingTouchdowns40Plus": 0.037807952, - "receivingTouchdowns50Plus": 0.024707496, + "receivingTouchdowns40Plus": 0.011291606, + "receivingTouchdowns50Plus": 0.000349225, "receivingYards": 20.17951346, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.241094214, "rushing2PtConversions": 0.019823237, "rushingAttempts": 11.86772349, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.008519962, + "rushingGame200PlusYards": 0.000290754, "rushingTouchdowns": 0.427208975, "rushingTouchdowns40Plus": 0.02195148, "rushingTouchdowns50Plus": 0.015366036, "rushingYards": 50.67596928, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 4.270066566, - "turnovers": 0.058030165, + "totalTurnovers": 0.058030165, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 4, + "teamWin": 2, "usesPoints": false, }, }, @@ -39982,11 +49541,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.830280815, "receivingTargets": 5.592636382, "receivingTouchdowns": 0.399156018, - "receivingTouchdowns40Plus": 0.102159405, - "receivingTouchdowns50Plus": 0.066761171, + "receivingTouchdowns40Plus": 0.020302953, + "receivingTouchdowns50Plus": 0.000627926, "receivingYards": 38.86865343, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.14772945, - "turnovers": 0.024670477, + "totalTurnovers": 0.024670477, "usesPoints": false, }, "rawStats": PlayerStats { @@ -39994,7 +49557,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 81, "receivingYardsAfterCatch": 41, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 16.2, + "teamLoss": 3, + "teamWin": 12, "usesPoints": false, }, }, @@ -40032,21 +49601,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveBlockedKicks": 0.011664077, "defensiveForcedFumbles": 0.089160968, "defensiveFumbles": 0.057954629, + "defensiveHalfSacks": 0.29554698, "defensiveInterceptions": 0.085776049, "defensiveSacks": 0.14777349, "defensiveSoloTackles": 6.914845333, + "defensiveTacklesPer3Tackles": 3, + "defensiveTacklesPer5Tackles": 2, "defensiveTotalTackles": 11.53917202, "fumbleReturnTouchdown": 0.010218408, "interceptionReturnTouchdown": 0.002916019, + "totalReturnTouchdowns": 0.013134427, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 4, "defensiveSoloTackles": 11, + "defensiveStuffs": 0.5, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 15, "rushingAttempts": 1, "rushingYards": 3, "rushingYardsPerAttempt": 3, + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -40088,11 +49665,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.56335677, "receivingTargets": 16.63106648, "receivingTouchdowns": 0.897297011, - "receivingTouchdowns40Plus": 0.141757373, - "receivingTouchdowns50Plus": 0.092638443, + "receivingTouchdowns40Plus": 0.050602193, + "receivingTouchdowns50Plus": 0.001565016, "receivingYards": 124.6264543, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 11.79799727, - "turnovers": 0.062851397, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.062851397, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40102,10 +49686,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9, "receivingTargets": 13, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 179, "receivingYardsAfterCatch": 67, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 34, "receivingYardsPerReception": 19.88888889, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 11, "usesPoints": false, }, }, @@ -40146,10 +49737,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 8, "receivingYardsAfterCatch": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, "rushingAttempts": 10, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 0.9, + "teamWin": 1, "usesPoints": false, }, }, @@ -40185,28 +49781,47 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 36.42703828, "passingCompletionPercentage": 0.637075281, "passingCompletions": 23.20676564, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.22027264, "passingInterceptions": 1.182258127, "passingTouchdowns": 1.264277075, "passingTouchdowns40Plus": 0.192088111, "passingTouchdowns50Plus": 0.125529581, "passingYards": 237.9507221, + "passingYards300To399": 0.185370643, + "passingYards400Plus": 0.025038713, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 23, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 47, "rushing2PtConversions": 0.003579343, "rushingAttempts": 2.80159335, + "rushingGame100To199Yards": 0.001577653, + "rushingGame200PlusYards": 0.0000538, "rushingTouchdowns": 0.101346874, "rushingTouchdowns40Plus": 0.005270991, "rushingTouchdowns50Plus": 0.003689694, "rushingYards": 6.081864112, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.170858991, - "turnovers": 1.466928783, + "totalTurnovers": 1.466928783, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 6, "passingCompletionPercentage": 0.83333333, "passingCompletions": 5, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 1, "passingYards": 37, + "passingYardsPer10Yards": 3, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 7, + "teamLoss": 1, "usesPoints": false, }, }, @@ -40247,11 +49862,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.564945211, "receivingTargets": 5.856671546, "receivingTouchdowns": 0.349821304, - "receivingTouchdowns40Plus": 0.15143259, - "receivingTouchdowns50Plus": 0.098961198, + "receivingTouchdowns40Plus": 0.023075001, + "receivingTouchdowns50Plus": 0.00071366, "receivingYards": 44.53544069, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 12.49260172, - "turnovers": 0.025642067, + "totalTurnovers": 0.025642067, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40261,7 +49880,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 64, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 16, + "teamLoss": 3, + "teamWin": 3, "usesPoints": false, }, }, @@ -40302,14 +49928,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.14879761, "receivingTargets": 28.39036073, "receivingTouchdowns": 0.801008393, - "receivingTouchdowns40Plus": 0.105194381, - "receivingTouchdowns50Plus": 0.068744528, + "receivingTouchdowns40Plus": 0.07405346, + "receivingTouchdowns50Plus": 0.002290313, "receivingYards": 198.2197583, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 11.55881379, - "turnovers": 0.192066533, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.192066533, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -40351,6 +49986,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "fumbles": 2, "kickoffReturnYards": 206, "puntReturnYards": 308, + "teamLoss": 3, + "teamWin": 14, "usesPoints": false, }, }, @@ -40389,12 +50026,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.029249203, "rushing2PtConversions": 0.011041785, "rushingAttempts": 4.404110856, + "rushingGame100To199Yards": 0.000743953, + "rushingGame200PlusYards": 0.0000254, "rushingTouchdowns": 0.154966605, "rushingTouchdowns40Plus": 0.008096131, "rushingTouchdowns50Plus": 0.005667291, "rushingYards": 18.43114708, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.184987092, - "turnovers": 0.029249203, + "totalTurnovers": 0.029249203, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40405,10 +50046,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 8, "receivingYardsAfterCatch": 1, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 1.6, "rushingAttempts": 4, "rushingYards": 8, "rushingYardsPerAttempt": 2, + "teamLoss": 6, + "teamPointsScored": 12, + "teamWin": 9, "usesPoints": false, }, }, @@ -40483,11 +50128,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.591468891, "receivingTargets": 12.92407819, "receivingTouchdowns": 0.445625577, - "receivingTouchdowns40Plus": 0.09346282, - "receivingTouchdowns50Plus": 0.061077953, + "receivingTouchdowns40Plus": 0.039439957, + "receivingTouchdowns50Plus": 0.001219792, "receivingYards": 90.4819835, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 11.91890329, - "turnovers": 0.054604193, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.054604193, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40497,7 +50148,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 3, "receivingYards": 11, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5.5, + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -40541,10 +50196,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 17, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 17, "rushingAttempts": 10, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 31, + "rushingYardsPer10Yards": 2, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 3.1, + "teamLoss": 7, + "teamWin": 7, "usesPoints": false, }, }, @@ -40585,11 +50247,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.909429573, "receivingTargets": 14.90732883, "receivingTouchdowns": 0.488662551, - "receivingTouchdowns40Plus": 0.114898664, - "receivingTouchdowns50Plus": 0.075086277, + "receivingTouchdowns40Plus": 0.045270334, + "receivingTouchdowns50Plus": 0.001400113, "receivingYards": 106.2363931, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 11.92403983, - "turnovers": 0.064084069, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.064084069, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40597,7 +50265,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 17, "receivingYards": 106, "receivingYardsAfterCatch": 40, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 9.63636364, + "teamLoss": 2, + "teamWin": 6, "usesPoints": false, }, }, @@ -40639,7 +50313,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 42, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 7, + "teamLoss": 3, + "teamWin": 3, "usesPoints": false, }, }, @@ -40716,18 +50396,33 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.08440579, "receivingTargets": 16.01248489, "receivingTouchdowns": 0.541177892, - "receivingTouchdowns40Plus": 0.181842875, - "receivingTouchdowns50Plus": 0.118834319, + "receivingTouchdowns40Plus": 0.051642679, + "receivingTouchdowns50Plus": 0.001597196, "receivingYards": 127.2707355, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 12.6205488, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.015116671, "rushingAttempts": 8.782242336, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.007962182, + "rushingGame200PlusYards": 0.000271719, "rushingTouchdowns": 0.3103173, "rushingTouchdowns40Plus": 0.016183036, "rushingTouchdowns50Plus": 0.011328125, "rushingYards": 56.85145845, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 11, "rushingYardsPerAttempt": 6.473455899, - "turnovers": 0.193741974, + "totalTurnovers": 0.193741974, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40739,8 +50434,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 13, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6.5, - "turnovers": 1, + "teamLoss": 2, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -40783,18 +50481,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.29403182, "receivingTargets": 15.32582114, "receivingTouchdowns": 0.623952041, - "receivingTouchdowns40Plus": 0.11872121, - "receivingTouchdowns50Plus": 0.077584311, + "receivingTouchdowns40Plus": 0.046164106, + "receivingTouchdowns50Plus": 0.001427756, "receivingYards": 109.0763419, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 10.59607584, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, "rushing2PtConversions": 0.005576011, "rushingAttempts": 4.408028726, + "rushingGame100To199Yards": 0.001370171, + "rushingGame200PlusYards": 0.0000468, "rushingTouchdowns": 0.142893141, "rushingTouchdowns40Plus": 0.008103359, "rushingTouchdowns50Plus": 0.005672351, "rushingYards": 24.45295986, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 5.547368537, - "turnovers": 0.100087689, + "totalTurnovers": 0.100087689, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40807,10 +50517,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 8, "receivingYardsAfterCatch": 11, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 4, "rushingAttempts": 1, "rushingYards": -4, "rushingYardsPerAttempt": -4, + "teamLoss": 4, + "teamWin": 4, "usesPoints": false, }, }, @@ -40850,11 +50563,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 20.88240292, "receivingTargets": 29.70006176, "receivingTouchdowns": 0.928339857, - "receivingTouchdowns40Plus": 0.090572935, - "receivingTouchdowns50Plus": 0.059189413, + "receivingTouchdowns40Plus": 0.074799734, + "receivingTouchdowns50Plus": 0.002313394, "receivingYards": 200.5642695, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 40, "receivingYardsPerReception": 9.604463159, - "turnovers": 0.141208296, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.141208296, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40864,7 +50584,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 20, "receivingYards": 117, "receivingYardsAfterCatch": 83, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 9.75, + "teamLoss": 10, + "teamWin": 5, "usesPoints": false, }, }, @@ -40905,11 +50631,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.895955714, "receivingTargets": 5.755840529, "receivingTouchdowns": 0.306367772, - "receivingTouchdowns40Plus": 0.096123447, - "receivingTouchdowns50Plus": 0.062816673, + "receivingTouchdowns40Plus": 0.020762574, + "receivingTouchdowns50Plus": 0.000642141, "receivingYards": 39.31913822, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.09229599, - "turnovers": 0.025093483, + "totalTurnovers": 0.025093483, "usesPoints": false, }, "rawStats": PlayerStats { @@ -40917,7 +50647,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 8, "receivingYardsAfterCatch": 1, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, + "teamLoss": 5, + "teamWin": 4, "usesPoints": false, }, }, @@ -40963,10 +50696,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 32, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 6.4, "rushingAttempts": 2, "rushingYards": 26, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 13, + "teamLoss": 3, + "teamWin": 2, "usesPoints": false, }, }, @@ -41008,7 +50749,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 4, "receivingYards": 150, "receivingYardsAfterCatch": 75, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 9.375, + "teamLoss": 8, + "teamPointsScored": 24, + "teamWin": 5, "usesPoints": false, }, }, @@ -41051,10 +50799,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingYards": 69, "receivingYardsAfterCatch": 47, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 13.8, "rushingAttempts": 2, "rushingYards": 0, "rushingYardsPerAttempt": 0, + "teamLoss": 8, + "teamWin": 5, "usesPoints": false, }, }, @@ -41095,11 +50850,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.711630734, "receivingTargets": 7.66496747, "receivingTouchdowns": 0.373716091, - "receivingTouchdowns40Plus": 0.148164404, - "receivingTouchdowns50Plus": 0.096825438, + "receivingTouchdowns40Plus": 0.02861692, + "receivingTouchdowns50Plus": 0.000885059, "receivingYards": 58.8086692, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.48159555, - "turnovers": 0.028033946, + "totalTurnovers": 0.028033946, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41110,7 +50870,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 18, "receivingYards": 89, "receivingYardsAfterCatch": 18, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.125, + "teamLoss": 8, + "teamWin": 8, "usesPoints": false, }, }, @@ -41156,8 +50921,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 42, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 7, - "turnovers": 1, + "teamLoss": 5, + "teamPointsScored": 6, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -41198,11 +50970,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.090190173, "receivingTargets": 9.903904954, "receivingTouchdowns": 0.519480298, - "receivingTouchdowns40Plus": 0.136720109, - "receivingTouchdowns50Plus": 0.089346591, + "receivingTouchdowns40Plus": 0.034339232, + "receivingTouchdowns50Plus": 0.001062038, "receivingYards": 73.35555332, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 12.04487073, - "turnovers": 0.043805741, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.043805741, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41212,7 +50990,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 33, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.25, + "teamLoss": 5, + "teamWin": 4, "usesPoints": false, }, }, @@ -41250,34 +51032,58 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 34.42815401, "passingCompletionPercentage": 0.656020165, "passingCompletions": 22.58556326, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 11.84259075, "passingInterceptions": 0.994879063, "passingTouchdowns": 1.932964939, "passingTouchdowns40Plus": 0.233667979, "passingTouchdowns50Plus": 0.152702024, "passingYards": 264.4989641, + "passingYards300To399": 0.277227191, + "passingYards400Plus": 0.037446125, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 52, "rushing2PtConversions": 0.002796744, "rushingAttempts": 1.079418789, + "rushingGame100To199Yards": 0.000220567, + "rushingGame200PlusYards": 0.00000753, "rushingTouchdowns": 0.052580631, "rushingTouchdowns40Plus": 0.001999315, "rushingTouchdowns50Plus": 0.001399521, "rushingYards": 2.328196488, "rushingYardsPerAttempt": 2.156898242, - "turnovers": 1.217670134, + "totalTurnovers": 1.217670134, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 25, "passingCompletionPercentage": 0.84, "passingCompletions": 21, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 4, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 224, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 21, + "passingYardsPer20Yards": 9, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 44, "rushingAttempts": 4, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2, - "turnovers": 1, + "teamLoss": 2, + "teamPointsScored": 6, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -41322,7 +51128,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 113, "receivingYardsAfterCatch": 53, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 21, "receivingYardsPerReception": 16.14285714, + "teamLoss": 7, + "teamPointsScored": 12, + "teamWin": 2, "usesPoints": false, }, }, @@ -41396,11 +51210,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.930470712, "receivingTargets": 11.28174061, "receivingTouchdowns": 0.622700314, - "receivingTouchdowns40Plus": 0.077019493, - "receivingTouchdowns50Plus": 0.050332239, + "receivingTouchdowns40Plus": 0.034430078, + "receivingTouchdowns50Plus": 0.001064848, "receivingYards": 73.33978311, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 9.24784742, - "turnovers": 0.058483806, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.058483806, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41408,6 +51228,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": -2, "receivingYardsPerReception": -1, + "teamLoss": 2, "usesPoints": false, }, }, @@ -41445,34 +51266,61 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 35.3564042, "passingCompletionPercentage": 0.61831325, "passingCompletions": 21.86133319, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.49507101, "passingInterceptions": 0.695784734, "passingTouchdowns": 1.184589149, "passingTouchdowns40Plus": 0.201018609, "passingTouchdowns50Plus": 0.131365661, "passingYards": 243.8817975, + "passingYards300To399": 0.203109802, + "passingYards400Plus": 0.027434809, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 48, "rushing2PtConversions": 0.006255996, "rushingAttempts": 2.721875362, + "rushingGame100To199Yards": 0.004794435, + "rushingGame200PlusYards": 0.000163616, "rushingTouchdowns": 0.14765638, "rushingTouchdowns40Plus": 0.005117327, "rushingTouchdowns50Plus": 0.003582129, "rushingYards": 10.53894654, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.871943106, - "turnovers": 0.955778387, + "totalTurnovers": 0.955778387, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 26, "passingCompletionPercentage": 0.57692308, "passingCompletions": 15, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 11, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 2, "passingInterceptions": 1, "passingTouchdowns": 1, "passingYards": 184, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 17, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 7, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 36, "rushingAttempts": 4, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2, - "turnovers": 1, + "teamLoss": 2, + "teamPointsScored": 6, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -41512,11 +51360,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 17.04210383, "receivingTargets": 26.37481282, "receivingTouchdowns": 1.603403214, - "receivingTouchdowns40Plus": 0.108623628, - "receivingTouchdowns50Plus": 0.070985541, + "receivingTouchdowns40Plus": 0.069570197, + "receivingTouchdowns50Plus": 0.002151656, "receivingYards": 185.3989709, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 10.87887814, - "turnovers": 0.107177883, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.107177883, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41527,7 +51382,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 26, "receivingYardsAfterCatch": 9, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 6.5, + "teamLoss": 13, + "teamWin": 2, "usesPoints": false, }, }, @@ -41598,11 +51457,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.461127199, "receivingTargets": 8.516818124, "receivingTouchdowns": 0.584761511, - "receivingTouchdowns40Plus": 0.078497025, - "receivingTouchdowns50Plus": 0.051297806, + "receivingTouchdowns40Plus": 0.027188012, + "receivingTouchdowns50Plus": 0.000840866, "receivingYards": 56.29961562, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.30915662, - "turnovers": 0.029542825, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.029542825, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41612,7 +51477,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 57, "receivingYardsAfterCatch": 14, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 14.25, + "teamLoss": 1, + "teamWin": 10, "usesPoints": false, }, }, @@ -41651,9 +51522,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingTouchdowns": 1, - "receivingTouchdowns40Plus": 1, "receivingYards": 42, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 42, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -41725,11 +51601,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 23.44626484, "receivingTargets": 31.41769068, "receivingTouchdowns": 1.846244326, - "receivingTouchdowns40Plus": 0.068792399, - "receivingTouchdowns50Plus": 0.044955833, + "receivingTouchdowns40Plus": 0.07419554, + "receivingTouchdowns50Plus": 0.002294707, "receivingYards": 198.598281, + "receivingYardsPer10Yards": 19, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 39, "receivingYardsPerReception": 8.470359026, - "turnovers": 0.126836251, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.126836251, "usesPoints": false, }, "rawStats": PlayerStats { @@ -41738,7 +51621,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 58, "receivingYardsAfterCatch": 43, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 4.83333333, + "teamLoss": 10, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -41812,8 +51700,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 97, "receivingTargets": 1, "rushingAttempts": 17, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 3, "rushingYards": 78, + "rushingYardsPer10Yards": 7, + "rushingYardsPer20Yards": 3, + "rushingYardsPer25Yards": 3, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 15, "rushingYardsPerAttempt": 4.58823529, + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -41921,18 +51818,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.551068434, "receivingTargets": 2.6622673, "receivingTouchdowns": 0.141774953, - "receivingTouchdowns40Plus": 0.125677586, - "receivingTouchdowns50Plus": 0.082130303, + "receivingTouchdowns40Plus": 0.011114862, + "receivingTouchdowns50Plus": 0.000343759, "receivingYards": 19.63634614, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 12.6598838, - "turnovers": 0.011156581, + "totalTurnovers": 0.011156581, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 4, "defensiveSoloTackles": 7, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 11, "receivingTargets": 1, + "teamLoss": 3, + "teamWin": 11, "usesPoints": false, }, }, @@ -41975,8 +51877,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 24, "receivingYardsAfterCatch": 31, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 24, "rushingAttempts": 1, + "teamPointsScored": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -42014,10 +51921,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedExtraPoints": 3, "attemptedFieldGoals": 2, "attemptedFieldGoalsFrom40To49": 1, + "fieldGoalAttemptedYards": 82, + "fieldGoalAttemptedYardsPer10Yards": 8, + "fieldGoalAttemptedYardsPer20Yards": 4, + "fieldGoalAttemptedYardsPer25Yards": 3, + "fieldGoalAttemptedYardsPer50Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 16, + "fieldGoalMadeYards": 82, + "fieldGoalMadeYardsPer10Yards": 8, + "fieldGoalMadeYardsPer20Yards": 4, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 16, "madeExtraPoints": 3, "madeFieldGoals": 2, "madeFieldGoalsFrom40To49": 1, "madeFieldGoalsFromUnder40": 1, + "teamLoss": 2, + "teamPointsScored": 9, + "teamWin": 1, "usesPoints": false, }, }, @@ -42058,11 +51980,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 23.76589643, "receivingTargets": 37.01493863, "receivingTouchdowns": 2.196790182, - "receivingTouchdowns40Plus": 0.160839689, - "receivingTouchdowns50Plus": 0.105108737, + "receivingTouchdowns40Plus": 0.138055998, + "receivingTouchdowns50Plus": 0.004269773, "receivingYards": 285.9074941, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 57, "receivingYardsPerReception": 12.03015821, - "turnovers": 0.170944204, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 4, + "totalTurnovers": 0.170944204, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42070,7 +51999,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 24, "receivingYardsAfterCatch": 10, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8, + "teamLoss": 1, + "teamWin": 4, "usesPoints": false, }, }, @@ -42143,6 +52076,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSoloTackles": 2, "defensiveTotalTackles": 2, "receivingTargets": 5, + "teamLoss": 7, + "teamWin": 3, "usesPoints": false, }, }, @@ -42187,7 +52122,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 102, "receivingYardsAfterCatch": 26, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 11.33333333, + "teamLoss": 5, + "teamPointsScored": 12, + "teamWin": 6, "usesPoints": false, }, }, @@ -42225,29 +52168,49 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 36.88957144, "passingCompletionPercentage": 0.654024915, "passingCompletions": 24.12669881, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.76287263, "passingInterceptions": 1.008780221, "passingTouchdowns": 2.322093866, "passingTouchdowns40Plus": 0.233268588, "passingTouchdowns50Plus": 0.152441022, "passingYards": 264.2559332, + "passingYards300To399": 0.276234109, + "passingYards400Plus": 0.037311985, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 26, + "passingYardsPer20Yards": 13, + "passingYardsPer25Yards": 10, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 52, "rushing2PtConversions": 0.003719392, "rushingAttempts": 2.368547856, + "rushingGame100To199Yards": 0.001831484, + "rushingGame200PlusYards": 0.0000625, "rushingTouchdowns": 0.100710617, "rushingTouchdowns40Plus": 0.00443885, "rushingTouchdowns50Plus": 0.003107195, "rushingYards": 6.546269237, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.763832371, - "turnovers": 1.323858468, + "totalTurnovers": 1.323858468, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 8, "passingCompletionPercentage": 0.75, "passingCompletions": 6, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 2, "passingTouchdowns": 1, "passingYards": 29, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 5, + "teamLoss": 1, + "teamPointsScored": 6, "usesPoints": false, }, }, @@ -42288,11 +52251,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.621680025, "receivingTargets": 2.554989157, "receivingTouchdowns": 0.117344847, - "receivingTouchdowns40Plus": 0.101519296, - "receivingTouchdowns50Plus": 0.06634286, + "receivingTouchdowns40Plus": 0.010226615, + "receivingTouchdowns50Plus": 0.000316287, "receivingYards": 17.94080046, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 11.06309518, - "turnovers": 0.011664479, + "totalTurnovers": 0.011664479, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42304,7 +52269,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 37, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.16666667, + "teamLoss": 8, + "teamPointsScored": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -42349,7 +52319,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 22, "receivingYards": 99, "receivingYardsAfterCatch": 36, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer5Yards": 19, "receivingYardsPerReception": 11, + "teamLoss": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -42397,6 +52373,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rushingAttempts": 3, "rushingYards": 4, "rushingYardsPerAttempt": 1.33333333, + "teamLoss": 3, + "teamWin": 2, "usesPoints": false, }, }, @@ -42436,9 +52414,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingCompletions": 1, "passingIncompletions": 1, "passingYards": 10, + "passingYardsPer10Yards": 1, + "passingYardsPer5Yards": 2, "rushingAttempts": 2, "rushingYards": 3, "rushingYardsPerAttempt": 1.5, + "teamWin": 2, "usesPoints": false, }, }, @@ -42478,11 +52459,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.562240026, "receivingTargets": 9.483760595, "receivingTouchdowns": 0.542868373, - "receivingTouchdowns40Plus": 0.060473198, - "receivingTouchdowns50Plus": 0.039519235, + "receivingTouchdowns40Plus": 0.028392361, + "receivingTouchdowns50Plus": 0.000878114, "receivingYards": 61.95442313, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 12, "receivingYardsPerReception": 9.441048008, - "turnovers": 0.035499468, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.035499468, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42491,7 +52478,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 20, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10, + "teamPointsScored": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -42529,33 +52520,54 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 34.85181444, "passingCompletionPercentage": 0.638690722, "passingCompletions": 22.25953053, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 12.59228391, "passingInterceptions": 0.917893259, "passingTouchdowns": 1.513216446, "passingTouchdowns40Plus": 0.20759401, "passingTouchdowns50Plus": 0.135662685, "passingYards": 248.1635607, + "passingYards300To399": 0.216874068, + "passingYards400Plus": 0.029294, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 24, + "passingYardsPer20Yards": 12, + "passingYardsPer25Yards": 9, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 49, "rushing2PtConversions": 0.011811358, "rushingAttempts": 3.651232943, + "rushingGame100To199Yards": 0.00996726, + "rushingGame200PlusYards": 0.000340144, "rushingTouchdowns": 0.170196562, "rushingTouchdowns40Plus": 0.006922145, "rushingTouchdowns50Plus": 0.004845502, "rushingYards": 15.15804866, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.151487702, - "turnovers": 1.245084672, + "totalTurnovers": 1.245084672, "usesPoints": false, }, "rawStats": PlayerStats { "passingAttempts": 11, "passingCompletionPercentage": 0.63636364, "passingCompletions": 7, + "passingCompletionsPer5Completions": 1, "passingIncompletions": 4, "passingInterceptions": 1, "passingYards": 35, + "passingYardsPer10Yards": 2, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 6, "rushingAttempts": 4, "rushingYards": -4, "rushingYardsPerAttempt": -1, - "turnovers": 1, + "teamLoss": 1, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -42624,12 +52636,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "lostFumbles": 0.034930294, "rushing2PtConversions": 0.013479203, "rushingAttempts": 7.139134537, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.002124832, + "rushingGame200PlusYards": 0.0000725, "rushingTouchdowns": 0.331214622, "rushingTouchdowns40Plus": 0.013143586, "rushingTouchdowns50Plus": 0.00920051, "rushingYards": 30.05656877, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.210113791, - "turnovers": 0.034930294, + "totalTurnovers": 0.034930294, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42641,10 +52660,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 11, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5.5, "rushingAttempts": 5, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 1.4, + "teamLoss": 3, + "teamWin": 14, "usesPoints": false, }, }, @@ -42684,18 +52707,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.362454589, "receivingTargets": 5.872847143, "receivingTouchdowns": 0.247685654, - "receivingTouchdowns40Plus": 0.041978205, - "receivingTouchdowns50Plus": 0.027432757, + "receivingTouchdowns40Plus": 0.017646076, + "receivingTouchdowns50Plus": 0.000545755, "receivingYards": 32.59364293, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.471399934, "rushing2PtConversions": 0.005527284, "rushingAttempts": 3.959410642, + "rushingGame100To199Yards": 0.000582686, + "rushingGame200PlusYards": 0.0000199, "rushingTouchdowns": 0.151249439, "rushingTouchdowns40Plus": 0.007276879, "rushingTouchdowns50Plus": 0.005093815, "rushingYards": 16.47950057, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.16210948, - "turnovers": 0.045357275, + "totalTurnovers": 0.045357275, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42707,7 +52738,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 10, "receivingYardsAfterCatch": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2, + "teamLoss": 11, + "teamWin": 6, "usesPoints": false, }, }, @@ -42747,14 +52781,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.173261059, "receivingTargets": 10.93952871, "receivingTouchdowns": 0.774358542, - "receivingTouchdowns40Plus": 0.067220335, - "receivingTouchdowns50Plus": 0.043928489, + "receivingTouchdowns40Plus": 0.032155428, + "receivingTouchdowns50Plus": 0.000994498, "receivingYards": 73.30789918, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.21960564, - "turnovers": 0.048506102, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.048506102, "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 5, "usesPoints": false, }, }, @@ -42799,11 +52840,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.867355264, "receivingTargets": 3.081469919, "receivingTouchdowns": 0.172967488, - "receivingTouchdowns40Plus": 0.120661889, - "receivingTouchdowns50Plus": 0.078852545, + "receivingTouchdowns40Plus": 0.012612863, + "receivingTouchdowns50Plus": 0.000390089, "receivingYards": 22.54784646, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12.07474919, - "turnovers": 0.013431581, + "totalTurnovers": 0.013431581, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42813,10 +52857,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 26, "receivingYardsAfterCatch": 16, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 13, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 7, + "teamWin": 7, "usesPoints": false, }, }, @@ -42853,6 +52903,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 1, "madeExtraPoints": 3, "missedExtraPoints": 1, + "teamPointsScored": 3, + "teamWin": 1, "usesPoints": false, }, }, @@ -42893,11 +52945,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.596502825, "receivingTargets": 8.285977407, "receivingTouchdowns": 0.455458679, - "receivingTouchdowns40Plus": 0.10740857, - "receivingTouchdowns50Plus": 0.0701915, + "receivingTouchdowns40Plus": 0.028699024, + "receivingTouchdowns50Plus": 0.000887599, "receivingYards": 58.16887089, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.39378925, - "turnovers": 0.036046546, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.036046546, "usesPoints": false, }, "rawStats": PlayerStats { @@ -42908,10 +52966,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 64, "receivingYardsAfterCatch": 57, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 12.8, "rushingAttempts": 2, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 4, "rushingYardsPerAttempt": 13, + "teamLoss": 5, + "teamWin": 6, "usesPoints": false, }, }, @@ -43020,13 +53087,30 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 40, "passingCompletionPercentage": 0.575, "passingCompletions": 23, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 17, + "passingIncompletionsPer10Incompletions": 1, + "passingIncompletionsPer5Incompletions": 3, "passingTouchdowns": 1, "passingYards": 168, + "passingYardsPer100Yards": 1, + "passingYardsPer10Yards": 16, + "passingYardsPer20Yards": 8, + "passingYardsPer25Yards": 6, + "passingYardsPer50Yards": 3, + "passingYardsPer5Yards": 33, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingTouchdowns": 1, "rushingYards": 41, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 6.83333333, + "teamLoss": 1, + "teamPointsScored": 12, "usesPoints": false, }, }, @@ -43066,11 +53150,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.968907996, "receivingTargets": 5.763787019, "receivingTouchdowns": 0.325165273, - "receivingTouchdowns40Plus": 0.076604307, - "receivingTouchdowns50Plus": 0.050060914, + "receivingTouchdowns40Plus": 0.0192525, + "receivingTouchdowns50Plus": 0.000595438, "receivingYards": 37.90141654, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 9.549583052, - "turnovers": 0.026838039, + "totalTurnovers": 0.026838039, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43082,7 +53170,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 105, "receivingYardsAfterCatch": 43, + "receivingYardsPer10Yards": 9, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 20, "receivingYardsPerReception": 35, + "teamLoss": 4, + "teamPointsScored": 6, + "teamWin": 8, "usesPoints": false, }, }, @@ -43120,26 +53216,40 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 35.7899076, "passingCompletionPercentage": 0.623176177, "passingCompletions": 22.3034178, + "passingCompletionsPer10Completions": 2, + "passingCompletionsPer5Completions": 4, "passingIncompletions": 13.48648981, "passingInterceptions": 1.162536076, "passingTouchdowns": 1.155115892, "passingTouchdowns40Plus": 0.171794528, "passingTouchdowns50Plus": 0.112267724, "passingYards": 223.9277927, + "passingYards300To399": 0.149208977, + "passingYards400Plus": 0.02015422, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 22, + "passingYardsPer20Yards": 11, + "passingYardsPer25Yards": 8, + "passingYardsPer50Yards": 4, + "passingYardsPer5Yards": 44, "rushing2PtConversions": 0.005316513, "rushingAttempts": 2.180972619, + "rushingGame100To199Yards": 0.002990024, + "rushingGame200PlusYards": 0.000102038, "rushingTouchdowns": 0.081668373, "rushingTouchdowns40Plus": 0.00408038, "rushingTouchdowns50Plus": 0.002856266, "rushingYards": 8.340617691, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 3.824265201, - "turnovers": 1.427661686, + "totalTurnovers": 1.427661686, "usesPoints": false, }, "rawStats": PlayerStats { "rushingAttempts": 5, "rushingYards": -4, "rushingYardsPerAttempt": -0.8, + "teamWin": 3, "usesPoints": false, }, }, @@ -43215,11 +53325,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 16.93645898, "receivingTargets": 27.46571143, "receivingTouchdowns": 1.546162451, - "receivingTouchdowns40Plus": 0.151955123, - "receivingTouchdowns50Plus": 0.099302673, + "receivingTouchdowns40Plus": 0.077959933, + "receivingTouchdowns50Plus": 0.002411132, "receivingYards": 208.6334476, + "receivingYardsPer10Yards": 20, + "receivingYardsPer20Yards": 10, + "receivingYardsPer25Yards": 8, + "receivingYardsPer50Yards": 4, + "receivingYardsPer5Yards": 41, "receivingYardsPerReception": 12.31859906, - "turnovers": 0.121821178, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.121821178, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43231,7 +53348,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 28, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 14, + "teamLoss": 5, + "teamWin": 1, "usesPoints": false, }, }, @@ -43269,17 +53392,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.922668897, "receivingTargets": 8.710497683, "receivingTouchdowns": 0.591642552, - "receivingTouchdowns40Plus": 0.075344881, - "receivingTouchdowns50Plus": 0.049237879, + "receivingTouchdowns40Plus": 0.027740104, + "receivingTouchdowns50Plus": 0.000857941, "receivingYards": 56.20333346, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 9.489528189, - "turnovers": 0.032039607, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.032039607, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveTotalTackles": 1, "kickoffReturnYards": 14, + "teamLoss": 4, + "teamWin": 9, "usesPoints": false, }, }, @@ -43354,10 +53485,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 14, "receivingYardsAfterCatch": 31, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, "rushingAttempts": 13, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, "rushingYards": 19, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 1.46153846, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -43397,23 +53536,37 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 15.42461862, "receivingTargets": 23.03071891, "receivingTouchdowns": 1.178562378, - "receivingTouchdowns40Plus": 0.091204016, - "receivingTouchdowns50Plus": 0.059601824, + "receivingTouchdowns40Plus": 0.060066051, + "receivingTouchdowns50Plus": 0.001857713, "receivingYards": 155.6114978, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 10.0885151, - "turnovers": 0.10430237, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 3, + "totalTurnovers": 0.10430237, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 4, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 6, "receivingReceptions": 7, "receivingTargets": 8, "receivingTouchdowns": 1, "receivingYards": 65, "receivingYardsAfterCatch": 38, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 9.28571429, + "teamLoss": 6, + "teamPointsScored": 6, + "teamWin": 9, "usesPoints": false, }, }, @@ -43450,7 +53603,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "rushingAttempts": 1, "rushingYards": 7, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 7, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -43491,14 +53647,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 26.30069479, "receivingTargets": 41.23105966, "receivingTouchdowns": 1.191301153, - "receivingTouchdowns40Plus": 0.102548768, - "receivingTouchdowns50Plus": 0.06701562, + "receivingTouchdowns40Plus": 0.11674832, + "receivingTouchdowns50Plus": 0.003610773, "receivingYards": 286.562777, + "receivingYardsPer10Yards": 28, + "receivingYardsPer20Yards": 14, + "receivingYardsPer25Yards": 11, + "receivingYardsPer50Yards": 5, + "receivingYardsPer5Yards": 57, "receivingYardsPerReception": 10.89563524, - "turnovers": 0.151341275, + "receptionsPer10Receptions": 2, + "receptionsPer5Receptions": 5, + "totalTurnovers": 0.151341275, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -43539,10 +53704,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 11, "receivingYardsAfterCatch": 15, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5.5, "rushingAttempts": 6, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 30, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 5, + "teamWin": 1, "usesPoints": false, }, }, @@ -43583,11 +53756,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 14.45901039, "receivingTargets": 23.12568997, "receivingTouchdowns": 1.126102543, - "receivingTouchdowns40Plus": 0.177858232, - "receivingTouchdowns50Plus": 0.116230355, + "receivingTouchdowns40Plus": 0.068692223, + "receivingTouchdowns50Plus": 0.002124502, "receivingYards": 182.7493337, + "receivingYardsPer10Yards": 18, + "receivingYardsPer20Yards": 9, + "receivingYardsPer25Yards": 7, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 36, "receivingYardsPerReception": 12.6391315, - "turnovers": 0.104001296, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.104001296, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43595,7 +53775,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 8, "receivingYardsAfterCatch": 10, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, + "teamLoss": 3, + "teamWin": 1, "usesPoints": false, }, }, @@ -43636,11 +53819,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.483385808, "receivingTargets": 8.105203493, "receivingTouchdowns": 0.280794763, - "receivingTouchdowns40Plus": 0.086487759, - "receivingTouchdowns50Plus": 0.056519751, + "receivingTouchdowns40Plus": 0.027045236, + "receivingTouchdowns50Plus": 0.000836451, "receivingYards": 54.78087653, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 12.21863986, - "turnovers": 0.03224826, + "totalTurnovers": 0.03224826, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43648,7 +53836,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingYards": 134, "receivingYardsAfterCatch": 37, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 25, "receivingYardsPerReception": 16.75, + "teamLoss": 5, + "teamWin": 6, "usesPoints": false, }, }, @@ -43690,7 +53885,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 118, "receivingYardsAfterCatch": 78, + "receivingYardsPer10Yards": 10, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 9.07692308, + "receptionsPer5Receptions": 1, + "teamLoss": 5, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -43765,11 +53969,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.89660355, "receivingTargets": 20.82009781, "receivingTouchdowns": 0.854864049, - "receivingTouchdowns40Plus": 0.087511065, - "receivingTouchdowns50Plus": 0.057188481, + "receivingTouchdowns40Plus": 0.055082894, + "receivingTouchdowns50Plus": 0.001703595, "receivingYards": 139.1859042, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 27, "receivingYardsPerReception": 10.01582176, - "turnovers": 0.093969823, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.093969823, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43779,7 +53990,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 11, "receivingYards": 89, "receivingYardsAfterCatch": 36, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 9.88888889, + "teamLoss": 10, + "teamWin": 7, "usesPoints": false, }, }, @@ -43821,11 +54037,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.050734839, "receivingTargets": 4.819323534, "receivingTouchdowns": 0.20763831, - "receivingTouchdowns40Plus": 0.099739844, - "receivingTouchdowns50Plus": 0.065179988, + "receivingTouchdowns40Plus": 0.017859634, + "receivingTouchdowns50Plus": 0.00055236, "receivingYards": 33.35293806, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 10.93275549, - "turnovers": 0.018151706, + "totalTurnovers": 0.018151706, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43835,10 +54055,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 45, "receivingYardsAfterCatch": 17, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 9, "rushingAttempts": 1, "rushingYards": -5, "rushingYardsPerAttempt": -5, + "teamLoss": 7, + "teamWin": 3, "usesPoints": false, }, }, @@ -43877,6 +54101,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rushingAttempts": 2, "rushingYards": 4, "rushingYardsPerAttempt": 2, + "teamLoss": 1, "usesPoints": false, }, }, @@ -43916,7 +54141,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveAssistedTackles": 6, "defensiveSoloTackles": 7, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 13, + "teamLoss": 9, + "teamWin": 8, "usesPoints": false, }, }, @@ -43957,11 +54185,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.042148062, "receivingTargets": 16.07865585, "receivingTouchdowns": 0.535290796, - "receivingTouchdowns40Plus": 0.108214445, - "receivingTouchdowns50Plus": 0.07071814, + "receivingTouchdowns40Plus": 0.047230639, + "receivingTouchdowns50Plus": 0.001460741, "receivingYards": 112.543459, + "receivingYardsPer10Yards": 11, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 22, "receivingYardsPerReception": 12.44654016, - "turnovers": 0.065038691, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.065038691, "usesPoints": false, }, "rawStats": PlayerStats { @@ -43974,7 +54208,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 202, "receivingYardsAfterCatch": 61, + "receivingYardsPer10Yards": 16, + "receivingYardsPer20Yards": 5, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 37, "receivingYardsPerReception": 15.53846154, + "teamLoss": 10, + "teamPointsScored": 8, + "teamWin": 7, "usesPoints": false, }, }, @@ -44083,16 +54325,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.903048191, "receivingTargets": 5.87689409, "receivingTouchdowns": 0.354165306, - "receivingTouchdowns40Plus": 0.093448246, - "receivingTouchdowns50Plus": 0.061068429, + "receivingTouchdowns40Plus": 0.020996372, + "receivingTouchdowns50Plus": 0.000649372, "receivingYards": 39.83481652, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.20607857, - "turnovers": 0.02639269, + "totalTurnovers": 0.02639269, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 5, + "teamWin": 5, "usesPoints": false, }, }, @@ -44137,10 +54385,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 40, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 20, "rushingAttempts": 1, "rushingYards": 4, "rushingYardsPerAttempt": 4, + "teamLoss": 5, "usesPoints": false, }, }, @@ -44178,21 +54431,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.184378029, "receivingTargets": 5.415593385, "receivingTouchdowns": 0.145328784, - "receivingTouchdowns40Plus": 0.039277048, - "receivingTouchdowns50Plus": 0.025667551, + "receivingTouchdowns40Plus": 0.01625327, + "receivingTouchdowns50Plus": 0.000502678, "receivingYards": 29.9315718, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.153171056, "rushing2PtConversions": 0.021309247, "rushingAttempts": 11.12830294, + "rushingAttemptsPer10Attempts": 1, + "rushingAttemptsPer5Attempts": 2, + "rushingGame100To199Yards": 0.006056942, + "rushingGame200PlusYards": 0.0002067, "rushingTouchdowns": 0.421941283, "rushingTouchdowns40Plus": 0.020540054, "rushingTouchdowns50Plus": 0.014378038, "rushingYards": 48.22110144, + "rushingYardsPer10Yards": 4, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 9, "rushingYardsPerAttempt": 4.333194531, - "turnovers": 0.061688237, + "totalTurnovers": 0.061688237, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -44301,11 +54568,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.432574173, "receivingTargets": 8.09828229, "receivingTouchdowns": 0.541674759, - "receivingTouchdowns40Plus": 0.115298123, - "receivingTouchdowns50Plus": 0.075347323, + "receivingTouchdowns40Plus": 0.027483478, + "receivingTouchdowns50Plus": 0.000850004, "receivingYards": 58.01049591, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.67827038, - "turnovers": 0.036735454, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.036735454, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44314,7 +54587,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 2, "receivingYards": 79, "receivingYardsAfterCatch": 44, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 8.77777778, + "teamLoss": 12, + "teamPointsScored": 12, + "teamWin": 5, "usesPoints": false, }, }, @@ -44386,14 +54666,20 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.161773246, "receivingTargets": 5.050496952, "receivingTouchdowns": 0.17737058, - "receivingTouchdowns40Plus": 0.104027972, - "receivingTouchdowns50Plus": 0.06798228, + "receivingTouchdowns40Plus": 0.018860252, + "receivingTouchdowns50Plus": 0.000583307, "receivingYards": 35.5136926, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 11.23220732, - "turnovers": 0.018812378, + "totalTurnovers": 0.018812378, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -44434,11 +54720,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.725575081, "receivingTargets": 2.554989157, "receivingTouchdowns": 0.13943794, - "receivingTouchdowns40Plus": 0.098827353, - "receivingTouchdowns50Plus": 0.064583675, + "receivingTouchdowns40Plus": 0.010168812, + "receivingTouchdowns50Plus": 0.000314499, "receivingYards": 17.83129348, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.33353673, - "turnovers": 0.011114266, + "totalTurnovers": 0.011114266, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44448,7 +54736,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 23, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 11.5, + "teamLoss": 4, + "teamWin": 5, "usesPoints": false, }, }, @@ -44487,6 +54780,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveSoloTackles": 2, "defensiveTotalTackles": 2, + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -44527,11 +54822,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.612492217, "receivingTargets": 5.656118602, "receivingTouchdowns": 0.234270207, - "receivingTouchdowns40Plus": 0.129639905, - "receivingTouchdowns50Plus": 0.084719678, + "receivingTouchdowns40Plus": 0.021560281, + "receivingTouchdowns50Plus": 0.000666813, "receivingYards": 41.34720401, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 11.44561747, - "turnovers": 0.025984065, + "totalTurnovers": 0.025984065, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44542,11 +54841,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 15, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 15, "rushingAttempts": 1, "rushingYards": -1, "rushingYardsPerAttempt": -1, - "turnovers": 1, + "teamLoss": 4, + "teamWin": 4, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -44624,7 +54927,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "fumbles": 1, "kickoffReturnYards": 2, "lostFumbles": 1, - "turnovers": 1, + "teamLoss": 3, + "teamWin": 13, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -44665,11 +54970,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.627643162, "receivingTargets": 3.88823648, "receivingTouchdowns": 0.250455071, - "receivingTouchdowns40Plus": 0.087533626, - "receivingTouchdowns50Plus": 0.057203224, + "receivingTouchdowns40Plus": 0.014787742, + "receivingTouchdowns50Plus": 0.000457353, "receivingYards": 27.6840569, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 10.5356988, - "turnovers": 0.016924402, + "totalTurnovers": 0.016924402, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44677,7 +54986,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 49, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 12.25, + "teamLoss": 2, "usesPoints": false, }, }, @@ -44748,11 +55062,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.014399039, "receivingTargets": 10.57702733, "receivingTouchdowns": 0.503405421, - "receivingTouchdowns40Plus": 0.11081176, - "receivingTouchdowns50Plus": 0.072415485, + "receivingTouchdowns40Plus": 0.034952705, + "receivingTouchdowns50Plus": 0.001081012, "receivingYards": 74.79660031, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 10.66329416, - "turnovers": 0.047526135, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.047526135, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44760,7 +55080,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 55, "receivingYardsAfterCatch": 32, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 9.16666667, + "teamLoss": 5, + "teamWin": 3, "usesPoints": false, }, }, @@ -44801,11 +55125,16 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.983185813, "receivingTargets": 7.768619891, "receivingTouchdowns": 0.421673756, - "receivingTouchdowns40Plus": 0.117553263, - "receivingTouchdowns50Plus": 0.076821057, + "receivingTouchdowns40Plus": 0.027726079, + "receivingTouchdowns50Plus": 0.000857508, "receivingYards": 56.50986008, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 11.34010695, - "turnovers": 0.03584324, + "totalTurnovers": 0.03584324, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44813,7 +55142,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 59, "receivingYardsAfterCatch": 13, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 19.66666667, + "teamLoss": 9, + "teamWin": 3, "usesPoints": false, }, }, @@ -44888,11 +55223,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.91716974, "receivingTargets": 10.7191039, "receivingTouchdowns": 0.373002079, - "receivingTouchdowns40Plus": 0.068679484, - "receivingTouchdowns50Plus": 0.044882043, + "receivingTouchdowns40Plus": 0.032375483, + "receivingTouchdowns50Plus": 0.001001304, "receivingYards": 67.70923376, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 8.552201858, - "turnovers": 0.061441013, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.061441013, "usesPoints": false, }, "rawStats": PlayerStats { @@ -44900,7 +55241,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 13, "receivingYards": 100, "receivingYardsAfterCatch": 20, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 11.11111111, + "teamLoss": 7, + "teamWin": 4, "usesPoints": false, }, }, @@ -44977,22 +55323,35 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 13.91636547, "receivingTargets": 22.01309419, "receivingTouchdowns": 0.897490897, - "receivingTouchdowns40Plus": 0.122942597, - "receivingTouchdowns50Plus": 0.080342987, + "receivingTouchdowns40Plus": 0.061212831, + "receivingTouchdowns50Plus": 0.00189318, "receivingYards": 159.3080854, + "receivingYardsPer10Yards": 15, + "receivingYardsPer20Yards": 7, + "receivingYardsPer25Yards": 6, + "receivingYardsPer50Yards": 3, + "receivingYardsPer5Yards": 31, "receivingYardsPerReception": 11.44753533, - "turnovers": 0.082801615, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.082801615, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 1, "defensiveSoloTackles": 6, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 7, "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 24, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12, + "teamLoss": 5, + "teamWin": 8, "usesPoints": false, }, }, @@ -45137,11 +55496,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.857744727, "receivingTargets": 11.03193276, "receivingTouchdowns": 0.538347555, - "receivingTouchdowns40Plus": 0.168049154, - "receivingTouchdowns50Plus": 0.109820122, + "receivingTouchdowns40Plus": 0.047116829, + "receivingTouchdowns50Plus": 0.001457222, "receivingYards": 88.62651342, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 12.92356554, - "turnovers": 0.049326636, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.049326636, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45151,10 +55516,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 21, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.5, "rushingAttempts": 1, "rushingYards": 1, "rushingYardsPerAttempt": 1, + "teamLoss": 3, + "teamWin": 2, "usesPoints": false, }, }, @@ -45195,11 +55564,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 10.85071026, "receivingTargets": 17.25284283, "receivingTouchdowns": 0.941243218, - "receivingTouchdowns40Plus": 0.146292982, - "receivingTouchdowns50Plus": 0.095602463, + "receivingTouchdowns40Plus": 0.052458654, + "receivingTouchdowns50Plus": 0.001622433, "receivingYards": 130.1082604, + "receivingYardsPer10Yards": 13, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 5, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 26, "receivingYardsPerReception": 11.9907598, - "turnovers": 0.064561134, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.064561134, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45212,7 +55588,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "rushingAttempts": 4, "rushingYards": 26, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 6.5, + "teamLoss": 5, + "teamWin": 4, "usesPoints": false, }, }, @@ -45319,6 +55700,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -45391,13 +55773,25 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 49, "passingCompletionPercentage": 0.44897959, "passingCompletions": 22, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 3, "passingIncompletions": 27, + "passingIncompletionsPer10Incompletions": 2, + "passingIncompletionsPer5Incompletions": 5, "passingInterceptions": 2, "passingYards": 302, + "passingYardsPer100Yards": 2, + "passingYardsPer10Yards": 29, + "passingYardsPer20Yards": 14, + "passingYardsPer25Yards": 11, + "passingYardsPer50Yards": 5, + "passingYardsPer5Yards": 60, "rushingAttempts": 3, "rushingYards": -5, "rushingYardsPerAttempt": -1.66666667, - "turnovers": 3, + "teamLoss": 1, + "teamWin": 1, + "totalTurnovers": 3, "usesPoints": false, }, }, @@ -45438,11 +55832,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.157537499, "receivingTargets": 5.257708212, "receivingTouchdowns": 0.177292775, - "receivingTouchdowns40Plus": 0.109345307, - "receivingTouchdowns50Plus": 0.071457158, + "receivingTouchdowns40Plus": 0.019782634, + "receivingTouchdowns50Plus": 0.000611834, "receivingYards": 37.54099495, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 11.88932672, - "turnovers": 0.02271165, + "totalTurnovers": 0.02271165, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45452,7 +55850,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 20, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.66666667, + "teamLoss": 6, + "teamWin": 3, "usesPoints": false, }, }, @@ -45663,11 +56065,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 9.243708668, "receivingTargets": 12.18790811, "receivingTouchdowns": 0.623957702, - "receivingTouchdowns40Plus": 0.12387012, - "receivingTouchdowns50Plus": 0.080949124, + "receivingTouchdowns40Plus": 0.039506976, + "receivingTouchdowns50Plus": 0.001221865, "receivingYards": 88.51943883, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 17, "receivingYardsPerReception": 9.576182246, - "turnovers": 0.063627601, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.063627601, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45675,7 +56083,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 18, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6, + "teamLoss": 9, + "teamWin": 2, "usesPoints": false, }, }, @@ -45717,7 +56129,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 20, "receivingYardsAfterCatch": 15, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10, + "teamLoss": 3, + "teamWin": 3, "usesPoints": false, }, }, @@ -45758,7 +56174,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 2.5, + "teamLoss": 1, + "teamWin": 11, "usesPoints": false, }, }, @@ -45832,18 +56251,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 8.079856193, "receivingTargets": 10.7191039, "receivingTouchdowns": 0.29114887, - "receivingTouchdowns40Plus": 0.038382343, - "receivingTouchdowns50Plus": 0.025082861, + "receivingTouchdowns40Plus": 0.028440538, + "receivingTouchdowns50Plus": 0.000879604, "receivingYards": 57.45299816, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 7.110646129, + "receptionsPer5Receptions": 1, "rushing2PtConversions": 0.008352321, "rushingAttempts": 7.653570547, + "rushingAttemptsPer5Attempts": 1, + "rushingGame100To199Yards": 0.00235165, + "rushingGame200PlusYards": 0.0000803, "rushingTouchdowns": 0.179991156, "rushingTouchdowns40Plus": 0.014094615, "rushingTouchdowns50Plus": 0.009866231, "rushingYards": 31.53314441, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 6, "rushingYardsPerAttempt": 4.120056673, - "turnovers": 0.06845961, + "totalTurnovers": 0.06845961, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45855,10 +56287,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 8, "receivingYardsAfterCatch": 8, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 8, "rushingAttempts": 1, "rushingYards": 2, "rushingYardsPerAttempt": 2, + "teamLoss": 10, + "teamWin": 7, "usesPoints": false, }, }, @@ -45898,11 +56333,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 11.34022968, "receivingTargets": 17.28243315, "receivingTouchdowns": 0.840419479, - "receivingTouchdowns40Plus": 0.116936566, - "receivingTouchdowns50Plus": 0.076418046, + "receivingTouchdowns40Plus": 0.05055927, + "receivingTouchdowns50Plus": 0.001563689, "receivingYards": 123.7566393, + "receivingYardsPer10Yards": 12, + "receivingYardsPer20Yards": 6, + "receivingYardsPer25Yards": 4, + "receivingYardsPer50Yards": 2, + "receivingYardsPer5Yards": 24, "receivingYardsPerReception": 10.91306286, - "turnovers": 0.076683441, + "receptionsPer10Receptions": 1, + "receptionsPer5Receptions": 2, + "totalTurnovers": 0.076683441, "usesPoints": false, }, "rawStats": PlayerStats { @@ -45910,7 +56352,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 42, "receivingYardsAfterCatch": 35, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 7, + "teamLoss": 8, + "teamWin": 9, "usesPoints": false, }, }, @@ -46055,11 +56502,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.460767217, "receivingTargets": 5.528597412, "receivingTouchdowns": 0.249861343, - "receivingTouchdowns40Plus": 0.11112926, - "receivingTouchdowns50Plus": 0.072622971, + "receivingTouchdowns40Plus": 0.020720386, + "receivingTouchdowns50Plus": 0.000640837, "receivingYards": 39.64029939, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 11.45419409, - "turnovers": 0.020591376, + "totalTurnovers": 0.020591376, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46205,11 +56656,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.918714633, "receivingTargets": 5.872847143, "receivingTouchdowns": 0.423935163, - "receivingTouchdowns40Plus": 0.098074292, - "receivingTouchdowns50Plus": 0.06409155, + "receivingTouchdowns40Plus": 0.021235471, + "receivingTouchdowns50Plus": 0.000656767, "receivingYards": 40.36885867, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 10.30155611, - "turnovers": 0.026498628, + "totalTurnovers": 0.026498628, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46220,7 +56675,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 19, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 6.33333333, + "teamLoss": 10, + "teamWin": 5, "usesPoints": false, }, }, @@ -46255,10 +56714,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptedExtraPoints": 4, "attemptedFieldGoals": 1, "attemptedFieldGoalsFrom40To49": 1, + "fieldGoalAttemptedYards": 49, + "fieldGoalAttemptedYardsPer10Yards": 4, + "fieldGoalAttemptedYardsPer20Yards": 2, + "fieldGoalAttemptedYardsPer25Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 9, + "fieldGoalMadeYards": 49, + "fieldGoalMadeYardsPer10Yards": 4, + "fieldGoalMadeYardsPer20Yards": 2, + "fieldGoalMadeYardsPer25Yards": 1, + "fieldGoalMadeYardsPer5Yards": 9, "madeExtraPoints": 2, "madeFieldGoals": 1, "madeFieldGoalsFrom40To49": 1, "missedExtraPoints": 2, + "teamLoss": 1, + "teamPointsScored": 5, "usesPoints": false, }, }, @@ -46297,11 +56768,26 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingAttempts": 15, "passingCompletionPercentage": 0.66666667, "passingCompletions": 10, + "passingCompletionsPer10Completions": 1, + "passingCompletionsPer5Completions": 2, "passingIncompletions": 5, + "passingIncompletionsPer5Incompletions": 1, "passingYards": 90, + "passingYardsPer10Yards": 9, + "passingYardsPer20Yards": 4, + "passingYardsPer25Yards": 3, + "passingYardsPer50Yards": 1, + "passingYardsPer5Yards": 18, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 54, + "rushingYardsPer10Yards": 5, + "rushingYardsPer20Yards": 2, + "rushingYardsPer25Yards": 2, + "rushingYardsPer50Yards": 1, + "rushingYardsPer5Yards": 10, "rushingYardsPerAttempt": 6, + "teamLoss": 2, "usesPoints": false, }, }, @@ -46379,11 +56865,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 6.196155942, "receivingTargets": 10.27758952, "receivingTouchdowns": 0.446045034, - "receivingTouchdowns40Plus": 0.143063114, - "receivingTouchdowns50Plus": 0.093491745, + "receivingTouchdowns40Plus": 0.035618431, + "receivingTouchdowns50Plus": 0.001101601, "receivingYards": 77.02384889, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 15, "receivingYardsPerReception": 12.43090871, - "turnovers": 0.044567936, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.044567936, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46394,7 +56886,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 54, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 10, "receivingYardsPerReception": 18, + "teamLoss": 4, + "teamWin": 7, "usesPoints": false, }, }, @@ -46434,17 +56932,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.006562964, "receivingTargets": 5.33848857, "receivingTouchdowns": 0.214864422, - "receivingTouchdowns40Plus": 0.04285411, - "receivingTouchdowns50Plus": 0.028005161, + "receivingTouchdowns40Plus": 0.016244967, + "receivingTouchdowns50Plus": 0.000502422, "receivingYards": 29.6788933, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 7.407569422, - "turnovers": 0.023864858, + "totalTurnovers": 0.023864858, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveSoloTackles": 4, "defensiveTotalTackles": 4, "receivingTargets": 1, + "teamLoss": 13, + "teamWin": 3, "usesPoints": false, }, }, @@ -46558,6 +57062,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "fumbles": 1, "kickoffReturnYards": 35, "puntReturnYards": 18, + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -46597,7 +57103,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 17, "receivingYardsAfterCatch": 5, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 17, + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -46700,16 +57210,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.389032047, "receivingTargets": 6.55958055, "receivingTouchdowns": 0.402748891, - "receivingTouchdowns40Plus": 0.11200166, - "receivingTouchdowns50Plus": 0.073193085, + "receivingTouchdowns40Plus": 0.023931037, + "receivingTouchdowns50Plus": 0.000740135, "receivingYards": 46.51715864, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 9, "receivingYardsPerReception": 10.59850057, - "turnovers": 0.028269341, + "totalTurnovers": 0.028269341, "usesPoints": false, }, "rawStats": PlayerStats { "defensiveAssistedTackles": 3, "defensiveSoloTackles": 8, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 11, "kickoffReturnYards": 7, "receivingReceptions": 7, @@ -46717,7 +57232,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 80, "receivingYardsAfterCatch": 31, + "receivingYardsPer10Yards": 4, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 11.42857143, + "teamLoss": 9, + "teamPointsScored": 6, + "teamWin": 8, "usesPoints": false, }, }, @@ -46756,7 +57276,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 2, "receivingYards": 5, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamLoss": 2, + "teamWin": 4, "usesPoints": false, }, }, @@ -46797,21 +57320,29 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2.07889802, "receivingTargets": 2.753574272, "receivingTouchdowns": 0.087732788, - "receivingTouchdowns40Plus": 0.040223593, - "receivingTouchdowns50Plus": 0.026286118, + "receivingTouchdowns40Plus": 0.008854462, + "receivingTouchdowns50Plus": 0.000273849, "receivingYards": 15.3704384, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 7.393550935, "rushing2PtConversions": 0.005239579, "rushingAttempts": 3.748701522, + "rushingGame100To199Yards": 0.00055529, + "rushingGame200PlusYards": 0.0000189, "rushingTouchdowns": 0.143425083, "rushingTouchdowns40Plus": 0.006889706, "rushingTouchdowns50Plus": 0.004822794, "rushingYards": 15.6004691, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.16156608, - "turnovers": 0.02369208, + "totalTurnovers": 0.02369208, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 2, "usesPoints": false, }, }, @@ -46889,11 +57420,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.357474998, "receivingTargets": 11.75383574, "receivingTouchdowns": 0.529988645, - "receivingTouchdowns40Plus": 0.120699839, - "receivingTouchdowns50Plus": 0.078877345, + "receivingTouchdowns40Plus": 0.038386576, + "receivingTouchdowns50Plus": 0.001187214, "receivingYards": 84.71403991, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 11.51400989, - "turnovers": 0.043776575, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.043776575, "usesPoints": false, }, "rawStats": PlayerStats { @@ -46904,7 +57441,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 30, "receivingYardsAfterCatch": 21, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 10, + "teamLoss": 8, + "teamWin": 9, "usesPoints": false, }, }, @@ -46945,6 +57487,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveTotalTackles": 1, "receivingTargets": 2, "rushingAttempts": 1, + "teamLoss": 7, + "teamWin": 5, "usesPoints": false, }, }, @@ -46984,18 +57528,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.123227791, "receivingTargets": 4.226851144, "receivingTouchdowns": 0.170844862, - "receivingTouchdowns40Plus": 0.034888215, - "receivingTouchdowns50Plus": 0.022799448, + "receivingTouchdowns40Plus": 0.013018873, + "receivingTouchdowns50Plus": 0.000402646, "receivingYards": 23.92894402, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 7.661607037, "rushing2PtConversions": 0.003522133, "rushingAttempts": 1.59471819, + "rushingGame100To199Yards": 0.000110088, + "rushingGame200PlusYards": 0.00000376, "rushingTouchdowns": 0.05496656, "rushingTouchdowns40Plus": 0.002927892, "rushingTouchdowns50Plus": 0.002049525, "rushingYards": 6.890010297, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 4.320519036, - "turnovers": 0.026405947, + "totalTurnovers": 0.026405947, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47005,10 +57555,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 5, "receivingYardsAfterCatch": 2, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, "rushingAttempts": 1, "rushingYards": 4, "rushingYardsPerAttempt": 4, + "teamLoss": 1, + "teamWin": 7, "usesPoints": false, }, }, @@ -47085,11 +57638,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.631742824, "receivingTargets": 11.40551528, "receivingTouchdowns": 0.547985117, - "receivingTouchdowns40Plus": 0.111904281, - "receivingTouchdowns50Plus": 0.073129448, + "receivingTouchdowns40Plus": 0.036962418, + "receivingTouchdowns50Plus": 0.001143168, "receivingYards": 80.86918241, + "receivingYardsPer10Yards": 8, + "receivingYardsPer20Yards": 4, + "receivingYardsPer25Yards": 3, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 16, "receivingYardsPerReception": 10.59642395, - "turnovers": 0.051606389, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.051606389, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47099,7 +57658,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 40, "receivingYardsAfterCatch": 36, + "receivingYardsPer10Yards": 3, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10, + "teamLoss": 8, + "teamWin": 9, "usesPoints": false, }, }, @@ -47139,11 +57702,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.57687766, "receivingTargets": 5.328219725, "receivingTouchdowns": 0.38596306, - "receivingTouchdowns40Plus": 0.098965781, - "receivingTouchdowns50Plus": 0.064674138, + "receivingTouchdowns40Plus": 0.019619003, + "receivingTouchdowns50Plus": 0.000606773, "receivingYards": 37.17479443, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.39308525, - "turnovers": 0.024187102, + "totalTurnovers": 0.024187102, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47154,7 +57721,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 26, "receivingYardsAfterCatch": 27, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 6.5, + "teamLoss": 9, + "teamWin": 8, "usesPoints": false, }, }, @@ -47198,7 +57771,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 7, "receivingYards": 9, "receivingYardsAfterCatch": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3, + "teamLoss": 12, + "teamWin": 4, "usesPoints": false, }, }, @@ -47271,11 +57847,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 4.214851677, "receivingTargets": 5.744848318, "receivingTouchdowns": 0.230724109, - "receivingTouchdowns40Plus": 0.044950375, - "receivingTouchdowns50Plus": 0.02937507, + "receivingTouchdowns40Plus": 0.017623894, + "receivingTouchdowns50Plus": 0.000545069, "receivingYards": 32.54553653, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 7.721632701, - "turnovers": 0.025105517, + "totalTurnovers": 0.025105517, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47286,7 +57866,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 9, "receivingYards": 100, "receivingYardsAfterCatch": 58, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer5Yards": 18, "receivingYardsPerReception": 12.5, + "teamLoss": 10, + "teamWin": 6, "usesPoints": false, }, }, @@ -47366,7 +57952,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 74, "receivingYardsAfterCatch": 27, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 18.5, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -47440,11 +58033,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 5.603364479, "receivingTargets": 8.491093187, "receivingTouchdowns": 0.497163529, - "receivingTouchdowns40Plus": 0.09804622, - "receivingTouchdowns50Plus": 0.064073205, + "receivingTouchdowns40Plus": 0.028749531, + "receivingTouchdowns50Plus": 0.000889161, "receivingYards": 58.31409033, + "receivingYardsPer10Yards": 5, + "receivingYardsPer20Yards": 2, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 11, "receivingYardsPerReception": 10.40697791, - "turnovers": 0.03789035, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.03789035, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47454,7 +58053,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 26, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 8.66666667, + "teamLoss": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -47528,11 +58132,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.517922831, "receivingTargets": 5.33848857, "receivingTouchdowns": 0.264876634, - "receivingTouchdowns40Plus": 0.098703833, - "receivingTouchdowns50Plus": 0.064502955, + "receivingTouchdowns40Plus": 0.019561995, + "receivingTouchdowns50Plus": 0.00060501, "receivingYards": 36.6855315, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.42817971, - "turnovers": 0.023788445, + "totalTurnovers": 0.023788445, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47543,7 +58151,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 26, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 13, + "teamLoss": 12, + "teamPointsScored": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -47617,10 +58231,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 10, "receivingYardsAfterCatch": 12, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5, "rushingAttempts": 9, + "rushingAttemptsPer5Attempts": 1, "rushingYards": 43, + "rushingYardsPer10Yards": 3, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 8, "rushingYardsPerAttempt": 4.77777778, + "teamLoss": 2, "usesPoints": false, }, }, @@ -47837,11 +58459,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.978783497, "receivingTargets": 3.010755913, "receivingTouchdowns": 0.172210898, - "receivingTouchdowns40Plus": 0.081275761, - "receivingTouchdowns50Plus": 0.05311371, + "receivingTouchdowns40Plus": 0.010884235, + "receivingTouchdowns50Plus": 0.000336626, "receivingYards": 20.10406903, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.15981236, - "turnovers": 0.013380675, + "totalTurnovers": 0.013380675, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47849,6 +58474,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveSoloTackles": 4, "defensiveTotalTackles": 6, "receivingTargets": 2, + "teamLoss": 4, + "teamWin": 13, "usesPoints": false, }, }, @@ -47919,18 +58546,24 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.975092679, "receivingTargets": 2.644256833, "receivingTouchdowns": 0.124145225, - "receivingTouchdowns40Plus": 0.041829181, - "receivingTouchdowns50Plus": 0.027335369, + "receivingTouchdowns40Plus": 0.00850816, + "receivingTouchdowns50Plus": 0.000263139, "receivingYards": 14.6740297, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7.429539817, "rushing2PtConversions": 0.006717605, "rushingAttempts": 4.391121168, + "rushingGame100To199Yards": 0.000770088, + "rushingGame200PlusYards": 0.0000263, "rushingTouchdowns": 0.137899998, "rushingTouchdowns40Plus": 0.008072209, "rushingTouchdowns50Plus": 0.005650546, "rushingYards": 18.70668198, + "rushingYardsPer10Yards": 1, + "rushingYardsPer5Yards": 3, "rushingYardsPerAttempt": 4.260115188, - "turnovers": 0.033249363, + "totalTurnovers": 0.033249363, "usesPoints": false, }, "rawStats": PlayerStats { @@ -47944,7 +58577,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYardsPerReception": 3, "rushingAttempts": 4, "rushingYards": 9, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.25, + "teamLoss": 6, + "teamWin": 5, "usesPoints": false, }, }, @@ -48019,6 +58655,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 3, + "teamWin": 7, "usesPoints": false, }, }, @@ -48299,11 +58937,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.095929645, "receivingTargets": 5.166941738, "receivingTouchdowns": 0.275061254, - "receivingTouchdowns40Plus": 0.088712137, - "receivingTouchdowns50Plus": 0.057973381, + "receivingTouchdowns40Plus": 0.016686043, + "receivingTouchdowns50Plus": 0.000516063, "receivingYards": 37.88446, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 12.23686076, - "turnovers": 0.022268515, + "totalTurnovers": 0.022268515, "usesPoints": false, }, "rawStats": PlayerStats { @@ -48341,6 +58983,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -48549,7 +59192,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 8, "receivingYards": 19, "receivingYardsAfterCatch": 10, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 3.8, + "teamLoss": 12, + "teamWin": 3, "usesPoints": false, }, }, @@ -48660,11 +59306,15 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.567501805, "receivingTargets": 5.410967455, "receivingTouchdowns": 0.259751042, - "receivingTouchdowns40Plus": 0.088696033, - "receivingTouchdowns50Plus": 0.057962858, + "receivingTouchdowns40Plus": 0.019461045, + "receivingTouchdowns50Plus": 0.000601888, "receivingYards": 36.82602186, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.3226358, - "turnovers": 0.024123701, + "totalTurnovers": 0.024123701, "usesPoints": false, }, "rawStats": PlayerStats { @@ -48676,7 +59326,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 46, "receivingYardsAfterCatch": 21, + "receivingYardsPer10Yards": 4, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 8, "receivingYardsPerReception": 23, + "teamLoss": 7, + "teamWin": 7, "usesPoints": false, }, }, @@ -48745,6 +59401,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -48920,8 +59577,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 20, "receivingYardsAfterCatch": 8, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 20, - "turnovers": 1, + "teamLoss": 6, + "teamWin": 2, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -48962,11 +59624,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.574153578, "receivingTargets": 2.589539964, "receivingTouchdowns": 0.125056472, - "receivingTouchdowns40Plus": 0.112005043, - "receivingTouchdowns50Plus": 0.073195295, + "receivingTouchdowns40Plus": 0.010587392, + "receivingTouchdowns50Plus": 0.000327445, "receivingYards": 18.62638461, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 11.83263493, - "turnovers": 0.011322629, + "totalTurnovers": 0.011322629, "usesPoints": false, }, "rawStats": PlayerStats { @@ -48974,7 +59638,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 24, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 12, + "teamLoss": 1, "usesPoints": false, }, }, @@ -49052,7 +59720,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 11, "receivingYardsAfterCatch": 7, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 5.5, + "teamLoss": 4, + "teamWin": 9, "usesPoints": false, }, }, @@ -49185,6 +59857,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -49368,7 +60042,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYardsPerReception": 3.5, "rushingAttempts": 5, "rushingYards": 25, + "rushingYardsPer10Yards": 2, + "rushingYardsPer20Yards": 1, + "rushingYardsPer25Yards": 1, + "rushingYardsPer5Yards": 5, "rushingYardsPerAttempt": 5, + "teamLoss": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -49475,6 +60155,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rushingAttempts": 3, "rushingYards": 4, "rushingYardsPerAttempt": 1.33333333, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -49652,7 +60334,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 35, "receivingYardsAfterCatch": 23, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 6, "receivingYardsPerReception": 17.5, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -49696,7 +60384,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 6, "receivingYardsAfterCatch": 2, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, + "teamLoss": 4, + "teamWin": 3, "usesPoints": false, }, }, @@ -49768,6 +60459,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "kickoffReturnYards": 19, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -49946,6 +60639,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 2, "defensiveTotalTackles": 2, "kickoffReturnYards": 33, + "teamLoss": 2, "usesPoints": false, }, }, @@ -49984,12 +60678,18 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingCompletionPercentage": 0.25, "passingCompletions": 2, "passingIncompletions": 6, + "passingIncompletionsPer5Incompletions": 1, "passingInterceptions": 2, "passingYards": 33, + "passingYardsPer10Yards": 3, + "passingYardsPer20Yards": 1, + "passingYardsPer25Yards": 1, + "passingYardsPer5Yards": 6, "rushingAttempts": 2, "rushingYards": -2, "rushingYardsPerAttempt": -1, - "turnovers": 2, + "teamLoss": 1, + "totalTurnovers": 2, "usesPoints": false, }, }, @@ -50027,6 +60727,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rushingAttempts": 1, "rushingYards": 1, "rushingYardsPerAttempt": 1, + "teamLoss": 2, "usesPoints": false, }, }, @@ -50068,6 +60769,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYards": 4, "receivingYardsAfterCatch": 3, "receivingYardsPerReception": 4, + "teamLoss": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -50319,10 +61022,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 6, "receivingYardsAfterCatch": 12, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3, "rushingAttempts": 4, "rushingYards": 15, + "rushingYardsPer5Yards": 2, "rushingYardsPerAttempt": 3.75, + "teamLoss": 5, "usesPoints": false, }, }, @@ -50397,14 +61103,22 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 7.057676026, "receivingTargets": 10.21721409, "receivingTouchdowns": 0.452955045, - "receivingTouchdowns40Plus": 0.085409443, - "receivingTouchdowns50Plus": 0.055815071, + "receivingTouchdowns40Plus": 0.032370424, + "receivingTouchdowns50Plus": 0.001001147, "receivingYards": 67.70619181, + "receivingYardsPer10Yards": 6, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 13, "receivingYardsPerReception": 9.593270016, - "turnovers": 0.033407156, + "receptionsPer5Receptions": 1, + "totalTurnovers": 0.033407156, "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -50577,9 +61291,23 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptFieldGoalsFromUnder40": 2, "attemptedExtraPoints": 1, "attemptedFieldGoals": 2, + "fieldGoalAttemptedYards": 67, + "fieldGoalAttemptedYardsPer10Yards": 6, + "fieldGoalAttemptedYardsPer20Yards": 3, + "fieldGoalAttemptedYardsPer25Yards": 2, + "fieldGoalAttemptedYardsPer50Yards": 1, + "fieldGoalAttemptedYardsPer5Yards": 13, + "fieldGoalMadeYards": 67, + "fieldGoalMadeYardsPer10Yards": 6, + "fieldGoalMadeYardsPer20Yards": 3, + "fieldGoalMadeYardsPer25Yards": 2, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 13, "madeExtraPoints": 1, "madeFieldGoals": 2, "madeFieldGoalsFromUnder40": 2, + "teamLoss": 1, + "teamPointsScored": 7, "usesPoints": false, }, }, @@ -50619,15 +61347,19 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.859803112, "receivingTargets": 2.76440293, "receivingTouchdowns": 0.169494758, - "receivingTouchdowns40Plus": 0.090567923, - "receivingTouchdowns50Plus": 0.059186138, + "receivingTouchdowns40Plus": 0.010710776, + "receivingTouchdowns50Plus": 0.000331261, "receivingYards": 18.86139174, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 10.14160672, - "turnovers": 0.011978816, + "totalTurnovers": 0.011978816, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 3, + "teamLoss": 6, + "teamWin": 7, "usesPoints": false, }, }, @@ -50664,6 +61396,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -50737,6 +61471,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -50774,6 +61509,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -50848,7 +61584,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 4, "receivingYards": 13, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 6.5, + "teamLoss": 4, + "teamWin": 2, "usesPoints": false, }, }, @@ -50886,11 +61625,31 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "attemptFieldGoalsFromUnder40": 4, "attemptedExtraPoints": 1, "attemptedFieldGoals": 4, + "fieldGoalAttemptedYards": 130, + "fieldGoalAttemptedYardsPer100Yards": 1, + "fieldGoalAttemptedYardsPer10Yards": 13, + "fieldGoalAttemptedYardsPer20Yards": 6, + "fieldGoalAttemptedYardsPer25Yards": 5, + "fieldGoalAttemptedYardsPer50Yards": 2, + "fieldGoalAttemptedYardsPer5Yards": 26, + "fieldGoalMadeYards": 95, + "fieldGoalMadeYardsPer10Yards": 9, + "fieldGoalMadeYardsPer20Yards": 4, + "fieldGoalMadeYardsPer25Yards": 3, + "fieldGoalMadeYardsPer50Yards": 1, + "fieldGoalMadeYardsPer5Yards": 19, + "fieldGoalMissedYards": 35, + "fieldGoalMissedYardsPer10Yards": 3, + "fieldGoalMissedYardsPer20Yards": 1, + "fieldGoalMissedYardsPer25Yards": 1, + "fieldGoalMissedYardsPer5Yards": 7, "madeExtraPoints": 1, "madeFieldGoals": 3, "madeFieldGoalsFromUnder40": 3, "missedFieldGoals": 1, "missedFieldGoalsFromUnder40": 1, + "teamLoss": 1, + "teamPointsScored": 10, "usesPoints": false, }, }, @@ -51032,7 +61791,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "kickoffReturnYards": 170, "lostFumbles": 1, "puntReturnYards": 18, - "turnovers": 1, + "teamLoss": 2, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -51099,6 +61860,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 2, + "teamWin": 3, "usesPoints": false, }, }, @@ -51413,6 +62176,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 5, "usesPoints": false, }, }, @@ -51624,6 +62389,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -51703,7 +62469,14 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 74, "receivingYardsAfterCatch": 68, + "receivingYardsPer10Yards": 7, + "receivingYardsPer20Yards": 3, + "receivingYardsPer25Yards": 2, + "receivingYardsPer50Yards": 1, + "receivingYardsPer5Yards": 14, "receivingYardsPerReception": 37, + "teamLoss": 5, + "teamWin": 2, "usesPoints": false, }, }, @@ -52161,6 +62934,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 2, "defensiveSoloTackles": 2, "defensiveTotalTackles": 4, + "teamLoss": 6, + "teamWin": 4, "usesPoints": false, }, }, @@ -52403,6 +63178,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -52539,7 +63316,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 10, "receivingYards": 45, "receivingYardsAfterCatch": 11, + "receivingYardsPer10Yards": 2, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 6.42857143, + "teamLoss": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -52650,7 +63431,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 18, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 9, + "teamLoss": 2, + "teamWin": 3, "usesPoints": false, }, }, @@ -52691,7 +63476,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 5, "receivingYardsAfterCatch": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 5, + "teamLoss": 1, "usesPoints": false, }, }, @@ -52732,7 +63519,13 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "passingIncompletions": 2, "passingInterceptions": 1, "passingYards": 59, - "turnovers": 1, + "passingYardsPer10Yards": 5, + "passingYardsPer20Yards": 2, + "passingYardsPer25Yards": 2, + "passingYardsPer50Yards": 1, + "passingYardsPer5Yards": 11, + "teamLoss": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -52775,7 +63568,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 6, "receivingYards": 16, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -52846,6 +63643,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -52886,15 +63685,21 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 3.614211862, "receivingTargets": 5.33848857, "receivingTouchdowns": 0.271686558, - "receivingTouchdowns40Plus": 0.108595766, - "receivingTouchdowns50Plus": 0.070967333, + "receivingTouchdowns40Plus": 0.019938795, + "receivingTouchdowns50Plus": 0.000616664, "receivingYards": 37.50557565, + "receivingYardsPer10Yards": 3, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 7, "receivingYardsPerReception": 10.37724878, - "turnovers": 0.023278797, + "totalTurnovers": 0.023278797, "usesPoints": false, }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -52967,6 +63772,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "puntReturnYards": 25, + "teamWin": 1, "usesPoints": false, }, }, @@ -53075,6 +63881,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingYards": 2, "receivingYardsAfterCatch": 2, "receivingYardsPerReception": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -53388,6 +64195,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveTotalTackles": 2, + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -53424,6 +64233,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -53701,6 +64511,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -53778,7 +64589,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 6, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 6, + "teamLoss": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -53993,6 +64807,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 1, "defensiveSoloTackles": 3, "defensiveTotalTackles": 4, + "teamLoss": 1, + "teamWin": 5, "usesPoints": false, }, }, @@ -54032,14 +64848,17 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1.839086308, "receivingTargets": 2.76440293, "receivingTouchdowns": 0.165463309, - "receivingTouchdowns40Plus": 0.07239877, - "receivingTouchdowns50Plus": 0.047312596, + "receivingTouchdowns40Plus": 0.010206059, + "receivingTouchdowns50Plus": 0.000315651, "receivingYards": 17.90205995, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 9.734214139, - "turnovers": 0.012436033, + "totalTurnovers": 0.012436033, "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -54148,7 +64967,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 2, "receivingYards": 6, "receivingYardsAfterCatch": 0, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 3, + "teamLoss": 2, + "teamWin": 1, "usesPoints": false, }, }, @@ -54221,6 +65043,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -54543,7 +65366,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 15, "receivingYardsAfterCatch": 1, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 15, + "teamLoss": 1, + "teamWin": 4, "usesPoints": false, }, }, @@ -54965,7 +65792,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTouchdowns": 1, "receivingYards": 7, "receivingYardsAfterCatch": 1, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamPointsScored": 6, + "teamWin": 2, "usesPoints": false, }, }, @@ -55006,6 +65836,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "defensiveAssistedTackles": 2, "defensiveSoloTackles": 2, "defensiveTotalTackles": 4, + "teamWin": 3, "usesPoints": false, }, }, @@ -55154,7 +65985,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 14, "receivingYardsAfterCatch": 4, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 7, + "teamLoss": 2, "usesPoints": false, }, }, @@ -55195,7 +66029,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 1, "receivingTargets": 1, "receivingYards": 7, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamLoss": 2, "usesPoints": false, }, }, @@ -55518,6 +66354,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 3, "receivingYardsPerReception": 3, + "teamLoss": 1, + "teamWin": 1, "usesPoints": false, }, }, @@ -56114,6 +66952,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -56720,6 +67559,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveSoloTackles": 2, "defensiveTotalTackles": 2, + "teamWin": 2, "usesPoints": false, }, }, @@ -56826,7 +67666,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveSoloTackles": 7, + "defensiveTacklesPer3Tackles": 1, "defensiveTotalTackles": 9, + "teamLoss": 8, + "teamWin": 6, "usesPoints": false, }, }, @@ -56931,6 +67774,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -57007,7 +67852,11 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 4, "receivingYards": 21, "receivingYardsAfterCatch": 6, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer5Yards": 4, "receivingYardsPerReception": 10.5, + "teamWin": 3, "usesPoints": false, }, }, @@ -57181,6 +68030,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 4, "usesPoints": false, }, }, @@ -57632,6 +68482,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -57702,7 +68553,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "rushingAttempts": 3, "rushingYards": 8, + "rushingYardsPer5Yards": 1, "rushingYardsPerAttempt": 2.66666667, + "teamWin": 1, "usesPoints": false, }, }, @@ -57780,7 +68633,10 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 5, "receivingYards": 17, "receivingYardsAfterCatch": 7, + "receivingYardsPer5Yards": 2, "receivingYardsPerReception": 4.25, + "teamLoss": 3, + "teamWin": 4, "usesPoints": false, }, }, @@ -57850,6 +68706,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -58027,6 +68884,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -58370,6 +69229,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 4, + "teamWin": 2, "usesPoints": false, }, }, @@ -58477,6 +69338,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -59317,6 +70180,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 2, "usesPoints": false, }, }, @@ -59495,6 +70359,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamLoss": 1, + "teamWin": 3, "usesPoints": false, }, }, @@ -59815,8 +70681,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 3, "receivingYards": 17, "receivingYardsAfterCatch": 3, + "receivingYardsPer10Yards": 1, + "receivingYardsPer5Yards": 3, "receivingYardsPerReception": 8.5, - "turnovers": 1, + "teamLoss": 2, + "teamWin": 1, + "totalTurnovers": 1, "usesPoints": false, }, }, @@ -60068,7 +70938,9 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingTargets": 1, "receivingYards": 7, "receivingYardsAfterCatch": 4, + "receivingYardsPer5Yards": 1, "receivingYardsPerReception": 7, + "teamLoss": 4, "usesPoints": false, }, }, @@ -60904,6 +71776,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -61192,6 +72065,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveAssistedTackles": 2, "defensiveTotalTackles": 2, + "teamLoss": 6, + "teamWin": 6, "usesPoints": false, }, }, @@ -61821,6 +72696,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -61966,7 +72842,12 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "receivingReceptions": 2, "receivingTargets": 2, "receivingYards": 25, + "receivingYardsPer10Yards": 2, + "receivingYardsPer20Yards": 1, + "receivingYardsPer25Yards": 1, + "receivingYardsPer5Yards": 5, "receivingYardsPerReception": 12.5, + "teamWin": 1, "usesPoints": false, }, }, @@ -62074,6 +72955,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "rawStats": PlayerStats { "defensiveSoloTackles": 1, "defensiveTotalTackles": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -62111,6 +72993,8 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "kickoffReturnYards": 15, + "teamLoss": 6, + "teamWin": 1, "usesPoints": false, }, }, @@ -62147,6 +73031,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -62185,6 +73070,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 2, "usesPoints": false, }, }, @@ -62222,6 +73108,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -62259,6 +73146,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -62296,6 +73184,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -62331,6 +73220,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamLoss": 1, "usesPoints": false, }, }, @@ -62370,6 +73260,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated }, "rawStats": PlayerStats { "receivingTargets": 1, + "teamWin": 2, "usesPoints": false, }, }, @@ -62403,6 +73294,7 @@ exports[`2022 season client integration tests getFreeAgents returns a populated "usesPoints": false, }, "rawStats": PlayerStats { + "teamWin": 1, "usesPoints": false, }, }, @@ -62506,6 +73398,7 @@ League { "lostFumbles": -2, "madeExtraPoints": 1, "madeFieldGoalsFrom40To49": 4, + "madeFieldGoalsFrom50To59": 5, "madeFieldGoalsFrom60Plus": 5, "madeFieldGoalsFromUnder40": 3, "missedExtraPoints": -1, From d96f111a73a14db012e534e085a9de861875a486 Mon Sep 17 00:00:00 2001 From: Mike Kreiser Date: Sat, 4 Nov 2023 11:09:45 -0400 Subject: [PATCH 6/6] 1.9.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5c568a3..f1e2832 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "espn-fantasy-football-api", - "version": "1.8.1", + "version": "1.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "espn-fantasy-football-api", - "version": "1.8.1", + "version": "1.9.0", "license": "LGPL-3.0-only", "dependencies": { "axios": "^1.5.0", diff --git a/package.json b/package.json index 2246a39..80ff699 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "espn-fantasy-football-api", - "version": "1.8.1", + "version": "1.9.0", "description": "A Javascript API to connect to ESPN's fantasy football API", "main": "web.js", "files": [