playball 3.1.0 → 3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist/cli.js +31 -0
  2. package/{src/components/AllPlays.jsx → dist/components/AllPlays.js} +22 -37
  3. package/dist/components/App.js +42 -0
  4. package/dist/components/AtBat.js +42 -0
  5. package/dist/components/Bases.js +23 -0
  6. package/dist/components/Count.js +21 -0
  7. package/dist/components/FinishedGame.js +90 -0
  8. package/dist/components/Game.js +50 -0
  9. package/dist/components/GameList.js +171 -0
  10. package/{src/components/Grid.jsx → dist/components/Grid.js} +30 -33
  11. package/dist/components/HelpBar.js +16 -0
  12. package/dist/components/InningDisplay.js +12 -0
  13. package/dist/components/LineScore.js +39 -0
  14. package/dist/components/LiveGame.js +51 -0
  15. package/{src/components/LoadingSpinner.jsx → dist/components/LoadingSpinner.js} +8 -24
  16. package/dist/components/Matchup.js +40 -0
  17. package/dist/components/PreviewGame.js +54 -0
  18. package/dist/components/Standings.js +70 -0
  19. package/{src → dist}/config.js +21 -62
  20. package/dist/features/games.js +100 -0
  21. package/{src → dist}/features/keys.js +19 -10
  22. package/dist/features/schedule.js +43 -0
  23. package/dist/features/standings.js +43 -0
  24. package/{src → dist}/hooks/useKey.js +3 -5
  25. package/dist/logger.js +11 -0
  26. package/dist/main.js +20 -0
  27. package/{src → dist}/package.js +2 -4
  28. package/{src → dist}/screen.js +2 -8
  29. package/dist/store/index.js +19 -0
  30. package/{src → dist}/style/index.js +2 -2
  31. package/{src → dist}/utils.js +4 -5
  32. package/package.json +5 -1
  33. package/.eslintrc.json +0 -33
  34. package/CODE_OF_CONDUCT.md +0 -76
  35. package/demo.cast +0 -95
  36. package/demo.gif +0 -0
  37. package/src/cli.js +0 -46
  38. package/src/components/App.jsx +0 -43
  39. package/src/components/AtBat.jsx +0 -41
  40. package/src/components/Bases.jsx +0 -23
  41. package/src/components/Count.jsx +0 -25
  42. package/src/components/FinishedGame.jsx +0 -76
  43. package/src/components/Game.jsx +0 -60
  44. package/src/components/GameList.jsx +0 -169
  45. package/src/components/HelpBar.jsx +0 -19
  46. package/src/components/InningDisplay.jsx +0 -19
  47. package/src/components/LineScore.jsx +0 -52
  48. package/src/components/LiveGame.jsx +0 -47
  49. package/src/components/Matchup.jsx +0 -41
  50. package/src/components/PreviewGame.jsx +0 -54
  51. package/src/components/Standings.jsx +0 -81
  52. package/src/features/games.js +0 -166
  53. package/src/features/schedule.js +0 -60
  54. package/src/features/standings.js +0 -61
  55. package/src/logger.js +0 -19
  56. package/src/main.js +0 -27
  57. package/src/store/index.js +0 -19
@@ -0,0 +1,100 @@
1
+ import axios from 'axios';
2
+ import reduxjsToolkit from '@reduxjs/toolkit';
3
+ const {
4
+ createAsyncThunk,
5
+ createSlice,
6
+ createSelector
7
+ } = reduxjsToolkit;
8
+ import jsonpatch from 'json-patch';
9
+ const initialState = {
10
+ loading: false,
11
+ fullUpdateRequired: false,
12
+ error: null,
13
+ selectedId: null,
14
+ games: {}
15
+ };
16
+ export const fetchGame = createAsyncThunk('games/fetch', async ({
17
+ id,
18
+ start
19
+ }) => {
20
+ const diffParams = start ? `/diffPatch?startTimecode=${start}` : '';
21
+ const url = `https://statsapi.mlb.com/api/v1.1/game/${id}/feed/live${diffParams}`;
22
+ const response = await axios.get(url);
23
+ return response.data;
24
+ });
25
+ export const gamesSlice = createSlice({
26
+ name: 'games',
27
+ initialState,
28
+ reducers: {
29
+ setSelectedId(state, action) {
30
+ state.selectedId = action.payload;
31
+ }
32
+ },
33
+ extraReducers: builder => {
34
+ builder.addCase(fetchGame.pending, state => {
35
+ state.loading = true;
36
+ });
37
+ builder.addCase(fetchGame.fulfilled, (state, action) => {
38
+ const id = state.selectedId;
39
+ let game = state.games[id];
40
+ let patchError = false;
41
+ if (Array.isArray(action.payload)) {
42
+ action.payload.forEach(obj => {
43
+ if (patchError) {
44
+ return;
45
+ }
46
+ try {
47
+ jsonpatch.apply(game || {}, obj.diff);
48
+ } catch (e) {
49
+ patchError = true;
50
+ return;
51
+ }
52
+ });
53
+ } else {
54
+ game = action.payload;
55
+ }
56
+ if (patchError) {
57
+ state.fullUpdateRequired = true;
58
+ } else {
59
+ state.fullUpdateRequired = false;
60
+ state.error = null;
61
+ state.games[id] = game;
62
+ }
63
+ state.loading = false;
64
+ });
65
+ builder.addCase(fetchGame.rejected, (state, action) => {
66
+ state.fullUpdateRequired = true;
67
+ state.loading = false;
68
+ state.error = action.error;
69
+ });
70
+ }
71
+ });
72
+ export const {
73
+ setSelectedId
74
+ } = gamesSlice.actions;
75
+ const gamesRoot = state => state.games;
76
+ export const selectLoading = createSelector(gamesRoot, root => root.loading);
77
+ export const selectError = createSelector(gamesRoot, root => root.error);
78
+ export const selectFullUpdateRequired = createSelector(gamesRoot, root => root.fullUpdateRequired);
79
+ export const selectSelectedId = createSelector(gamesRoot, root => root.selectedId);
80
+ export const selectGame = createSelector([gamesRoot, selectSelectedId], (root, id) => root.games[id]);
81
+ const selectLiveData = createSelector(selectGame, game => game.liveData);
82
+ const selectPlays = createSelector(selectLiveData, data => data.plays);
83
+ export const selectCurrentPlay = createSelector(selectPlays, plays => plays.currentPlay);
84
+ export const selectAllPlays = createSelector(selectPlays, plays => plays.allPlays);
85
+ export const selectBoxscore = createSelector(selectLiveData, data => {
86
+ var _data$boxscore;
87
+ return (_data$boxscore = data.boxscore) === null || _data$boxscore === void 0 ? void 0 : _data$boxscore.teams;
88
+ });
89
+ export const selectLineScore = createSelector(selectLiveData, data => data.linescore);
90
+ export const selectDecisions = createSelector(selectLiveData, data => data.decisions);
91
+ const selectGameData = createSelector(selectGame, game => game.gameData);
92
+ export const selectGameStatus = createSelector(selectGameData, game => game.status);
93
+ export const selectTeams = createSelector(selectGameData, gameData => gameData.teams);
94
+ export const selectVenue = createSelector(selectGameData, gameData => gameData.venue);
95
+ export const selectStartTime = createSelector(selectGameData, gameData => {
96
+ var _gameData$datetime;
97
+ return (_gameData$datetime = gameData.datetime) === null || _gameData$datetime === void 0 ? void 0 : _gameData$datetime.dateTime;
98
+ });
99
+ export const selectProbablePitchers = createSelector(selectGameData, gameData => gameData.probablePitchers);
100
+ export default gamesSlice.reducer;
@@ -1,10 +1,14 @@
1
1
  import reduxjsToolkit from '@reduxjs/toolkit';
2
- const { createSlice } = reduxjsToolkit;
3
- import screen from '../screen.js';
4
-
2
+ const {
3
+ createSlice
4
+ } = reduxjsToolkit;
5
+ import screen from "../screen.js";
5
6
  export const keysSlice = createSlice({
6
7
  name: 'keys',
7
- initialState: [{ key: 'Q', label: 'Quit' }],
8
+ initialState: [{
9
+ key: 'Q',
10
+ label: 'Quit'
11
+ }],
8
12
  reducers: {
9
13
  addKeyListener: {
10
14
  reducer: (state, action) => {
@@ -14,7 +18,9 @@ export const keysSlice = createSlice({
14
18
  },
15
19
  prepare: (key, listener, help) => {
16
20
  screen().key(key, listener);
17
- return { payload: help };
21
+ return {
22
+ payload: help
23
+ };
18
24
  }
19
25
  },
20
26
  removeKeyListener: {
@@ -28,12 +34,15 @@ export const keysSlice = createSlice({
28
34
  },
29
35
  prepare: (key, listener, help) => {
30
36
  screen().unkey(key, listener);
31
- return { payload: help };
37
+ return {
38
+ payload: help
39
+ };
32
40
  }
33
41
  }
34
42
  }
35
43
  });
36
-
37
- export const { addKeyListener, removeKeyListener } = keysSlice.actions;
38
-
39
- export default keysSlice.reducer;
44
+ export const {
45
+ addKeyListener,
46
+ removeKeyListener
47
+ } = keysSlice.actions;
48
+ export default keysSlice.reducer;
@@ -0,0 +1,43 @@
1
+ import axios from 'axios';
2
+ import reduxjsToolkit from '@reduxjs/toolkit';
3
+ const {
4
+ createAsyncThunk,
5
+ createSlice,
6
+ createSelector
7
+ } = reduxjsToolkit;
8
+ import { format } from 'date-fns';
9
+ const initialState = {
10
+ loading: false,
11
+ error: null,
12
+ data: null
13
+ };
14
+ export const fetchSchedule = createAsyncThunk('schedule/fetch', async date => {
15
+ const dateStr = format(date, 'MM/dd/yyyy');
16
+ const response = await axios.get(`http://statsapi.mlb.com/api/v1/schedule?sportId=1&hydrate=team,linescore&date=${dateStr}`);
17
+ return response.data;
18
+ });
19
+ export const scheduleSlice = createSlice({
20
+ name: 'schedule',
21
+ initialState,
22
+ reducers: {},
23
+ extraReducers: builder => {
24
+ builder.addCase(fetchSchedule.pending, state => {
25
+ state.loading = true;
26
+ });
27
+ builder.addCase(fetchSchedule.fulfilled, (state, action) => {
28
+ state.loading = false;
29
+ state.data = action.payload;
30
+ state.error = null;
31
+ });
32
+ builder.addCase(fetchSchedule.rejected, (state, action) => {
33
+ state.loading = false;
34
+ state.data = null;
35
+ state.error = action.error;
36
+ });
37
+ }
38
+ });
39
+ const scheduleSelector = state => state.schedule;
40
+ export const selectLoading = createSelector(scheduleSelector, schedule => schedule.loading);
41
+ export const selectError = createSelector(scheduleSelector, schedule => schedule.error);
42
+ export const selectData = createSelector(scheduleSelector, schedule => schedule.data);
43
+ export default scheduleSlice.reducer;
@@ -0,0 +1,43 @@
1
+ import axios from 'axios';
2
+ import reduxjsToolkit from '@reduxjs/toolkit';
3
+ const {
4
+ createAsyncThunk,
5
+ createSlice,
6
+ createSelector
7
+ } = reduxjsToolkit;
8
+ const initialState = {
9
+ loading: false,
10
+ error: null,
11
+ data: null
12
+ };
13
+ const SEASON = new Date().getFullYear();
14
+ export const fetchStandings = createAsyncThunk('standings/fetch', async () => {
15
+ const url = `https://statsapi.mlb.com/api/v1/standings?leagueId=103,104&season=${SEASON}&standingsTypes=regularSeason&hydrate=division,team`;
16
+ const response = await axios.get(url);
17
+ return response.data;
18
+ });
19
+ export const standingsSlice = createSlice({
20
+ name: 'standings',
21
+ initialState,
22
+ reducers: {},
23
+ extraReducers: builder => {
24
+ builder.addCase(fetchStandings.pending, state => {
25
+ state.loading = true;
26
+ });
27
+ builder.addCase(fetchStandings.fulfilled, (state, action) => {
28
+ state.loading = false;
29
+ state.data = action.payload;
30
+ state.error = null;
31
+ });
32
+ builder.addCase(fetchStandings.rejected, (state, action) => {
33
+ state.loading = false;
34
+ state.data = null;
35
+ state.error = action.error;
36
+ });
37
+ }
38
+ });
39
+ const standingsSelector = state => state.standings;
40
+ export const selectLoading = createSelector(standingsSelector, standings => standings.loading);
41
+ export const selectError = createSelector(standingsSelector, standings => standings.error);
42
+ export const selectData = createSelector(standingsSelector, standings => standings.data);
43
+ export default standingsSlice.reducer;
@@ -1,7 +1,6 @@
1
1
  import { useEffect } from 'react';
2
- import { useDispatch } from 'react-redux';
3
- import { addKeyListener, removeKeyListener } from '../features/keys.js';
4
-
2
+ import { useDispatch } from "react-redux/lib/alternate-renderers.js";
3
+ import { addKeyListener, removeKeyListener } from "../features/keys.js";
5
4
  function useKey(key, handler, help) {
6
5
  const dispatch = useDispatch();
7
6
  return useEffect(() => {
@@ -9,5 +8,4 @@ function useKey(key, handler, help) {
9
8
  return () => dispatch(removeKeyListener(key, handler, help));
10
9
  }, [key, handler, help, dispatch]);
11
10
  }
12
-
13
- export default useKey;
11
+ export default useKey;
package/dist/logger.js ADDED
@@ -0,0 +1,11 @@
1
+ import { fileURLToPath } from 'node:url';
2
+ import path from 'node:path';
3
+ import winston from 'winston';
4
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
5
+ winston.configure({
6
+ transports: [new winston.transports.File({
7
+ filename: path.resolve(__dirname, 'playball.log'),
8
+ format: winston.format.combine(winston.format.timestamp(), winston.format.printf(info => `[${info.timestamp}] ${info.level}: ${info.message}`))
9
+ })]
10
+ });
11
+ export default winston;
package/dist/main.js ADDED
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ import { Provider } from "react-redux/lib/alternate-renderers.js";
3
+ import raf from 'raf';
4
+ import screen from "./screen.js";
5
+ import store from "./store/index.js";
6
+ import log from "./logger.js";
7
+ import App from "./components/App.js";
8
+ export default async function startInterface() {
9
+ raf.polyfill();
10
+ process.on('uncaughtException', function (error) {
11
+ log.error('UNCAUGHT EXCEPTION\n' + JSON.stringify(error) + '\n' + error.stack);
12
+ });
13
+
14
+ // Must be imported dynamically because the import seems to have
15
+ // side effects that block other CLI commands from exiting
16
+ const reactBlessed = await import('react-blessed');
17
+ reactBlessed.render( /*#__PURE__*/React.createElement(Provider, {
18
+ store: store
19
+ }, /*#__PURE__*/React.createElement(App, null)), screen());
20
+ }
@@ -1,7 +1,5 @@
1
- import {fileURLToPath} from 'node:url';
1
+ import { fileURLToPath } from 'node:url';
2
2
  import path from 'node:path';
3
3
  import fs from 'node:fs/promises';
4
-
5
4
  const packagePath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../package.json');
6
-
7
- export default JSON.parse(await fs.readFile(packagePath));
5
+ export default JSON.parse(await fs.readFile(packagePath));
@@ -1,7 +1,5 @@
1
1
  import blessed from 'blessed';
2
-
3
2
  let screen;
4
-
5
3
  function getScreen() {
6
4
  if (screen === undefined) {
7
5
  screen = blessed.screen({
@@ -9,14 +7,10 @@ function getScreen() {
9
7
  debug: true,
10
8
  smartCSR: true,
11
9
  title: 'Playball!',
12
- handleUncaughtExceptions: false,
10
+ handleUncaughtExceptions: false
13
11
  });
14
-
15
12
  screen.key(['escape', 'q', 'C-c'], () => process.exit(0));
16
13
  }
17
-
18
14
  return screen;
19
15
  }
20
-
21
-
22
- export default getScreen;
16
+ export default getScreen;
@@ -0,0 +1,19 @@
1
+ import reduxjsToolkit from '@reduxjs/toolkit';
2
+ const {
3
+ configureStore
4
+ } = reduxjsToolkit;
5
+ import schedule from "../features/schedule.js";
6
+ import games from "../features/games.js";
7
+ import keys from "../features/keys.js";
8
+ import standings from "../features/standings.js";
9
+ export default configureStore({
10
+ reducer: {
11
+ schedule,
12
+ games,
13
+ keys,
14
+ standings
15
+ },
16
+ middleware: getDefaultMiddleware => getDefaultMiddleware({
17
+ serializableCheck: false
18
+ })
19
+ });
@@ -1,7 +1,7 @@
1
1
  export default {
2
2
  list: {
3
3
  selected: {
4
- bg: 'blue',
4
+ bg: 'blue',
5
5
  fg: 'white'
6
6
  }
7
7
  },
@@ -12,4 +12,4 @@ export default {
12
12
  inverse: true
13
13
  }
14
14
  }
15
- };
15
+ };
@@ -1,10 +1,9 @@
1
- import { get } from './config.js';
2
-
1
+ import { get } from "./config.js";
3
2
  const FAVORITES = get('favorites');
4
-
5
3
  export function teamFavoriteStar(team) {
4
+ const style = get('color.favorite-star') + '-fg';
6
5
  if (FAVORITES.includes(team.abbreviation)) {
7
- return `{${get('color.favorite-star')}-fg}★{/} `;
6
+ return `{${style}}★{/${style}} `;
8
7
  }
9
8
  return '';
10
- }
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playball",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "description": "Watch MLB games from the comfort of your terminal",
5
5
  "keywords": [
6
6
  "MLB",
@@ -21,6 +21,10 @@
21
21
  "bin": {
22
22
  "playball": "./bin/playball.js"
23
23
  },
24
+ "files": [
25
+ "bin",
26
+ "dist"
27
+ ],
24
28
  "repository": {
25
29
  "type": "git",
26
30
  "url": "https://github.com/paaatrick/playball.git"
package/.eslintrc.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "env": {
3
- "es6": true,
4
- "node": true
5
- },
6
- "extends": [
7
- "eslint:recommended",
8
- "plugin:react/recommended"
9
- ],
10
- "parserOptions": {
11
- "ecmaFeatures": {
12
- "jsx": true
13
- },
14
- "ecmaVersion": 2022,
15
- "sourceType": "module"
16
- },
17
- "plugins": [
18
- "react"
19
- ],
20
- "rules": {
21
- "indent": ["error", 2],
22
- "linebreak-style": ["error", "unix"],
23
- "quotes": ["error", "single"],
24
- "semi": ["error", "always"],
25
- "no-console": "warn"
26
- },
27
- "settings": {
28
- "react": {
29
- "pragma": "React",
30
- "version": "17.0.2"
31
- }
32
- }
33
- }
@@ -1,76 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, sex characteristics, gender identity and expression,
9
- level of experience, education, socio-economic status, nationality, personal
10
- appearance, race, religion, or sexual identity and orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at patrick.kalita@gmail.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
-
73
- [homepage]: https://www.contributor-covenant.org
74
-
75
- For answers to common questions about this code of conduct, see
76
- https://www.contributor-covenant.org/faq
package/demo.cast DELETED
@@ -1,95 +0,0 @@
1
- {"version": 2, "width": 118, "height": 36, "timestamp": 1654987630, "idle_time_limit": 2.0, "env": {"SHELL": "/bin/bash", "TERM": "xterm-256color"}}
2
- [0.159133, "o", "$ "]
3
- [1.331166, "o", "p"]
4
- [1.412778, "o", "l"]
5
- [1.564842, "o", "a"]
6
- [1.772299, "o", "y"]
7
- [2.035449, "o", "b"]
8
- [2.160659, "o", "a"]
9
- [2.261186, "o", "l"]
10
- [2.413437, "o", "l"]
11
- [2.627466, "o", "\r\n"]
12
- [3.043377, "o", "\u001b]0;Playball!\u0007\u001b[?1049h\u001b[?1h\u001b=\u001b[1;36r\u001b[?25l\u001b[1;1H\u001b[H\u001b[2J\u001b[?1002h\u001b[?1003h\u001b[?1006h"]
13
- [3.068237, "o", "\u001b7\u001b[1;1H\u001b[47;30m Saturday, June 11th, 2022 \u001b[m\u001b[19;1H\u001b[54CLoading...\u001b[36;1H\u001b[36;1H⠙\u001b[2C\u001b[7mQ\u001b[m:Quit\u001b[2C\u001b[7mC\u001b[m:Schedule\u001b[2C\u001b[7mS\u001b[m:Standings\u001b[2C\u001b[7mP\u001b[m:Prev\u001b[1CDay\u001b[2C\u001b[7mN\u001b[m:Next\u001b[1CDay\u001b[2C\u001b[7mT\u001b[m:Today\u001b8"]
14
- [3.117385, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠹\u001b8"]
15
- [3.167954, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠸\u001b8"]
16
- [3.215288, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠼\u001b8"]
17
- [3.297623, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠴\u001b8"]
18
- [3.31866, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠦\u001b8"]
19
- [3.40441, "o", "\u001b7\u001b[3;1H\u001b[3;1H\u001b(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk\u001b[4;1H\u001b[4;1Hx\u001b[1C\u001b(BTop\u001b[1C9th\u001b[14CH\u001b[2CR\u001b[2CE\u001b[8C\u001b(0x\u001b[2C\u001b(BTop\u001b[1C9th\u001b[14CH\u001b[2CR\u001b[2CE\u001b[11CBottom\u001b[1C8th\u001b[11CH\u001b[2CR\u001b[2CE\u001b[5;1H\u001b[5;1H\u001b(0x\u001b[1C\u001b(BRockies\u001b[1C(25-33)\u001b[6C1\u001b[2C8\u001b[2C0\u001b[8C\u001b(0x\u001b[2C\u001b(BPirates\u001b[1C(24-32)\u001b[6C4\u001b[2C6\u001b[2C2\u001b[11CD-backs\u001b[1C(28-32)\u001b[6C0\u001b[2C4\u001b[2C1\u001b[6;1H\u001b[6;1H\u001b(0x\u001b[1C\u001b(BPadres\u001b[1C(36-22)\u001b[7C1\u001b[2C3\u001b[2C0\u001b[8C\u001b(0x\u001b[2C\u001b(BBraves\u001b[1C(32-27)\u001b[6C10\u001b[2C8\u001b[2C0\u001b[11CPhillies\u001b[1C(29-29)\u001b[5C4\u001b[2C9\u001b[2C0\u001b[7;1H\u001b[7;1H\u001b(0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj\u001b[9;1H\u001b[9;3H\u001b(BTop\u001b[1C8th\u001b[14CH\u001b[2CR\u001b[2CE\u001b[11CBottom\u001b[1C8th\u001b[11CH\u001b[2CR\u001b[2CE\u001b[11CTop\u001b[1C8th\u001b[14CH\u001b[2CR\u001b[2CE\u001b[10;1H\u001b[10;3HBrewers\u001b[1C(33-27)\u001b[6C4\u001b[2C9\u001b[2C1\u001b[11COrioles\u001b[1C(24-35)\u001b[6C6\u001b[1C10\u001b[2C0\u001b[11CAthletics\u001b[1C(20-40)\u001b[4C8\u001b[1C11\u001b[2C1\u001b[11;1H\u001b[11;3HNationals\u001b[1C(22-38)\u001b[4C8\u001b[2C9\u001b[2C1\u001b[11CRoyals\u001b[1C(20-37)\u001b[7C3\u001b[2C6\u001b[2C1\u001b[11CGuardians\u001b[1C(28-26)\u001b[4C5\u001b[2C8\u001b[2C1\u001b[14;1H\u001b[14;3HBottom\u001b[1C8th\u001b[11CH\u001b[2CR\u001b[2CE\u001b[11CTop\u001b[1C8th\u001b[14CH\u001b[2CR\u001b[2CE\u001b[11C7:10\u001b[1CPM\u001b[15;1H\u001b[15;3HBlue\u001b[1CJays\u001b[1C(34-23)\u001b[4C0\u001b[2C7\u001b[2C1\u001b[11CMarl"]
20
- [3.404479, "o", "ins\u001b[1C(26-30)\u001b[6C4\u001b[2C4\u001b[2C2\u001b[11CRockies\u001b[1C(25-33)\u001b[16;1H\u001b[16;3HTigers\u001b[1C(23-34)\u001b[7C3\u001b[2C8\u001b[2C1\u001b[11CAstros\u001b[1C(36-22)\u001b[7C1\u001b[2C7\u001b[2C1\u001b[11CPadres\u001b[1C(36-22)\u001b[19;1H\u001b[19;3H4:15\u001b[1CPM\u001b[32C4:15\u001b[1CPM\u001b[6C \u001b[16C7:07\u001b[1CPM\u001b[20;1H\u001b[20;3HDodgers\u001b[1C(37-21)\u001b[24CCubs\u001b[1C(23-34)\u001b[27CMets\u001b[1C(39-21)\u001b[21;1H\u001b[21;3HGiants\u001b[1C(31-26)\u001b[25CYankees\u001b[1C(42-16)\u001b[24CAngels\u001b[1C(28-32)\u001b[24;1H\u001b[24;3H7:10\u001b[1CPM\u001b[32CFinal\u001b[16CH\u001b[2CR\u001b[2CE\u001b[11CFinal/10\u001b[13CH\u001b[2CR\u001b[2CE\u001b[25;1H\u001b[25;3HRed\u001b[1CSox\u001b[1C(31-28)\u001b[24CRays\u001b[1C(34-25)\u001b[9C5\u001b[1C13\u001b[2C0\u001b[11C\u001b[1mRangers (27-31) 11 15 1\u001b[m\u001b[26;1H\u001b[26;3HMariners\u001b[1C(26-32)\u001b[23C\u001b[1mTwins (35-26) 6 11 2\u001b[11C\u001b[mWhite\u001b[1CSox\u001b[1C(27-30)\u001b[4C9\u001b[1C15\u001b[2C2\u001b[29;1H\u001b[29;3HFinal\u001b[16CH\u001b[2CR\u001b[2CE\u001b[30;1H\u001b[30;3HReds\u001b[1C(20-39)\u001b[9C4\u001b[1C12\u001b[2C2\u001b[31;1H\u001b[31;3H\u001b[1mCardinals (34-26) 5 7 0\u001b[m\u001b[36;1H\u001b[36;1H⠧\u001b8"]
21
- [3.441761, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠇\u001b8"]
22
- [3.513144, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠏\u001b8"]
23
- [3.545197, "o", "\u001b7\u001b[36;1H\u001b[36;1H \u001b8"]
24
- [5.677285, "o", "\u001b7\u001b[3;1H\u001b[3;1H \u001b(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk\u001b[4;1H\u001b[4;1H\u001b(B \u001b[37C \u001b(0x\u001b[37Cx\u001b[5;1H\u001b[5;1H\u001b(B \u001b[37C \u001b(0x\u001b[37Cx\u001b[6;1H\u001b[6;1H\u001b(B \u001b[37C \u001b(0x\u001b[37Cx\u001b[7;1H\u001b[7;1H\u001b(B \u001b(0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj\u001b(B\u001b8"]
25
- [5.845659, "o", "\u001b7\u001b[3;1H\u001b[3;40H \u001b(0lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk\u001b[4;1H\u001b[4;40H\u001b(B \u001b[37C \u001b(0x\u001b[37Cx\u001b[5;1H\u001b[5;40H\u001b(B \u001b[37C \u001b(0x\u001b[37Cx\u001b[6;1H\u001b[6;40H\u001b(B \u001b[37C \u001b(0x\u001b[37Cx\u001b[7;1H\u001b[7;40H\u001b(B \u001b(0mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj\u001b(B\u001b8"]
26
- [7.016135, "o", "\u001b7\u001b[1;1H \u001b[3;1H\u001b[78C \u001b[4;1H\u001b[4;3H \u001b[1C \u001b[14C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[14C \u001b[2C \u001b[2C \u001b[9C \u001b[1C \u001b[1C \u001b[11C \u001b[2C \u001b[2C \u001b[8C \u001b[5;1H\u001b[5;3H \u001b[1C \u001b[6C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[6C \u001b[2C \u001b[2C \u001b[9C \u001b[1C \u001b[1C \u001b[6C \u001b[2C \u001b[2C \u001b[8C \u001b[6;1H\u001b[6;3H \u001b[1C \u001b[7C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[6C \u001b[2C \u001b[2C \u001b[9C \u001b[1C \u001b[1C \u001b[5C \u001b[2C \u001b[2C \u001b[8C \u001b[7;1H\u001b[7;79H \u001b[9;1H\u001b[9;3H \u001b[1C \u001b[14C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[11C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[14C \u001b[2C \u001b[2C \u001b[10;1H\u001b[10;3H \u001b[1C \u001b[6C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[6C \u001b[1C \u001b[2C \u001b[11C \u001b[1C \u001b[4C \u001b[1C \u001b[2C \u001b[11;1H\u001b[11;3H \u001b[1C \u001b[4C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[7C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[4C \u001b[2C \u001b[2C \u001b[14;1H\u001b[14;3H \u001b[1C \u001b[11C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[14C \u001b[2C"]
27
- [7.016312, "o", " \u001b[2C \u001b[11C \u001b[1C \u001b[15;1H\u001b[15;3H \u001b[1C \u001b[1C \u001b[4C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[6C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[16;1H\u001b[16;3H \u001b[1C \u001b[7C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[7C \u001b[2C \u001b[2C \u001b[11C \u001b[1C \u001b[19;1H\u001b[19;3H \u001b[1C \u001b[32C \u001b[1C \u001b[32C \u001b[1C \u001b[20;1H\u001b[20;3H \u001b[1C \u001b[24C \u001b[1C \u001b[27C \u001b[1C \u001b[21;1H\u001b[21;3H \u001b[1C \u001b[25C \u001b[1C \u001b[24C \u001b[1C \u001b[24;1H\u001b[24;3H \u001b[1C \u001b[32C \u001b[16C \u001b[2C \u001b[2C \u001b[11C \u001b[13C \u001b[2C \u001b[2C \u001b[25;1H\u001b[25;3H \u001b[1C \u001b[1C \u001b[24C \u001b[1C \u001b[9C \u001b[1C \u001b[2C \u001b[11C \u001b[26;1H\u001b[26;3H \u001b[1C \u001b[23C \u001b[11C \u001b[1C \u001b[1C \u001b[4C \u001b[1C \u001b[2C \u001b[29;1H\u001b[29;3H \u001b[16C \u001b[2C \u001b[2C \u001b[30;1H\u001b[30;3H \u001b[1C \u001b[9C \u001b[1C \u001b[2C \u001b[31;1H\u001b[31;3H \u001b[36;1H\u001b[36;1H⠙\u001b[35C \u001b[1C \u001b[2C \u001b[1C \u001b[2C \u001b8"]
28
- [7.069271, "o", "\u001b7\u001b[36;1H⠹\u001b8"]
29
- [7.120474, "o", "\u001b7\u001b[36;1H⠸\u001b8"]
30
- [7.169237, "o", "\u001b7\u001b[36;1H⠼\u001b8"]
31
- [7.220735, "o", "\u001b7\u001b[36;1H⠴\u001b8"]
32
- [7.270481, "o", "\u001b7\u001b[36;1H⠦\u001b8"]
33
- [7.320113, "o", "\u001b7\u001b[36;1H⠧\u001b8"]
34
- [7.370402, "o", "\u001b7\u001b[36;1H⠇\u001b8"]
35
- [7.419372, "o", "\u001b7\u001b[36;1H⠏\u001b8"]
36
- [7.469781, "o", "\u001b7\u001b[36;1H⠋\u001b8"]
37
- [7.520863, "o", "\u001b7\u001b[36;1H⠙\u001b8"]
38
- [7.571275, "o", "\u001b7\u001b[36;1H⠹\u001b8"]
39
- [7.626738, "o", "\u001b7\u001b[36;1H⠸\u001b8"]
40
- [7.669718, "o", "\u001b7\u001b[36;1H⠼\u001b8"]
41
- [7.721801, "o", "\u001b7\u001b[36;1H⠴\u001b8"]
42
- [7.7709, "o", "\u001b7\u001b[36;1H⠦\u001b8"]
43
- [7.821713, "o", "\u001b7\u001b[36;1H⠧\u001b8"]
44
- [7.873451, "o", "\u001b7\u001b[36;1H⠇\u001b8"]
45
- [7.922679, "o", "\u001b7\u001b[36;1H⠏\u001b8"]
46
- [7.972914, "o", "\u001b7\u001b[36;1H⠋\u001b8"]
47
- [8.022984, "o", "\u001b7\u001b[36;1H⠙\u001b8"]
48
- [8.072782, "o", "\u001b7\u001b[36;1H⠹\u001b8"]
49
- [8.122838, "o", "\u001b7\u001b[36;1H⠸\u001b8"]
50
- [8.17296, "o", "\u001b7\u001b[36;1H⠼\u001b8"]
51
- [8.222793, "o", "\u001b7\u001b[36;1H⠴\u001b8"]
52
- [8.272494, "o", "\u001b7\u001b[36;1H⠦\u001b8"]
53
- [8.324117, "o", "\u001b7\u001b[36;1H⠧\u001b8"]
54
- [8.375222, "o", "\u001b7\u001b[36;1H⠇\u001b8"]
55
- [8.423489, "o", "\u001b7\u001b[36;1H⠏\u001b8"]
56
- [8.471642, "o", "\u001b7\u001b[36;1H⠋\u001b8"]
57
- [8.522495, "o", "\u001b7\u001b[36;1H⠙\u001b8"]
58
- [8.572956, "o", "\u001b7\u001b[36;1H⠹\u001b8"]
59
- [8.62592, "o", "\u001b7\u001b[36;1H⠸\u001b8"]
60
- [8.675946, "o", "\u001b7\u001b[36;1H⠼\u001b8"]
61
- [8.726318, "o", "\u001b7\u001b[36;1H⠴\u001b8"]
62
- [8.863595, "o", "\u001b7\u001b[1;1H\u001b[6CB:\u001b[1C\u001b[32m● ○ ○ ○ \u001b[16C\u001b[m\u001b[33m\u001b(0`\u001b[31C\u001b[m\u001b(B1\u001b[2C2\u001b[2C3\u001b[2C4\u001b[2C5\u001b[2C6\u001b[2C7\u001b[2C8\u001b[2C9\u001b[3C\u001b[1mR\u001b[2C\u001b[mH\u001b[2CE\u001b[2;1H\u001b[2;3H8\u001b[3CS:\u001b[1C\u001b[31m● ○ ○ \u001b[16C\u001b[m◇\u001b[3C◇\u001b[25CARI\u001b[1C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[4C\u001b[1m 0\u001b[2C\u001b[m4\u001b[2C1\u001b[3;1H\u001b[3;3H▼\u001b[3CO:\u001b[1C\u001b[31m○ ○ ○ \u001b[46C\u001b[mPHI\u001b[1C1\u001b[2C2\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C0\u001b[2C1\u001b[4C\u001b[1m 4\u001b[2C\u001b[m9\u001b[2C0\u001b[4;1H\u001b[4;1H\u001b(0qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq\u001b[5;1H\u001b[1C\u001b(BARI\u001b[1CPitching:\u001b[1C\u001b[1mCaleb Smith\u001b[1C\u001b[m1.0\u001b[1CIP,\u001b[1C17\u001b[1CP,\u001b[1C5.81\u001b[1CERA\u001b[10C\u001b(0x\u001b[1C\u001b[1m\u001b(B[BOTTOM 8]\u001b[45C\u001b[m\u001b[7;37m \u001b[m\u001b[6;1H\u001b[6;2HPHI\u001b[1CAt\u001b[1CBat:\u001b[3C\u001b[1mJ.T. Realmuto\u001b[1C\u001b[m0-2,\u001b[1C.239\u001b[1CAVG,\u001b[1C3\u001b[1CHR\u001b[11C\u001b(0x\u001b[1C\u001b[34m\u001b(B[Double]\u001b[1C\u001b[mNick\u001b[1CCastellanos\u001b[1Cdoubles\u001b[1C(14)\u001b[1Con\u001b[1Ca\u001b[1Cline\u001b[1Cdrive\u001b[7;1H\u001b[7;60H\u001b(0x\u001b[1C\u001b(Bto\u001b[1Cright\u001b[1Cfielder\u001b[1CJordan\u001b[1CLuplow.\u001b[3CBryce\u001b[1CHarper\u001b[1Cscores.\u001b[8;1H\u001b[8;2H[Ball]\u001b[1C92.3\u001b[1CMPH\u001b[1CFour-Seam\u001b[1CFastball\u001b[20C1-1\u001b[1C\u001b(0x\u001b[1C\u001b[1;47;3"]
63
- [8.863739, "o", "0m\u001b(B ARI 0 - PHI 4 \u001b[m\u001b[9;1H\u001b[9;2H[Swinging\u001b[1CStrike]\u001b[1C82.9\u001b[1CMPH\u001b[1CChangeup\u001b[19C0-1\u001b[1C\u001b(0x\u001b[1C\u001b[34m\u001b(B[Single]\u001b[1C\u001b[mBryce\u001b[1CHarper\u001b[1Csingles\u001b[1Con\u001b[1Ca\u001b[1Cground\u001b[1Cball\u001b[1Cto\u001b[10;1H\u001b[10;60H\u001b(0x\u001b[1C\u001b(Bcenter\u001b[1Cfielder\u001b[1CAlek\u001b[1CThomas.\u001b[11;1H\u001b[11;60H\u001b(0x\u001b[1C\u001b(B[Defensive\u001b[1CSwitch]\u001b[1CCarson\u001b[1CKelly\u001b[1Cremains\u001b[1Cin\u001b[1Cthe\u001b[1Cgame\u001b[1Cas\u001b[12;1H\u001b[12;60H\u001b(0x\u001b[1C\u001b(Bthe\u001b[1Ccatcher.\u001b[13;1H\u001b[13;60H\u001b(0x\u001b[1C\u001b(B[Defensive\u001b[1CSwitch]\u001b[1CJordan\u001b[1CLuplow\u001b[1Cremains\u001b[1Cin\u001b[1Cthe\u001b[1Cgame\u001b[14;1H\u001b[14;60H\u001b(0x\u001b[1C\u001b(Bas\u001b[1Cthe\u001b[1Cright\u001b[1Cfielder.\u001b[15;1H\u001b[15;60H\u001b(0x\u001b[16;1H\u001b[16;60Hx\u001b[1C\u001b[1m\u001b(B[TOP 8]\u001b[m\u001b[17;1H\u001b[17;60H\u001b(0x\u001b[1C\u001b[37m\u001b(B[Pop Out]\u001b[1C\u001b[mJordan\u001b[1CLuplow\u001b[1Cpops\u001b[1Cout\u001b[1Cto\u001b[1Ccatcher\u001b[1CJ.\u001b[2CT.\u001b[18;1H\u001b[18;60H\u001b(0x\u001b[1C\u001b(BRealmuto\u001b[1Cin\u001b[1Cfoul\u001b[1Cterritory.\u001b[1C\u001b[1m3 out\u001b[m\u001b[19;1H\u001b[19;60H\u001b(0x\u001b[1C\u001b(B[Offensive\u001b[1CSubstitution]\u001b[1COffensive\u001b[1CSubstitution:\u001b[20;1H\u001b[20;60H\u001b(0x\u001b[1C\u001b(BPinch-hitter\u001b[1CJordan\u001b[1CLuplow\u001b[1Creplaces\u001b[1CPavin\u001b[1CSmith.\u001b[21;1H\u001b[21;60H\u001b(0x\u001b[1C\u001b[31m\u001b(B[Strikeout]\u001b[1C\u001b[mDaulton\u001b[1CVar"]
64
- [8.863817, "o", "sho\u001b[1Ccalled\u001b[1Cout\u001b[1Con\u001b[1Cstrikes.\u001b[1C\u001b[1m2 \u001b[m\u001b[22;1H\u001b[22;60H\u001b(0x\u001b[1C\u001b[1m\u001b(Bout\u001b[m\u001b[23;1H\u001b[23;60H\u001b(0x\u001b[1C\u001b[37m\u001b(B[Flyout]\u001b[1C\u001b[mCarson\u001b[1CKelly\u001b[1Cflies\u001b[1Cout\u001b[1Cto\u001b[1Cright\u001b[1Cfielder\u001b[1CNick\u001b[24;1H\u001b[24;60H\u001b(0x\u001b[1C\u001b(BCastellanos.\u001b[1C\u001b[1m1 out\u001b[m\u001b[25;1H\u001b[25;60H\u001b(0x\u001b[1C\u001b(B[Offensive\u001b[1CSubstitution]\u001b[1COffensive\u001b[1CSubstitution:\u001b[26;1H\u001b[26;60H\u001b(0x\u001b[1C\u001b(BPinch-hitter\u001b[1CCarson\u001b[1CKelly\u001b[1Creplaces\u001b[1CJose\u001b[1CHerrera.\u001b[27;1H\u001b[27;60H\u001b(0x\u001b[1C\u001b(B[Pitching\u001b[1CSubstitution]\u001b[1CPitching\u001b[1CChange:\u001b[1CBrad\u001b[1CHand\u001b[28;1H\u001b[28;60H\u001b(0x\u001b[1C\u001b(Breplaces\u001b[1CAndrew\u001b[1CBellatti.\u001b[29;1H\u001b[29;60H\u001b(0x\u001b[30;1H\u001b[30;60Hx\u001b[1C\u001b[1m\u001b(B[BOTTOM 7]\u001b[m\u001b[31;1H\u001b[31;60H\u001b(0x\u001b[1C\u001b[37m\u001b(B[Flyout]\u001b[1C\u001b[mRhys\u001b[1CHoskins\u001b[1Cflies\u001b[1Cout\u001b[1Cto\u001b[1Cleft\u001b[1Cfielder\u001b[1CDavid\u001b[32;1H\u001b[32;60H\u001b(0x\u001b[1C\u001b(BPeralta.\u001b[1C\u001b[1m3 out\u001b[m\u001b[33;1H\u001b[33;60H\u001b(0x\u001b[1C\u001b[37m\u001b(B[Flyout]\u001b[1C\u001b[mKyle\u001b[1CSchwarber\u001b[1Cflies\u001b[1Cout\u001b[1Cto\u001b[1Cleft\u001b[1Cfielder\u001b[34;1H\u001b[34;60H\u001b(0x\u001b[1C\u001b(BDavid\u001b[1CPeralta.\u001b[1C\u001b[1m2 out\u001b[m\u001b[35;1H\u001b[35;60H\u001b(0x\u001b[1C\u001b[37m\u001b(B[Flyout]\u001b[1C\u001b[mBryson\u001b[1CStott\u001b[1C"]
65
- [8.863918, "o", "flies\u001b[1Cout\u001b[1Cto\u001b[1Cleft\u001b[1Cfielder\u001b[1CDavid\u001b[36;1H\u001b[36;1H⠧\u001b8"]
66
- [8.924124, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠇\u001b8"]
67
- [8.9612, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠏\u001b8"]
68
- [9.007753, "o", "\u001b7\u001b[36;1H\u001b[36;1H \u001b8"]
69
- [12.88646, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠙\u001b8"]
70
- [12.926627, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠹\u001b8"]
71
- [12.963286, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠸\u001b8"]
72
- [13.012915, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠼\u001b8"]
73
- [13.067279, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠴\u001b8"]
74
- [13.120957, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠦\u001b8"]
75
- [13.166379, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠧\u001b8"]
76
- [13.218225, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠇\u001b8"]
77
- [13.26743, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠏\u001b8"]
78
- [13.315387, "o", "\u001b7\u001b[36;1H\u001b[36;1H \u001b8"]
79
- [15.120313, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠙\u001b8"]
80
- [15.166934, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠹\u001b8"]
81
- [15.219901, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠸\u001b8"]
82
- [15.28849, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠼\u001b8"]
83
- [15.319905, "o", "\u001b7\u001b[2;1H\u001b[2;12H\u001b[31m●\u001b[m\u001b[5;1H\u001b[5;37H8\u001b[8;1H\u001b[8;3HFou\u001b[3C83\u001b[1C8\u001b[5CChangeup \u001b[1C \u001b[22C2\u001b[9;1H\u001b[9;3HBall] 92.3 MPH Four-Seam Fastball \u001b[19C1\u001b[10;1H\u001b[10;2H[Swinging\u001b[1CStrike]\u001b[1C82.9\u001b[1CMPH\u001b[1CChangeup\u001b[19C0-1\u001b[36;1H\u001b[36;1H⠴\u001b8"]
84
- [15.366276, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠦\u001b8"]
85
- [15.410643, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠧\u001b8"]
86
- [15.468101, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠇\u001b8"]
87
- [15.52299, "o", "\u001b7\u001b[36;1H\u001b[36;1H⠏\u001b8"]
88
- [15.568221, "o", "\u001b7\u001b[36;1H\u001b[36;1H \u001b8"]
89
- [19.074182, "o", "\u001b[?1l\u001b>"]
90
- [19.074493, "o", "\u001b[?12l\u001b[?25h"]
91
- [19.078092, "o", "\u001b[H\u001b[2J"]
92
- [19.078282, "o", "\u001b[?1002l\u001b[?1003l\u001b[?1006l"]
93
- [19.078387, "o", "\u001b[?1049l"]
94
- [19.093955, "o", "$ "]
95
- [19.677325, "o", "exit\r\n"]
package/demo.gif DELETED
Binary file