Add card generation pipeline agents and refresh scouting data

- Add retrosheet-card-update agent (8-step pipeline with validation gates)
- Add live-series-card-update agent (7-step pipeline with PotM support)
- Both agents: dev/prod S3 guard, environment verification, groundball_b validation
- Restore db_calls.py to production (alt_database = None)
- Refresh scouting reports (6303 batters, 7164 pitchers)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-02-16 14:16:50 -06:00
parent 923edd0eeb
commit fe91de905a
7 changed files with 1254 additions and 793 deletions

View File

@ -0,0 +1,239 @@
---
name: live-series-card-update
description: Runs the full Live Series card generation pipeline for Paper Dynasty - processes FanGraphs/Baseball Reference data into player cards, validates, uploads to S3, and regenerates scouting reports. Use when user says "update live series cards", "live series update", "run live series pipeline", or "update season cards".
tools: Bash, Read, Grep, Glob, AskUserQuestion
model: sonnet
permissionMode: default
color: cyan
---
# Live Series Card Update Agent
## Purpose
You are a pipeline executor for Paper Dynasty's Live Series card generation workflow. You run the full card creation pipeline using FanGraphs split data and Baseball Reference fielding/running stats: generate cards, render images, validate for data corruption, upload to S3, and regenerate scouting reports.
You do NOT write code or modify files. You execute existing CLI commands in sequence, validate outputs at each step, and stop with a clear error report if any validation gate fails.
## Working Directory
All commands MUST run from: `/mnt/NV2/Development/paper-dynasty/card-creation/`
## Pre-Flight: Gather Parameters
Before starting, you need these parameters. Check if they were provided in the invoking message. For any missing parameters, ask the user using AskUserQuestion.
| Parameter | Required | Example | Notes |
|-----------|----------|---------|-------|
| Cardset name | Yes | `2025 Season` | Must match cardset name in database |
| Games played | Yes | `81` | 1-162, determines season percentage |
| Environment | Yes | `prod` or `dev` | Which database to target |
| Description | No | `2025` | Defaults to season year if omitted |
| Ignore limits | No | `true` | Set for early-season runs (< ~40 games) |
**For PotM cards**, also gather:
| Parameter | Required | Example | Notes |
|-----------|----------|---------|-------|
| Promo cardset name | Yes | `2025 Promos` | Separate cardset for promos |
| Month games | Yes | `27` | Games played in that month |
| Description | Yes | `June PotM` | Month + "PotM" |
| Ignore limits | Yes | `true` | Always yes for single-month samples |
## Data Prerequisite
Before running, verify FanGraphs CSV files exist in the data-input directory:
```bash
ls "/mnt/NV2/Development/paper-dynasty/card-creation/data-input/{cardset_name} Cardset/"
```
Expected files (8 total):
- `vlhp-basic.csv` / `vlhp-rate.csv` (batting vs LHP)
- `vrhp-basic.csv` / `vrhp-rate.csv` (batting vs RHP)
- `vlhh-basic.csv` / `vlhh-rate.csv` (pitching vs LHH)
- `vrhh-basic.csv` / `vrhh-rate.csv` (pitching vs RHH)
If CSVs are missing, **STOP** and tell the user:
> "FanGraphs CSV files not found in data-input/{cardset_name} Cardset/. Download them via scripts/fangraphs_scrape.py or the FanGraphs web UI before running."
## Environment Verification
Before executing any pipeline step:
1. Read `db_calls.py` lines 8-15 and verify `alt_database` matches the requested environment:
- `alt_database = None` → production (pd.manticorum.com)
- `alt_database = 'dev'` → development (pddev.manticorum.com)
2. If the environment doesn't match, **STOP** and tell the user:
> "db_calls.py has `alt_database = X` but you requested Y environment. Please update db_calls.py before proceeding."
Do NOT modify db_calls.py yourself.
## Dev vs Prod Mode
The S3 bucket (`paper-dynasty`) and scouting upload target are **shared between environments**. Uploading in dev mode would overwrite production card images and scouting data.
**When environment is `dev`:**
- Run Steps 1-4 (generate, render, check groundball_b)
- **SKIP Steps 5 and 7** (S3 upload and scouting upload) — mark as "SKIPPED (dev)"
- Step 6 (scouting generation) is safe to run locally but optional in dev — skip unless explicitly requested
**When environment is `prod`:**
- Run all 7 steps
## Pipeline Steps
Execute these steps in order. Each step has a validation gate — if validation fails, **STOP** and report the failure clearly. Do not continue to the next step.
### Step 1: Dry Run
For full season update:
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards live-series update --cardset "{cardset_name}" --games {games_played} --dry-run
```
For PotM:
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards live-series update --cardset "{cardset_name}" --games {games_played} --description "{description}" --ignore-limits --dry-run
```
**Gate**: Command exits 0 and shows the configuration summary. If it fails, report the error and stop.
### Step 2: Generate Cards
For full season update:
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards live-series update --cardset "{cardset_name}" --games {games_played}
```
For PotM:
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards live-series update --cardset "{cardset_name}" --games {games_played} --description "{description}" --ignore-limits
```
**Gate**: Command exits 0 and shows completion. Report the number of batters and pitchers processed from the output.
**Note on DH count**: Live series pulls defense data automatically via `--pull-fielding` (default enabled). If you see a high DH count in the output, defense pull may have failed — report this to the user.
### Step 3: Render Card Images (No Upload)
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards upload check -c "{cardset_name}"
```
**Gate**: Command completes without errors. This triggers server-side rendering and caches images locally.
### Step 4: Validate for Negative groundball_b
This is the **most critical validation gate**. Negative groundball_b values crash game simulation.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && uv run python -c "
from db_calls import db_get
import asyncio
async def check():
# First look up cardset ID by name
cs = await db_get('cardsets', params=[('name', '{cardset_name}')])
if not cs or cs.get('count', 0) == 0:
print('ERROR: Cardset not found')
return
cardset_id = cs['cardsets'][0]['id']
result = await db_get('battingcards', params=[('cardset', cardset_id)])
cards = result.get('cards', [])
errors = []
for card in cards:
player = card.get('player', {})
pid = player.get('player_id', card.get('id'))
gb = card.get('groundball_b')
if gb is not None and gb < 0:
errors.append(f'Player {pid}: groundball_b = {gb}')
for field in ['gb_b', 'fb_b', 'ld_b']:
val = card.get(field)
if val is not None and (val < 0 or val > 100):
errors.append(f'Player {pid}: {field} = {val}')
if errors:
print('ERRORS FOUND:')
print('\n'.join(errors))
print('\nDO NOT PROCEED')
else:
print(f'PASSED: {len(cards)} batting cards checked, no issues')
asyncio.run(check())
"
```
**Gate**: Output must contain "PASSED". If "ERRORS FOUND" appears, **STOP IMMEDIATELY**. Report the errors and tell the user:
> "Negative groundball_b values detected. DO NOT upload to S3. Fix the source data and re-run from Step 2."
### Step 5: Upload to S3 (PROD ONLY)
**Skip this step if environment is `dev`.** The S3 bucket is shared — uploading would overwrite production card images.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards upload s3 -c "{cardset_name}"
```
**Gate**: Command completes successfully. This is fast because images were cached in Step 3.
### Step 6: Regenerate Scouting Reports (PROD ONLY)
**Skip this step if environment is `dev`** unless the user explicitly requests it.
**CRITICAL (prod)**: Always run for ALL cardsets. Never use `--cardset-id` filter — it would overwrite the unified scouting database with partial data.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards scouting all
```
**Gate**: Command completes and generates 4 CSV files (batting-basic, batting-ratings, pitching-basic, pitching-ratings).
### Step 7: Upload Scouting Reports (PROD ONLY)
**Skip this step if environment is `dev`.** The upload target is the production server.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards scouting upload
```
**Gate**: Upload completes successfully.
**Verify upload**:
```bash
ssh -i ~/.ssh/homelab_rsa cal@10.10.0.68 "ls -lh container-data/pd-database/storage/ | grep -E 'batting|pitching'"
```
## Report
When the pipeline completes (or fails at a gate), provide a summary:
```
## Live Series Card Update Report
**Cardset**: {cardset_name}
**Games Played**: {games_played} ({games_played}/162 = {pct}%)
**Environment**: {prod/dev}
**Type**: {Full Update / PotM}
### Results
- Step 1 (Dry Run): {PASS/FAIL}
- Step 2 (Card Generation): {PASS/FAIL} — {N} batters, {N} pitchers
- Step 3 (Image Rendering): {PASS/FAIL}
- Step 4 (groundball_b Validation): {PASS/FAIL} — {N} cards checked
- Step 5 (S3 Upload): {PASS/FAIL/SKIPPED (dev)}
- Step 6 (Scouting Reports): {PASS/FAIL/SKIPPED (dev)}
- Step 7 (Scouting Upload): {PASS/FAIL/SKIPPED (dev)}
### Status: {COMPLETE / FAILED AT STEP N}
```
If failed, include the specific error output from the failing step.
## Common Issues
- **"No players found"**: Wrong cardset name or database environment. Verify `alt_database` in `db_calls.py`.
- **Missing FanGraphs CSVs**: Download manually from FanGraphs splits leaderboard or run `scripts/fangraphs_scrape.py`.
- **High DH count**: Defense pull failed or BBRef was rate-limited. Re-run with `--pull-fielding` or manually download defense CSVs.
- **Early-season runs**: Use `--ignore-limits` when games played < ~40 to avoid filtering out most players.

View File

@ -0,0 +1,202 @@
---
name: retrosheet-card-update
description: Runs the full Retrosheet card generation pipeline for Paper Dynasty - processes historical play-by-play data into player cards, validates, uploads to S3, and regenerates scouting reports. Use when user says "update retrosheet cards", "generate cards for [year]", "run the retrosheet pipeline", or "card update".
tools: Bash, Read, Grep, Glob, AskUserQuestion
model: sonnet
permissionMode: default
color: yellow
---
# Retrosheet Card Update Agent
## Purpose
You are a pipeline executor for Paper Dynasty's Retrosheet card generation workflow. You run the full 8-step card creation pipeline: process Retrosheet data, validate positions, render card images, validate for data corruption, upload to S3, and regenerate scouting reports.
You do NOT write code or modify files. You execute existing CLI commands in sequence, validate outputs at each step, and stop with a clear error report if any validation gate fails.
## Working Directory
All commands MUST run from: `/mnt/NV2/Development/paper-dynasty/card-creation/`
## Pre-Flight: Gather Parameters
Before starting, you need these parameters. Check if they were provided in the invoking message. For any missing parameters, ask the user using AskUserQuestion.
| Parameter | Required | Example | Notes |
|-----------|----------|---------|-------|
| Year | Yes | `2005` | Season year |
| Cardset ID | Yes | `27` | Target cardset in the database |
| Description | Yes | `Live` or `April PotM` | Determines min PA thresholds |
| Start date | Yes | `20050403` | YYYYMMDD format |
| End date | Yes | `20050815` | YYYYMMDD format |
| Season % | Yes | `0.728` | Fraction of 162-game season covered by date range |
| Environment | Yes | `prod` or `dev` | Which database to target |
| Cardset name | Yes | `2005 Live` | Human-readable name for S3 upload commands |
**For PotM cards**, also ask:
- Have the `PROMO_INCLUSION_RETRO_IDS` been configured in `retrosheet_data.py`?
## Environment Verification
Before executing any pipeline step:
1. Read `db_calls.py` lines 8-15 and verify `alt_database` matches the requested environment:
- `alt_database = None` → production (pd.manticorum.com)
- `alt_database = 'dev'` → development (pddev.manticorum.com)
2. If the environment doesn't match, **STOP** and tell the user:
> "db_calls.py has `alt_database = X` but you requested Y environment. Please update db_calls.py before proceeding."
Do NOT modify db_calls.py yourself.
## Dev vs Prod Mode
The S3 bucket (`paper-dynasty`) and scouting upload target are **shared between environments**. Uploading in dev mode would overwrite production card images and scouting data.
**When environment is `dev`:**
- Run Steps 1-5 (generate, validate, render, check groundball_b)
- **SKIP Steps 6 and 8** (S3 upload and scouting upload) — mark as "SKIPPED (dev)"
- Step 7 (scouting generation) is safe to run locally but optional in dev — skip unless explicitly requested
**When environment is `prod`:**
- Run all 8 steps
## Pipeline Steps
Execute these steps in order. Each step has a validation gate — if validation fails, **STOP** and report the failure clearly. Do not continue to the next step.
### Step 1: Dry Run
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards retrosheet process {year} -c {cardset_id} -d "{description}" --start {start_date} --end {end_date} --season-pct {season_pct} --dry-run
```
**Gate**: Command exits 0 and shows "Validation passed". If it fails, report the error and stop.
### Step 2: Generate Cards
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards retrosheet process {year} -c {cardset_id} -d "{description}" --start {start_date} --end {end_date} --season-pct {season_pct}
```
**Gate**: Command exits 0 and shows "RETROSHEET PROCESSING COMPLETE". Report the number of batters and pitchers processed from the output.
### Step 3: Validate Positions
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards retrosheet validate {cardset_id}
```
**Gate**: DH count MUST be < 5 for full-season Live cards. If DH count >= 5, **STOP** — this indicates defense calculation failures (likely missing/misnamed defense CSVs). For PotM cards, higher DH counts may be acceptable — report but continue.
Also verify LF, CF, RF positions all have non-zero counts.
### Step 4: Render Card Images (No Upload)
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards upload check -c "{cardset_name}"
```
**Gate**: Command completes without errors. This triggers server-side rendering and caches images locally.
### Step 5: Validate for Negative groundball_b
This is the **most critical validation gate**. Negative groundball_b values crash game simulation.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && uv run python -c "
from db_calls import db_get
import asyncio
async def check():
result = await db_get('battingcards', params=[('cardset', {cardset_id})])
cards = result.get('cards', [])
errors = []
for card in cards:
player = card.get('player', {})
pid = player.get('player_id', card.get('id'))
gb = card.get('groundball_b')
if gb is not None and gb < 0:
errors.append(f'Player {pid}: groundball_b = {gb}')
for field in ['gb_b', 'fb_b', 'ld_b']:
val = card.get(field)
if val is not None and (val < 0 or val > 100):
errors.append(f'Player {pid}: {field} = {val}')
if errors:
print('ERRORS FOUND:')
print('\n'.join(errors))
print('\nDO NOT PROCEED')
else:
print(f'PASSED: {len(cards)} batting cards checked, no issues')
asyncio.run(check())
"
```
**Gate**: Output must contain "PASSED". If "ERRORS FOUND" appears, **STOP IMMEDIATELY**. Report the errors and tell the user:
> "Negative groundball_b values detected. DO NOT upload to S3. Fix the source data and re-run from Step 2."
### Step 6: Upload to S3 (PROD ONLY)
**Skip this step if environment is `dev`.** The S3 bucket is shared — uploading would overwrite production card images.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards upload s3 -c "{cardset_name}"
```
**Gate**: Command completes successfully. This is fast because images were cached in Step 4.
### Step 7: Regenerate Scouting Reports (PROD ONLY)
**Skip this step if environment is `dev`** unless the user explicitly requests it.
**CRITICAL (prod)**: Always run for ALL cardsets. Never use `--cardset-id` filter — it would overwrite the unified scouting database with partial data.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards scouting all
```
**Gate**: Command completes and generates 4 CSV files (batting-basic, batting-ratings, pitching-basic, pitching-ratings).
### Step 8: Upload Scouting Reports (PROD ONLY)
**Skip this step if environment is `dev`.** The upload target is the production server.
```bash
cd /mnt/NV2/Development/paper-dynasty/card-creation && pd-cards scouting upload
```
**Gate**: Upload completes successfully.
**Verify upload**:
```bash
ssh -i ~/.ssh/homelab_rsa cal@10.10.0.68 "ls -lh container-data/pd-database/storage/ | grep -E 'batting|pitching'"
```
## Report
When the pipeline completes (or fails at a gate), provide a summary:
```
## Retrosheet Card Update Report
**Year**: {year}
**Cardset**: {cardset_name} (ID: {cardset_id})
**Environment**: {prod/dev}
**Date Range**: {start_date} - {end_date} ({season_pct}%)
### Results
- Step 1 (Dry Run): {PASS/FAIL}
- Step 2 (Card Generation): {PASS/FAIL} — {N} batters, {N} pitchers
- Step 3 (Position Validation): {PASS/FAIL} — DH count: {N}
- Step 4 (Image Rendering): {PASS/FAIL}
- Step 5 (groundball_b Validation): {PASS/FAIL} — {N} cards checked
- Step 6 (S3 Upload): {PASS/FAIL/SKIPPED (dev)}
- Step 7 (Scouting Reports): {PASS/FAIL/SKIPPED (dev)}
- Step 8 (Scouting Upload): {PASS/FAIL/SKIPPED (dev)}
### Status: {COMPLETE / FAILED AT STEP N}
```
If failed, include the specific error output from the failing step.

View File

@ -4,31 +4,33 @@ import pybaseball as pb
from typing import Literal, Optional
from exceptions import logger
AUTH_TOKEN = {'Authorization': f'Bearer Tp3aO3jhYve5NJF1IqOmJTmk'}
DB_URL = 'https://pd.manticorum.com/api'
AUTH_TOKEN = {"Authorization": f"Bearer Tp3aO3jhYve5NJF1IqOmJTmk"}
DB_URL = "https://pd.manticorum.com/api"
master_debug = True
alt_database = None
if alt_database == 'dev':
DB_URL = 'https://pddev.manticorum.com/api'
elif alt_database == 'sba':
DB_URL = 'https://sba.manticorum.com/api'
if alt_database == "dev":
DB_URL = "https://pddev.manticorum.com/api"
elif alt_database == "sba":
DB_URL = "https://sba.manticorum.com/api"
def param_char(other_params):
if other_params:
return '&'
return "&"
else:
return '?'
return "?"
def get_req_url(endpoint: str, api_ver: int = 2, object_id: int = None, params: list = None):
def get_req_url(
endpoint: str, api_ver: int = 2, object_id: int = None, params: list = None
):
req_url = f'{DB_URL}/v{api_ver}/{endpoint}{"/" if object_id is not None else ""}{object_id if object_id is not None else ""}'
if params:
other_params = False
for x in params:
req_url += f'{param_char(other_params)}{x[0]}={x[1]}'
req_url += f"{param_char(other_params)}{x[0]}={x[1]}"
other_params = True
return req_url
@ -36,24 +38,33 @@ def get_req_url(endpoint: str, api_ver: int = 2, object_id: int = None, params:
def log_return_value(log_string: str):
if master_debug:
logger.info(f'return: {log_string[:1200]}{" [ S N I P P E D ]" if len(log_string) > 1200 else ""}\n')
logger.info(
f'return: {log_string[:1200]}{" [ S N I P P E D ]" if len(log_string) > 1200 else ""}\n'
)
else:
logger.debug(f'return: {log_string[:1200]}{" [ S N I P P E D ]" if len(log_string) > 1200 else ""}\n')
logger.debug(
f'return: {log_string[:1200]}{" [ S N I P P E D ]" if len(log_string) > 1200 else ""}\n'
)
async def db_get(
endpoint: str, api_ver: int = 2, object_id: int = None, params: list = None, none_okay: bool = True,
timeout: int = 3):
endpoint: str,
api_ver: int = 2,
object_id: int = None,
params: list = None,
none_okay: bool = True,
timeout: int = 3,
):
req_url = get_req_url(endpoint, api_ver=api_ver, object_id=object_id, params=params)
log_string = f'get:\n{endpoint} id: {object_id} params: {params}'
log_string = f"get:\n{endpoint} id: {object_id} params: {params}"
logger.info(log_string) if master_debug else logger.debug(log_string)
async with aiohttp.ClientSession(headers=AUTH_TOKEN) as session:
async with session.get(req_url) as r:
logger.info(f'session info: {r}')
logger.info(f"session info: {r}")
if r.status == 200:
js = await r.json()
log_return_value(f'{js}')
log_return_value(f"{js}")
return js
elif none_okay:
e = await r.text()
@ -62,105 +73,114 @@ async def db_get(
else:
e = await r.text()
logger.error(e)
raise ValueError(f'DB: {e}')
raise ValueError(f"DB: {e}")
async def url_get(url: str, timeout: int = 3):
log_string = f'get:\n{url}'
log_string = f"get:\n{url}"
logger.info(log_string) if master_debug else logger.debug(log_string)
async with aiohttp.ClientSession() as session:
async with session.get(url) as r:
if r.status == 200:
log_string = f'200 received'
log_string = f"200 received"
log_return_value(log_string)
return r
else:
e = await r.text()
logger.error(e)
raise ValueError(f'DB: {e}')
raise ValueError(f"DB: {e}")
async def db_patch(endpoint: str, object_id: int, params: list, api_ver: int = 2, timeout: int = 3):
async def db_patch(
endpoint: str, object_id: int, params: list, api_ver: int = 2, timeout: int = 3
):
req_url = get_req_url(endpoint, api_ver=api_ver, object_id=object_id, params=params)
log_string = f'patch:\n{endpoint} {params}'
log_string = f"patch:\n{endpoint} {params}"
logger.info(log_string) if master_debug else logger.debug(log_string)
async with aiohttp.ClientSession(headers=AUTH_TOKEN) as session:
async with session.patch(req_url) as r:
if r.status == 200:
js = await r.json()
log_return_value(f'{js}')
log_return_value(f"{js}")
return js
else:
e = await r.text()
logger.error(e)
raise ValueError(f'DB: {e}')
raise ValueError(f"DB: {e}")
async def db_post(endpoint: str, api_ver: int = 2, payload: dict = None, timeout: int = 3):
async def db_post(
endpoint: str, api_ver: int = 2, payload: dict = None, timeout: int = 3
):
req_url = get_req_url(endpoint, api_ver=api_ver)
log_string = f'post:\n{endpoint} payload: {payload}\ntype: {type(payload)}'
log_string = f"post:\n{endpoint} payload: {payload}\ntype: {type(payload)}"
logger.info(log_string) if master_debug else logger.debug(log_string)
async with aiohttp.ClientSession(headers=AUTH_TOKEN) as session:
async with session.post(req_url, json=payload) as r:
if r.status == 200:
js = await r.json()
log_return_value(f'{js}')
log_return_value(f"{js}")
return js
else:
e = await r.text()
logger.error(e)
raise ValueError(f'DB: {e}')
raise ValueError(f"DB: {e}")
async def db_put(endpoint: str, api_ver: int = 2, payload: dict = None, timeout: int = 3):
async def db_put(
endpoint: str, api_ver: int = 2, payload: dict = None, timeout: int = 3
):
req_url = get_req_url(endpoint, api_ver=api_ver)
log_string = f'put:\n{endpoint} payload: {payload}\ntype: {type(payload)}'
log_string = f"put:\n{endpoint} payload: {payload}\ntype: {type(payload)}"
logger.info(log_string) if master_debug else logger.debug(log_string)
async with aiohttp.ClientSession(headers=AUTH_TOKEN) as session:
async with session.put(req_url, json=payload) as r:
if r.status == 200:
js = await r.json()
log_return_value(f'{js}')
log_return_value(f"{js}")
return js
else:
e = await r.text()
logger.error(e)
raise ValueError(f'DB: {e}')
raise ValueError(f"DB: {e}")
async def db_delete(endpoint: str, object_id: int, api_ver: int = 2, timeout=3):
req_url = get_req_url(endpoint, api_ver=api_ver, object_id=object_id)
log_string = f'delete:\n{endpoint} {object_id}'
log_string = f"delete:\n{endpoint} {object_id}"
logger.info(log_string) if master_debug else logger.debug(log_string)
async with aiohttp.ClientSession(headers=AUTH_TOKEN) as session:
async with session.delete(req_url) as r:
if r.status == 200:
js = await r.json()
log_return_value(f'{js}')
log_return_value(f"{js}")
return js
else:
e = await r.text()
logger.error(e)
raise ValueError(f'DB: {e}')
raise ValueError(f"DB: {e}")
def get_player_data(
player_id: str, id_type: Literal['bbref', 'fangraphs'], return_type: Literal['dict', 'Series'] = 'dict'):
player_id: str,
id_type: Literal["bbref", "fangraphs"],
return_type: Literal["dict", "Series"] = "dict",
):
q = pb.playerid_reverse_lookup([player_id], key_type=id_type)
if len(q.values) == 0:
return None
elif return_type == 'Series':
elif return_type == "Series":
return q.loc[0]
else:
return q.loc[0].to_dict()
def player_desc(this_player) -> str:
if this_player['p_name'] in this_player['description']:
return this_player['description']
if this_player["p_name"] in this_player["description"]:
return this_player["description"]
return f'{this_player["description"]} {this_player["p_name"]}'

File diff suppressed because it is too large Load Diff

View File

@ -4490,7 +4490,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
9820.0,Daulton Varsho,2024 Season,Reserve,L,0.0,0.525641,0.21794872,0.25641027,1.6,4.0,0.0,0.0,6.5,6.4,4.75,6.9,2.0,5.0,0.0,12.25,13.75,6.0,7.0,0.0,0.0,2.6,4.4,0.0,8.75,16.1,0.30231482,0.41574073,0.5217593,3.0,13.0,False,0.11111111,C,C,13.0,3.0,17.0,0.5121951,0.26422763,0.22357725,1.2,5.0,3.2,0.0,2.8,2.85,1.2,0.0,5.1,5.0,1.0,12.25,32.75,3.0,11.0,0.0,0.9,1.95,3.8,0.0,6.0,9.0,0.19768518,0.32037038,0.41203704,,,,,,,1.0,1.0,3.0,,,,,,,1.0,1.0,1.0,-4.0,,,
9821.0,Blake Perkins,2024 Season,Reserve,S,0.0,0.40677965,0.33050847,0.26271185,1.3,2.0,0.0,0.0,2.4,7.3,5.7,5.7,5.7,5.0,0.0,11.6,11.4,5.0,8.0,0.0,0.3,4.7,5.7,0.0,0.9,25.3,0.29259259,0.4,0.4462963,3.0,14.0,True,0.25,C,B,13.0,1.0,17.0,0.29447854,0.4417178,0.2638037,1.35,2.0,1.7,0.0,1.5,4.75,3.8,0.0,8.6,5.0,1.0,13.4,28.6,1.0,7.0,0.0,0.4,3.25,2.65,0.0,8.0,14.0,0.23333333,0.36666667,0.38796297,,,,,,,,1.0,,,,,,,,,0.0,,1.0,,,
9822.0,Santiago Espinal,2024 Season,Reserve,R,0.0,0.509434,0.254717,0.23584905,2.7,7.0,0.0,0.0,1.95,5.95,5.1,2.5,7.3,5.0,0.0,10.8,19.2,3.0,9.0,0.0,2.7,5.35,0.0,1.95,0.0,18.5,0.29166666,0.39166668,0.537037,14.0,20.0,True,0.16666667,C,C,14.0,1.0,17.0,0.33170733,0.30731708,0.36097562,1.0,2.0,0.0,0.0,1.75,5.4,3.25,2.4,11.7,5.0,0.0,7.25,19.75,1.0,13.0,0.0,0.3,4.6,5.0,2.0,0.0,22.6,0.2685185,0.33564815,0.39027777,,,,4.0,4.0,3.0,3.0,,3.0,,,,14.0,15.0,0.0,0.0,,0.0,0.0,,,
9823.0,Jose Miranda,2024 Season,Reserve,R,0.0,0.41666666,0.35185185,0.23148148,1.05,2.0,0.0,0.0,2.7,7.25,3.3,0.0,8.0,5.0,0.0,4.75,25.25,3.0,8.0,0.0,0.0,6.7,5.0,9.0,5.0,12.0,0.23888889,0.28287038,0.38796297,3.0,7.0,False,0.055555556,C,B,11.0,2.0,17.0,0.42857143,0.3982684,0.17316017,1.6,3.0,2.55,0.0,3.4,10.0,5.0,2.5,7.55,5.0,2.0,6.4,18.6,6.0,11.0,0.0,0.45,4.4,0.0,6.05,0.0,12.5,0.33888888,0.41666666,0.5962963,,,3.0,,4.0,,,,,,,0.0,,20.0,,,,,,,,
9823.0,Jose Miranda,2024 Season,Reserve,R,0.0,0.41666666,0.35185185,0.23148148,1.05,2.0,0.0,0.0,2.7,7.25,3.3,0.0,8.0,5.0,0.0,4.75,17.25,3.0,12.0,0.0,0.0,6.7,5.0,9.0,5.0,16.0,0.23888889,0.28287038,0.38796297,3.0,7.0,False,0.055555556,C,B,11.0,2.0,17.0,0.42857143,0.3982684,0.17316017,1.6,3.0,2.55,0.0,3.4,10.0,5.0,2.5,7.55,5.0,2.0,6.4,23.6,6.0,12.0,0.0,0.45,4.4,0.0,6.05,0.0,6.5,0.33888888,0.41666666,0.5962963,,,3.0,,4.0,,,,,,,0.0,,20.0,,,,,,,,
9824.0,Ivan Herrera,2024 Season,Starter,R,0.0,0.3392857,0.5,0.16071428,2.4,5.0,0.0,0.0,0.0,3.6,5.75,3.3,8.25,5.0,1.0,12.8,25.2,11.0,3.0,0.0,0.75,4.0,3.0,0.0,7.25,6.7,0.26203704,0.38981482,0.43148148,3.0,20.0,False,0.083333336,C,A,14.0,3.0,17.0,0.36885247,0.30327868,0.32786885,1.05,3.0,1.2,0.0,3.4,10.05,6.15,2.6,9.65,5.0,0.0,13.25,15.75,13.0,0.0,0.0,1.35,1.9,2.0,2.25,8.0,8.4,0.35277778,0.47546297,0.5703704,,4.0,,,,,,,,,3.0,,,,,,,,,4.0,2.0,6.0
9825.0,Lars Nootbaar,2024 Season,Starter,L,0.0,0.4057971,0.47826087,0.11594203,1.6,2.0,3.6,0.0,5.4,5.4,4.2,2.0,6.2,5.0,1.0,14.4,24.6,3.0,4.0,0.0,0.8,1.0,1.0,0.0,9.8,13.0,0.29537037,0.43796295,0.53425926,3.0,12.0,False,0.11111111,C,C,11.0,2.0,17.0,0.37254903,0.37254903,0.25490195,2.1,5.0,0.0,0.0,2.1,6.3,6.45,0.0,3.2,5.0,0.0,17.4,21.6,2.0,7.0,1.0,0.8,2.7,3.9,21.45,0.0,0.0,0.23287037,0.3939815,0.43842593,,,,,,,4.0,4.0,3.0,,,,,,,3.0,3.0,3.0,0.0,,,
9826.0,Cal Raleigh,2024 Season,Reserve,S,0.0,0.4869565,0.32173914,0.19130436,3.2,10.0,0.0,0.0,0.0,1.05,0.0,0.0,4.5,5.0,2.0,9.3,31.7,9.0,2.0,0.0,0.5,3.95,7.8,5.0,4.0,9.0,0.15046297,0.2550926,0.38796297,3.0,15.0,False,0.055555556,C,C,9.0,2.0,17.0,0.49042147,0.27969348,0.22988506,2.2,7.0,0.0,0.0,1.6,4.8,6.45,0.0,3.25,5.0,0.0,17.2,30.8,8.0,0.0,1.0,1.75,2.2,4.8,0.0,5.95,6.0,0.225,0.38425925,0.4425926,,2.0,,,,,,,,,2.0,,,,,,,,,-1.0,4.0,5.0
@ -4512,7 +4512,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
9876.0,Travis Darnaud,2024 Season,Starter,R,0.0,0.44,0.24,0.32,9.8,6.0,0.0,0.0,1.1,3.4,2.4,0.0,5.1,5.0,3.0,10.4,21.6,8.0,9.0,0.0,0.9,4.8,3.0,3.5,6.0,5.0,0.25277779,0.37685186,0.65,3.0,20.0,False,0.027777778,C,C,11.0,2.0,17.0,0.3668639,0.34319526,0.28994083,1.75,4.0,0.0,0.0,2.5,7.4,2.5,0.0,6.55,5.0,2.0,9.0,26.0,5.0,4.0,0.0,0.45,3.85,4.0,7.0,5.0,12.0,0.23333333,0.3351852,0.42916667,,2.0,,,,,,,,,2.0,,,,,,,,,1.0,2.0,4.0
9877.0,Jon Singleton,2024 Season,Replacement,L,0.0,0.4888889,0.33333334,0.17777778,1.5,3.0,0.0,0.0,1.2,3.5,2.8,0.0,4.5,5.0,0.0,9.4,32.6,6.0,5.0,0.0,1.5,1.5,3.5,0.0,9.0,18.0,0.16203703,0.24907407,0.2888889,0.0,0.0,False,0.0,C,C,10.0,3.0,17.0,0.37623763,0.36633664,0.25742573,1.65,6.0,0.0,0.0,1.9,5.7,4.5,0.0,8.6,5.0,0.0,16.4,15.6,10.0,6.0,0.0,0.4,3.3,3.35,0.0,5.6,14.0,0.25787038,0.4097222,0.45740741,,,5.0,,,,,,,,,16.0,,,,,,,,,,
9878.0,Whit Merrifield,2024 Season,Reserve,R,0.0,0.4408602,0.32258064,0.23655914,1.5,4.0,0.0,0.0,1.4,4.25,2.6,0.0,7.8,5.0,0.0,13.9,11.1,7.0,11.0,0.0,1.2,5.25,3.0,3.0,8.0,18.0,0.20416667,0.33287036,0.3537037,12.0,18.0,True,0.25,C,C,13.0,2.0,17.0,0.3223684,0.33552632,0.34210527,0.0,1.0,3.5,0.0,3.5,3.4,4.5,0.0,8.8,5.0,1.0,14.05,21.95,1.0,10.0,0.0,1.2,1.6,2.0,3.5,7.0,15.0,0.24722221,0.38657406,0.38981482,,,,5.0,3.0,,3.0,,,,,,14.0,16.0,,0.0,,,0.0,,,
9879.0,Carlos Correa,2024 Season,MVP,R,0.0,0.3809524,0.34920636,0.26984128,2.75,8.0,2.2,0.0,2.1,6.4,5.7,5.9,3.2,5.0,1.0,13.5,19.5,3.0,3.0,0.0,0.8,4.85,3.0,0.0,7.0,11.1,0.32175925,0.4560185,0.6287037,0.0,0.0,False,0.0,C,B,11.0,2.0,17.0,0.35678393,0.35175878,0.2914573,1.95,5.0,0.0,0.0,3.2,9.05,5.4,2.75,7.75,5.0,0.0,15.3,13.7,1.0,13.0,0.0,0.25,3.0,2.0,3.4,6.0,10.25,0.325,0.46666667,0.56203705,,,,,,4.0,,,,,,,,,12.0,,,,,,,
9879.0,Carlos Correa,2024 Season,MVP,R,0.0,0.3809524,0.34920636,0.26984128,2.75,8.0,2.2,0.0,2.1,6.4,5.7,5.9,3.2,5.0,1.0,13.5,11.5,5.0,7.0,0.0,0.8,4.85,3.0,0.0,7.0,13.1,0.32175925,0.4560185,0.6287037,0.0,0.0,False,0.0,C,B,11.0,2.0,17.0,0.35678393,0.35175878,0.2914573,1.95,5.0,0.0,0.0,3.2,9.05,5.4,2.75,7.75,5.0,0.0,15.3,13.7,1.0,17.0,0.0,0.25,3.0,2.0,3.4,0.0,12.25,0.325,0.46666667,0.56203705,,,,,,4.0,,,,,,,,,12.0,,,,,,,
9880.0,Manuel Margot,2024 Season,Reserve,R,0.0,0.33082706,0.40601504,0.2631579,1.65,2.0,0.0,0.0,3.2,8.75,4.75,2.4,7.05,5.0,0.0,9.85,12.15,15.0,3.0,0.0,1.95,5.6,5.0,6.05,5.0,9.6,0.2898148,0.38101852,0.47407407,3.0,20.0,False,0.083333336,C,C,14.0,3.0,17.0,0.31060606,0.46212122,0.22727273,0.0,1.0,1.25,0.0,2.2,6.5,5.55,0.0,7.05,5.0,2.0,6.2,12.8,3.0,14.0,0.0,1.95,4.5,4.0,9.0,7.0,15.0,0.23657407,0.3125,0.35416666,,,,,,,3.0,3.0,3.0,,,,,,,4.0,4.0,4.0,-2.0,,,
9881.0,Mike Tauchman,2024 Season,Starter,L,0.0,0.2857143,0.36734694,0.3469388,1.2,3.0,0.0,0.0,4.2,4.0,6.5,0.0,13.1,5.0,0.0,11.2,20.8,7.0,6.0,0.0,0.9,2.8,1.0,0.0,9.3,12.0,0.30555555,0.40925926,0.4564815,3.0,10.0,False,0.083333336,C,C,12.0,2.0,17.0,0.34444445,0.33333334,0.32222223,1.2,4.0,0.0,0.0,2.1,6.4,4.0,0.0,8.1,5.0,1.0,19.7,26.3,6.0,3.0,0.0,0.9,3.6,2.8,3.9,0.0,10.0,0.24351852,0.4351852,0.41111112,,,,,,,3.0,3.0,4.0,,,,,,,2.0,2.0,2.0,0.0,,,
9882.0,Garrett Cooper,2024 Season,Replacement,R,0.0,0.39285713,0.42857143,0.17857143,0.0,0.0,4.2,0.0,3.05,9.1,6.75,0.0,3.4,5.0,0.0,5.95,30.05,7.0,11.0,1.0,0.6,3.9,3.0,0.0,14.0,0.0,0.2685185,0.3236111,0.4587963,0.0,0.0,False,0.0,C,C,11.0,3.0,17.0,0.3409091,0.29545456,0.36363637,1.1,2.0,0.0,0.0,1.6,4.75,2.4,0.0,9.05,5.0,3.0,9.4,28.6,4.0,9.0,0.0,1.95,2.25,1.9,1.0,0.0,21.0,0.2074074,0.32222223,0.32453704,,,3.0,,,,,,,,,14.0,,,,,,,,,,
@ -5472,7 +5472,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
11721.0,Ian Happ,2025 Season,Starter,S,0.0,0.4369748,0.34453782,0.2184874,1.4,4.0,0.0,0.0,2.1,5.9,3.9,2.4,5.4,5.0,0.0,14.95,22.05,8.0,11.0,0.0,0.6,2.1,3.6,0.0,9.0,6.6,0.23703703,0.37546295,0.40555555,3.0,9.0,False,0.055555556,C,C,11.0,1.0,24.0,0.43092105,0.31578946,0.25328946,1.1,6.0,0.0,0.0,2.7,7.85,3.3,0.0,6.2,5.0,0.0,18.3,19.7,13.0,2.0,0.0,0.8,3.15,4.9,1.0,5.0,8.0,0.24675927,0.4162037,0.45833334,,,,,,,1.0,,,,,,,,,0.0,,,0.0,,,
11722.0,Cedric Mullins,2025 Season,Reserve,L,0.0,0.4631579,0.2631579,0.2736842,1.05,4.0,1.75,0.0,2.75,8.1,5.5,3.75,4.5,5.0,0.0,15.7,18.3,2.0,10.0,0.0,0.5,2.9,4.95,0.0,0.0,17.25,0.29537037,0.44074073,0.51296294,3.0,16.0,True,0.25,C,D,12.0,1.0,24.0,0.48908296,0.29257643,0.2183406,1.35,5.0,0.0,0.0,1.9,5.75,2.2,0.0,4.55,5.0,1.0,12.25,26.75,11.0,4.0,0.0,0.45,3.25,5.65,0.0,5.9,12.0,0.19212963,0.3148148,0.3699074,,,,,,,,5.0,,,,,,,,,2.0,,5.0,,,
11723.0,Ty France,2025 Season,Starter,R,0.0,0.41666666,0.32407406,0.25925925,1.05,3.0,0.0,0.0,3.2,8.7,3.75,0.0,7.05,5.0,4.0,5.4,15.6,10.0,2.0,0.0,1.95,5.25,4.0,2.05,10.0,16.0,0.25694445,0.34398147,0.43796295,3.0,20.0,False,0.027777778,C,B,11.0,1.0,24.0,0.30078125,0.3984375,0.30078125,1.05,2.0,0.0,0.0,2.75,8.15,5.1,0.0,10.25,5.0,6.0,6.25,26.75,5.0,5.0,0.0,1.75,3.8,3.0,5.15,5.0,6.0,0.2851852,0.3986111,0.44305557,,,1.0,,,,,,,,,4.0,,,,,,,,,,
11724.0,Harrison Bader,2025 Season,Starter,R,0.0,0.4651163,0.3372093,0.19767442,1.95,6.0,0.0,0.0,1.65,5.1,3.25,0.0,6.4,5.0,2.0,10.4,27.6,5.0,9.0,0.0,0.6,3.95,2.0,0.0,5.1,13.0,0.22083333,0.33564815,0.42083332,3.0,8.0,False,0.1388889,C,A,12.0,1.0,24.0,0.45414847,0.34497818,0.20087336,1.2,5.0,0.0,0.0,5.7,5.7,5.7,4.8,5.85,5.0,3.0,10.2,15.8,8.0,6.0,0.0,0.15,2.1,1.0,1.6,8.0,13.2,0.31435186,0.43657407,0.52268517,,,,,,,2.0,3.0,3.0,,,,,,,3.0,3.0,3.0,-1.0,,,
11724.0,Harrison Bader,2025 Season,Starter,R,0.0,0.4651163,0.3372093,0.19767442,1.95,6.0,0.0,0.0,1.65,5.1,3.25,0.0,6.4,5.0,2.0,10.4,23.6,5.0,10.0,0.0,0.6,3.95,2.0,0.0,5.1,16.0,0.22083333,0.33564815,0.42083332,3.0,8.0,False,0.1388889,C,A,12.0,1.0,24.0,0.45414847,0.34497818,0.20087336,1.2,5.0,0.0,0.0,5.7,5.7,5.7,4.8,5.85,5.0,3.0,10.2,13.8,6.0,11.0,0.0,0.15,2.1,1.0,1.6,0.0,20.2,0.31435186,0.43657407,0.52268517,,,,,,,2.0,3.0,3.0,,,,,,,3.0,3.0,3.0,-1.0,,,
11725.0,Dylan Moore,2025 Season,Replacement,R,0.0,0.43939394,0.3181818,0.24242423,1.7,8.0,0.0,0.0,0.0,0.0,2.4,0.0,4.5,5.0,0.0,15.7,42.3,2.0,9.0,0.0,0.5,2.3,1.0,0.0,6.6,7.0,0.13981481,0.2851852,0.29814816,3.0,13.0,True,0.3611111,C,C,13.0,1.0,24.0,0.4054054,0.4054054,0.1891892,1.75,6.0,0.0,0.0,3.9,3.8,3.5,2.1,4.8,5.0,0.0,5.85,34.15,10.0,2.0,0.0,1.2,3.25,2.2,0.0,15.5,3.0,0.23472223,0.2888889,0.43796295,,,3.0,2.0,3.0,3.0,,,5.0,,,30.0,14.0,37.0,0.0,,,7.0,1.0,,,
11726.0,Dansby Swanson,2025 Season,Starter,R,0.0,0.49438202,0.38202247,0.12359551,5.7,4.0,1.65,0.0,1.4,4.2,10.3,2.4,2.75,5.0,0.0,8.4,21.6,7.0,5.0,1.0,2.25,5.1,2.0,0.0,7.65,10.6,0.30462962,0.3824074,0.6009259,3.0,15.0,True,0.16666667,C,C,11.0,1.0,24.0,0.45722714,0.35693216,0.18584071,1.75,5.0,0.0,0.0,2.2,6.1,3.4,0.0,6.65,5.0,0.0,10.2,26.8,1.0,12.0,0.0,1.35,6.15,3.0,6.4,4.0,7.0,0.2324074,0.32685184,0.42731482,,,,,,2.0,,,,,,,,,14.0,,,,,,,
11727.0,Kyle Tucker,2025 Season,All-Star,L,0.0,0.43382353,0.34558824,0.22058824,1.6,7.0,0.0,0.0,1.75,5.4,4.75,0.0,9.4,5.0,2.0,14.85,20.15,5.0,3.0,0.0,0.6,4.6,6.4,0.0,5.5,11.0,0.26759258,0.4236111,0.47546297,12.0,15.0,True,0.19444445,C,C,11.0,3.0,24.0,0.48214287,0.33214286,0.18571429,1.9,5.0,1.9,0.0,2.55,7.6,3.5,0.0,6.9,5.0,1.0,20.1,11.9,6.0,9.0,0.0,2.1,3.4,6.1,1.05,8.0,5.0,0.27175927,0.46712962,0.5231481,,,,,,,,,3.0,,,,,,,,,2.0,1.0,,,
@ -5886,155 +5886,155 @@ player_id,player_name,cardset_name,rarity,hand,variant,pull_rate_vl,center_rate_
12726.0,Michael Young,2005 Live,MVP,R,0.0,0.18129,0.6,0.21871,1.05,3.0,1.65,0.0,5.85,4.95,6.35,9.55,3.25,5.0,0.0,16.6,22.4,5.0,12.0,0.0,1.75,0.0,0.0,5.15,0.0,4.45,0.33935186,0.49305555,0.5407407,3.0,14.0,False,0.055555556,D,B,11.0,2.0,27.0,0.20777,0.21165,0.58058,1.95,6.0,1.9,0.0,4.35,4.05,5.85,8.8,3.2,5.0,0.0,10.0,27.0,5.0,7.0,0.0,0.8,0.0,2.0,8.9,0.0,6.2,0.32962963,0.42222223,0.5800926,,,,,,5.0,,,,,,,,,18.0,,,,,,,
12727.0,Mark Teixeira,2005 Live,MVP,S,0.0,0.23757,0.52486,0.23757,1.2,5.0,1.1,0.0,7.1,7.1,11.0,4.2,1.35,5.0,0.0,8.0,17.0,4.0,11.0,1.0,1.65,2.7,1.0,16.8,1.8,0.0,0.3523148,0.4263889,0.60694444,3.0,20.0,False,0.027777778,D,C,12.0,1.0,27.0,0.34426,0.22248,0.43326,7.25,5.0,0.0,0.0,1.7,5.6,6.9,2.7,0.0,5.0,3.0,14.5,16.5,5.0,12.0,1.0,0.0,4.15,3.0,14.4,0.0,0.3,0.26990741,0.43194443,0.60833335,,,1.0,,,,,,,,,2.0,,,,,,,,,,
12728.0,Richard Hidalgo,2005 Live,Reserve,R,0.0,0.25,0.5,0.25,1.1,3.0,0.0,0.0,5.1,4.75,0.9,0.0,2.5,5.0,2.0,7.35,27.65,8.0,9.0,0.0,2.5,3.15,2.0,0.0,19.0,5.0,0.1699074,0.25648147,0.33333334,1.0,4.0,False,0.055555556,D,D,11.0,2.0,27.0,0.26087,0.22609,0.51304,1.9,8.0,0.0,0.0,3.3,3.25,7.05,2.7,0.0,5.0,1.0,12.0,22.0,1.0,18.0,1.0,0.0,1.75,3.1,4.65,9.0,3.3,0.22870371,0.34907407,0.45324075,,,,,,,,3.0,2.0,,,,,,,,2.0,2.0,0.0,,,
12729.0,Darin Erstad,2005 Live,Starter,L,0.0,0.17051,0.54839,0.2811,0.0,1.0,1.65,0.0,3.8,3.8,6.6,9.9,3.3,5.0,0.0,13.35,12.65,6.0,20.0,0.0,2.7,0.2,0.0,7.95,5.0,5.1,0.29675925,0.42037037,0.41157407,3.0,14.0,False,0.083333336,C,B,12.0,3.0,27.0,0.20792,0.29455,0.49753,0.0,1.0,2.55,0.0,6.4,6.4,5.45,7.7,2.7,5.0,0.0,10.9,23.1,3.0,12.0,0.0,3.3,0.6,0.0,8.6,5.0,4.3,0.31666666,0.41759259,0.4962963,,,1.0,,,,,,,,,3.0,,,,,,,,,,
12730.0,Vladimir Guerrero,2005 Live,Hall of Fame,R,0.0,0.27374,0.45251,0.27375,8.25,5.0,0.0,0.0,5.1,14.75,8.2,3.2,0.0,5.0,4.0,19.75,2.25,1.0,15.0,1.0,0.0,4.0,0.0,0.0,10.7,0.8,0.41203704,0.6319444,0.89444447,10.0,20.0,False,0.11111111,D,B,12.0,1.0,27.0,0.24242,0.17532,0.58226,9.65,7.0,0.0,0.0,1.9,5.4,12.65,4.75,1.65,5.0,1.0,11.25,16.75,3.0,0.0,1.0,1.35,2.6,5.35,4.45,4.0,9.25,0.3888889,0.5023148,0.8217593,,,,,,,,,1.0,,,,,,,,,2.0,0.0,,,
12729.0,Darin Erstad,2005 Live,Starter,L,0.0,0.17051,0.54839,0.2811,0.0,1.0,1.65,0.0,3.8,3.8,6.6,9.9,3.3,5.0,0.0,13.35,12.65,6.0,26.0,0.0,2.7,0.2,0.0,1.95,5.0,5.1,0.29675925,0.42037037,0.41157407,3.0,14.0,False,0.083333336,C,B,12.0,3.0,27.0,0.20792,0.29455,0.49753,0.0,1.0,2.55,0.0,6.4,6.4,5.45,7.7,2.7,5.0,0.0,10.9,23.1,3.0,12.0,0.0,3.3,0.6,0.0,8.6,5.0,4.3,0.31666666,0.41759259,0.4962963,,,1.0,,,,,,,,,3.0,,,,,,,,,,
12730.0,Vladimir Guerrero,2005 Live,Hall of Fame,R,0.0,0.27374,0.45251,0.27375,8.25,5.0,0.0,0.0,5.1,14.75,8.2,3.2,0.0,5.0,4.0,19.75,2.25,1.0,19.0,0.0,0.0,4.0,0.0,0.0,5.7,2.8,0.41203704,0.6319444,0.89444447,10.0,20.0,False,0.11111111,D,B,12.0,1.0,27.0,0.24242,0.17532,0.58226,9.65,7.0,0.0,0.0,1.9,5.4,12.65,4.75,1.65,5.0,1.0,11.25,12.75,5.0,0.0,1.0,1.35,2.6,5.35,4.45,4.0,11.25,0.3888889,0.5023148,0.8217593,,,,,,,,,1.0,,,,,,,,,2.0,0.0,,,
12731.0,Garret Anderson,2005 Live,Starter,L,0.0,0.2823,0.53589,0.18181,1.05,5.0,0.0,0.0,4.5,4.75,7.5,11.5,3.95,5.0,0.0,3.25,15.75,2.0,14.0,0.0,1.05,1.2,2.0,3.0,21.0,1.5,0.35416666,0.38425925,0.5384259,3.0,20.0,False,0.027777778,D,B,9.0,2.0,27.0,0.39447,0.28141,0.32412,1.2,5.0,0.0,0.0,4.75,4.5,4.75,5.7,3.6,5.0,0.0,8.5,17.5,6.0,16.0,0.0,0.4,1.3,2.0,17.5,2.0,2.3,0.27314815,0.35185185,0.46157408,,,,,,,3.0,,,,,,,,,5.0,,,0.0,,,
12732.0,Steve Finley,2005 Live,Replacement,L,0.0,0.41463,0.53049,0.05488,1.05,2.0,1.65,0.0,5.7,5.7,4.65,5.4,1.65,5.0,2.0,3.4,11.6,13.0,4.0,0.0,1.35,3.3,3.95,0.0,23.0,9.6,0.2712963,0.3212963,0.46435186,3.0,11.0,True,0.1388889,B,D,12.0,1.0,27.0,0.29195,0.29195,0.4161,1.05,5.0,0.0,0.0,3.2,2.75,2.1,3.2,0.0,5.0,0.0,7.35,22.65,12.0,10.0,0.0,0.0,4.2,3.0,22.7,0.0,3.8,0.16018519,0.22824074,0.31388888,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12733.0,Kevin Mench,2005 Live,MVP,R,0.0,0.27536,0.44928,0.27536,1.2,6.0,1.2,0.0,6.6,6.65,5.2,0.0,1.2,5.0,0.0,23.05,13.95,6.0,12.0,1.0,2.8,5.15,4.0,0.0,0.0,7.0,0.2550926,0.46851853,0.51666665,3.0,8.0,False,0.055555556,D,C,11.0,2.0,27.0,0.30127,0.11252,0.58621,1.25,7.0,0.0,0.0,6.25,6.15,7.45,2.75,0.0,5.0,0.0,10.6,9.4,6.0,20.0,1.0,0.0,1.6,3.0,12.3,6.0,2.25,0.27638888,0.37453705,0.5231481,,,,,,,2.0,,3.0,,,,,,,3.0,,3.0,0.0,,,
12733.0,Kevin Mench,2005 Live,MVP,R,0.0,0.27536,0.44928,0.27536,1.2,6.0,1.2,0.0,6.6,6.65,5.2,0.0,1.2,5.0,0.0,23.05,18.95,6.0,14.0,1.0,2.8,5.15,4.0,0.0,0.0,0.0,0.2550926,0.46851853,0.51666665,3.0,8.0,False,0.055555556,D,C,11.0,2.0,27.0,0.30127,0.11252,0.58621,1.25,7.0,0.0,0.0,6.25,6.15,7.45,2.75,0.0,5.0,0.0,10.6,7.4,5.0,26.0,1.0,0.0,1.6,3.0,12.3,3.0,2.25,0.27638888,0.37453705,0.5231481,,,,,,,2.0,,3.0,,,,,,,3.0,,3.0,0.0,,,
12734.0,Orlando Cabrera,2005 Live,Starter,R,0.0,0.26471,0.47059,0.2647,0.0,0.0,1.25,0.0,5.7,5.7,7.05,6.8,2.25,5.0,0.0,13.0,10.0,3.0,11.0,0.0,2.75,2.3,2.0,0.0,30.2,0.0,0.28935185,0.4097222,0.41805556,13.0,18.0,True,0.16666667,B,C,12.0,1.0,27.0,0.25551,0.2467,0.49779,1.05,4.0,0.0,0.0,5.85,4.95,4.55,6.85,2.6,5.0,0.0,9.35,10.65,10.0,21.0,0.0,1.4,1.0,2.0,6.6,0.0,11.15,0.28101853,0.3675926,0.46574074,,,,,,1.0,,,,,,,,,8.0,,,,,,,
12735.0,Chone Figgins,2005 Live,Reserve,S,0.0,0.22222,0.55556,0.22222,0.0,1.0,1.05,0.0,4.2,4.2,4.75,6.85,2.25,5.0,0.0,9.25,26.75,1.0,13.0,0.0,2.75,1.8,2.0,8.0,14.0,0.15,0.24351852,0.32916668,0.35462964,10.0,13.0,True,0.4722222,A,B,13.0,1.0,27.0,0.27515,0.27721,0.44764,1.05,3.0,2.75,0.0,5.8,5.85,5.85,8.85,3.25,5.0,0.0,8.0,16.0,2.0,17.0,0.0,1.75,2.1,1.0,1.6,17.0,0.15,0.3462963,0.42037037,0.57592595,,,,4.0,2.0,3.0,3.0,3.0,3.0,,,,20.0,11.0,0.0,2.0,2.0,2.0,0.0,,,
12736.0,David DeJesus,2005 Live,All-Star,L,0.0,0.20197,0.58621,0.21182,1.05,1.0,1.9,0.0,7.1,7.15,4.5,6.3,2.2,5.0,2.0,9.3,7.7,10.0,11.0,0.0,1.8,1.8,1.0,18.5,0.0,8.7,0.3074074,0.41203704,0.5175926,3.0,7.0,False,0.083333336,A,B,13.0,3.0,27.0,0.21968,0.27231,0.50801,1.05,3.0,1.7,0.0,5.8,5.85,4.2,6.1,2.1,5.0,3.0,7.6,5.4,14.0,18.0,0.0,3.9,2.1,0.0,2.3,5.0,11.9,0.2851852,0.38333333,0.49537036,,,,,,,,1.0,,,,,,,,,3.0,,0.0,,,
12737.0,Mike Sweeney,2005 Live,All-Star,R,0.0,0.23016,0.53968,0.23016,3.2,10.0,0.0,0.0,2.7,7.9,3.4,0.0,1.7,5.0,0.0,21.1,17.9,6.0,16.0,1.0,0.3,3.9,0.0,0.0,3.9,4.0,0.24444444,0.4398148,0.5703704,3.0,20.0,False,0.027777778,B,C,10.0,1.0,27.0,0.23798,0.16346,0.59856,1.95,7.0,0.0,0.0,4.75,4.5,4.5,6.5,2.25,5.0,0.0,4.75,17.25,3.0,18.0,0.0,2.75,1.5,4.05,18.75,0.0,1.5,0.28194445,0.32592592,0.51898146,,,4.0,,,,,,,,,2.0,,,,,,,,,,
12738.0,Angel Berroa,2005 Live,All-Star,R,0.0,0.25248,0.49505,0.25247,2.25,7.0,0.0,0.0,4.75,4.75,11.95,4.5,1.5,5.0,3.0,4.75,21.25,3.0,12.0,1.0,3.5,1.0,0.0,3.3,13.5,0.0,0.33055556,0.4023148,0.57824075,3.0,9.0,False,0.083333336,A,A,13.0,1.0,27.0,0.23301,0.19417,0.57282,1.05,1.0,2.1,0.0,4.8,4.8,6.6,9.95,3.3,5.0,4.0,2.25,23.75,3.0,10.0,0.0,2.7,1.15,3.0,5.5,6.0,8.05,0.32962963,0.3875,0.50046295,,,,,,5.0,,,,,,,,,24.0,,,,,,,
12739.0,Ruben Gotay,2005 Live,Reserve,S,0.0,0.22449,0.55102,0.22449,0.0,0.0,0.0,0.0,4.8,4.75,4.25,6.4,2.2,5.0,0.0,18.5,18.5,6.0,9.0,0.0,1.8,2.25,2.0,0.0,21.55,1.0,0.23055555,0.40185186,0.31898147,3.0,10.0,False,0.055555556,A,D,13.0,1.0,27.0,0.23881,0.10075,0.66044,1.05,2.0,1.4,0.0,4.75,4.75,2.85,4.55,1.5,5.0,2.0,7.25,18.75,9.0,13.0,0.0,3.5,4.2,1.0,0.0,18.0,3.45,0.22546296,0.31111112,0.3962963,,,,5.0,,,,,,,,,14.0,,,,,,,,,
12740.0,John Buck,2005 Live,Reserve,R,0.0,0.18018,0.6,0.21982,0.0,0.0,0.0,0.0,6.0,6.0,7.85,11.8,4.2,5.0,0.0,10.9,18.1,1.0,16.0,0.0,1.8,0.0,0.0,0.0,15.15,4.2,0.35509259,0.4560185,0.4662037,3.0,7.0,False,0.055555556,B,C,10.0,3.0,27.0,0.21831,0.25,0.53169,1.6,5.0,0.0,0.0,4.2,3.8,1.8,3.6,1.2,5.0,0.0,5.1,17.9,8.0,17.0,0.0,1.8,1.2,3.4,24.0,0.0,3.4,0.19629629,0.24351852,0.38425925,,2.0,,,,,,,,,2.0,,,,,,,,,-2.0,3.0,4.0
12741.0,Ichiro Suzuki,2005 Live,All-Star,L,0.0,0.21702,0.5234,0.25958,1.05,5.0,3.9,0.0,3.8,1.95,8.0,11.95,4.2,5.0,0.0,9.4,5.6,1.0,15.0,0.0,1.8,0.0,1.0,0.0,28.35,1.0,0.36898148,0.4560185,0.59305555,10.0,14.0,True,0.19444445,B,B,12.0,3.0,27.0,0.20207,0.21244,0.58549,1.05,4.0,3.2,0.0,3.2,3.2,5.7,8.1,2.75,5.0,0.0,8.5,3.5,6.0,17.0,0.0,2.25,2.75,1.0,15.9,10.0,4.9,0.2935185,0.37222221,0.49675927,,,,,,,,,1.0,,,,,,,,,1.0,0.0,,,
12742.0,Adrian Beltre,2005 Live,All-Star,R,0.0,0.22086,0.55828,0.22086,9.5,6.0,0.0,0.0,2.7,7.6,7.8,3.2,0.0,5.0,3.0,3.4,17.6,7.0,15.0,1.0,0.0,5.9,0.0,0.5,8.0,4.8,0.3361111,0.39537036,0.7787037,3.0,10.0,False,0.027777778,D,C,11.0,1.0,27.0,0.20165,0.18724,0.61111,1.05,4.0,0.0,0.0,5.7,5.7,3.3,5.7,2.2,5.0,0.0,7.65,6.35,5.0,18.0,0.0,1.8,1.25,2.0,17.0,8.0,8.3,0.26064816,0.3314815,0.45092592,,,,,3.0,,,,,,,,,16.0,,,,,,,,
12743.0,Bret Boone,2005 Live,Reserve,R,0.0,0.22078,0.55844,0.22078,1.2,3.0,2.2,0.0,4.2,3.75,3.6,2.75,1.9,5.0,0.0,15.65,22.35,18.0,7.0,0.0,1.1,2.25,2.8,2.0,7.0,2.25,0.21851853,0.36342594,0.40787038,3.0,9.0,False,0.083333336,C,C,11.0,2.0,27.0,0.21862,0.17409,0.60729,0.0,3.0,1.4,0.0,4.2,4.2,4.4,5.7,1.7,5.0,2.0,8.1,21.9,6.0,11.0,0.0,0.3,1.8,3.0,19.0,0.0,5.3,0.23703703,0.33055556,0.3824074,,,,5.0,,,,,,,,,15.0,,,,,,,,,
12735.0,Chone Figgins,2005 Live,Reserve,S,0.0,0.22222,0.55556,0.22222,0.0,1.0,1.05,0.0,4.2,4.2,4.75,6.85,2.25,5.0,0.0,9.25,24.75,1.0,15.0,0.0,2.75,1.8,2.0,8.0,14.0,0.15,0.24351852,0.32916668,0.35462964,10.0,13.0,True,0.4722222,A,B,13.0,1.0,27.0,0.27515,0.27721,0.44764,1.05,3.0,2.75,0.0,5.8,5.85,5.85,8.85,3.25,5.0,0.0,8.0,11.0,2.0,21.0,0.0,1.75,2.1,1.0,1.6,14.0,4.15,0.3462963,0.42037037,0.57592595,,,,4.0,2.0,3.0,3.0,3.0,3.0,,,,20.0,11.0,0.0,2.0,2.0,2.0,0.0,,,
12736.0,David DeJesus,2005 Live,All-Star,L,0.0,0.20197,0.58621,0.21182,1.05,1.0,1.9,0.0,7.1,7.15,4.5,6.3,2.2,5.0,2.0,9.3,8.7,10.0,13.0,0.0,1.8,1.8,1.0,12.5,0.0,11.7,0.3074074,0.41203704,0.5175926,3.0,7.0,False,0.083333336,A,B,13.0,3.0,27.0,0.21968,0.27231,0.50801,1.05,3.0,1.7,0.0,5.8,5.85,4.2,6.1,2.1,5.0,3.0,7.6,9.4,11.0,23.0,0.0,3.9,2.1,0.0,2.3,5.0,5.9,0.2851852,0.38333333,0.49537036,,,,,,,,1.0,,,,,,,,,3.0,,0.0,,,
12737.0,Mike Sweeney,2005 Live,All-Star,R,0.0,0.23016,0.53968,0.23016,3.2,10.0,0.0,0.0,2.7,7.9,3.4,0.0,1.7,5.0,0.0,21.1,5.9,11.0,21.0,1.0,0.3,3.9,0.0,0.0,3.9,6.0,0.24444444,0.4398148,0.5703704,3.0,20.0,False,0.027777778,B,C,10.0,1.0,27.0,0.23798,0.16346,0.59856,1.95,7.0,0.0,0.0,4.75,4.5,4.5,6.5,2.25,5.0,0.0,4.75,11.25,3.0,24.0,0.0,2.75,1.5,4.05,18.75,0.0,1.5,0.28194445,0.32592592,0.51898146,,,4.0,,,,,,,,,2.0,,,,,,,,,,
12738.0,Angel Berroa,2005 Live,All-Star,R,0.0,0.25248,0.49505,0.25247,2.25,7.0,0.0,0.0,4.75,4.75,11.95,4.5,1.5,5.0,3.0,4.75,21.25,3.0,12.0,1.0,3.5,1.0,0.0,3.3,13.5,0.0,0.33055556,0.4023148,0.57824075,3.0,9.0,False,0.083333336,A,A,13.0,1.0,27.0,0.23301,0.19417,0.57282,1.05,1.0,2.1,0.0,4.8,4.8,6.6,9.95,3.3,5.0,4.0,2.25,19.75,5.0,14.0,0.0,2.7,1.15,3.0,5.5,0.0,12.05,0.32962963,0.3875,0.50046295,,,,,,5.0,,,,,,,,,24.0,,,,,,,
12739.0,Ruben Gotay,2005 Live,Reserve,S,0.0,0.22449,0.55102,0.22449,0.0,0.0,0.0,0.0,4.8,4.75,4.25,6.4,2.2,5.0,0.0,18.5,16.5,7.0,11.0,0.0,1.8,2.25,2.0,0.0,20.95,0.6,0.23055555,0.40185186,0.31898147,3.0,10.0,False,0.055555556,A,D,13.0,1.0,27.0,0.23881,0.10075,0.66044,1.05,2.0,1.4,0.0,4.75,4.75,2.85,4.55,1.5,5.0,2.0,7.25,10.75,13.0,17.0,0.0,3.5,4.2,1.0,0.0,18.0,3.45,0.22546296,0.31111112,0.3962963,,,,5.0,,,,,,,,,14.0,,,,,,,,,
12740.0,John Buck,2005 Live,Reserve,R,0.0,0.18018,0.6,0.21982,0.0,0.0,0.0,0.0,6.0,6.0,7.85,11.8,4.2,5.0,0.0,10.9,17.1,1.0,17.0,0.0,1.8,0.0,0.0,0.0,15.15,4.2,0.35509259,0.4560185,0.4662037,3.0,7.0,False,0.055555556,B,C,10.0,3.0,27.0,0.21831,0.25,0.53169,1.6,5.0,0.0,0.0,4.2,3.8,1.8,3.6,1.2,5.0,0.0,5.1,7.9,12.0,21.0,0.0,1.8,1.2,3.4,24.0,0.0,5.4,0.19629629,0.24351852,0.38425925,,2.0,,,,,,,,,2.0,,,,,,,,,-2.0,3.0,4.0
12741.0,Ichiro Suzuki,2005 Live,All-Star,L,0.0,0.21702,0.5234,0.25958,1.05,5.0,3.9,0.0,3.8,1.95,8.0,11.95,4.2,5.0,0.0,9.4,2.6,2.0,17.0,0.0,1.8,0.0,1.0,0.0,28.3,1.05,0.36898148,0.4560185,0.59305555,10.0,14.0,True,0.19444445,B,B,12.0,3.0,27.0,0.20207,0.21244,0.58549,1.05,4.0,3.2,0.0,3.2,3.2,5.7,8.1,2.75,5.0,0.0,8.5,2.5,6.0,23.0,0.0,2.25,2.75,1.0,15.9,7.0,2.9,0.2935185,0.37222221,0.49675927,,,,,,,,,1.0,,,,,,,,,1.0,0.0,,,
12742.0,Adrian Beltre,2005 Live,All-Star,R,0.0,0.22086,0.55828,0.22086,9.5,6.0,0.0,0.0,2.7,7.6,7.8,3.2,0.0,5.0,3.0,3.4,17.6,7.0,15.0,1.0,0.0,5.9,0.0,0.5,8.0,4.8,0.3361111,0.39537036,0.7787037,3.0,10.0,False,0.027777778,D,C,11.0,1.0,27.0,0.20165,0.18724,0.61111,1.05,4.0,0.0,0.0,5.7,5.7,3.3,5.7,2.2,5.0,0.0,7.65,5.35,5.0,23.0,0.0,1.8,1.25,2.0,17.0,8.0,4.3,0.26064816,0.3314815,0.45092592,,,,,3.0,,,,,,,,,16.0,,,,,,,,
12743.0,Bret Boone,2005 Live,Reserve,R,0.0,0.22078,0.55844,0.22078,1.2,3.0,2.2,0.0,4.2,3.75,3.6,2.75,1.9,5.0,0.0,15.65,26.35,14.0,7.0,0.0,1.1,2.25,2.8,2.0,7.0,2.25,0.21851853,0.36342594,0.40787038,3.0,9.0,False,0.083333336,C,C,11.0,2.0,27.0,0.21862,0.17409,0.60729,0.0,3.0,1.4,0.0,4.2,4.2,4.4,5.7,1.7,5.0,2.0,8.1,21.9,6.0,11.0,0.0,0.3,1.8,3.0,19.0,0.0,5.3,0.23703703,0.33055556,0.3824074,,,,5.0,,,,,,,,,15.0,,,,,,,,,
12744.0,Raul Ibanez,2005 Live,Starter,L,0.0,0.18593,0.57789,0.23618,1.25,5.0,0.0,0.0,3.25,3.75,6.25,9.4,3.2,5.0,1.0,9.1,12.9,6.0,12.0,0.0,0.8,1.0,1.0,3.5,20.6,3.0,0.29722223,0.39074075,0.4662037,3.0,9.0,False,0.083333336,D,B,11.0,3.0,27.0,0.21935,0.24731,0.53334,1.05,5.0,0.0,0.0,5.85,4.95,5.4,7.5,2.5,5.0,0.0,13.2,15.8,5.0,10.0,0.0,2.5,2.0,1.0,14.75,6.5,0.0,0.2986111,0.42083332,0.49722221,,,3.0,,,,4.0,,3.0,,,0.0,,,,4.0,,4.0,1.0,,,
12745.0,Randy Winn,2005 Live,MVP,S,0.0,0.27586,0.44828,0.27586,1.05,5.0,4.75,0.0,6.6,6.65,6.65,2.7,0.0,5.0,0.0,7.85,15.15,5.0,9.0,1.0,0.0,2.3,2.0,20.0,0.0,7.3,0.30925927,0.38194445,0.61851853,5.0,8.0,False,0.19444445,A,B,13.0,1.0,27.0,0.23058,0.28398,0.48544,1.05,5.0,1.9,0.0,5.75,5.35,4.75,6.8,2.25,5.0,3.0,9.95,12.05,1.0,14.0,0.0,2.75,1.6,0.0,25.8,0.0,0.0,0.30416667,0.42407408,0.5407407,,,,,,,2.0,1.0,,,,,,,,0.0,0.0,,0.0,,,
12746.0,Wilson Valdez,2005 Live,Replacement,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,4.75,4.75,0.25,3.4,1.2,5.0,0.0,3.75,24.25,5.0,7.0,0.0,2.8,2.25,2.0,1.0,33.0,7.6,0.15601853,0.19074073,0.24398148,3.0,7.0,False,0.16666667,A,D,12.0,1.0,27.0,0.2,0.17778,0.62222,0.0,0.0,2.5,0.0,3.75,3.6,3.75,6.6,3.0,5.0,0.0,6.6,19.4,4.0,15.0,0.0,0.0,0.4,2.0,0.0,32.4,0.0,0.23796296,0.29907408,0.3523148,,,,,,5.0,,,,,,,,,21.0,,,,,,,
12747.0,Coco Crisp,2005 Live,All-Star,S,0.0,0.2735,0.45299,0.27351,1.1,5.0,0.0,0.0,7.2,6.9,3.9,5.7,1.9,5.0,0.0,10.5,10.5,16.0,7.0,0.0,1.1,2.0,1.0,0.9,14.0,8.3,0.2935185,0.39074075,0.5240741,8.0,11.0,False,0.11111111,A,B,13.0,3.0,27.0,0.30041,0.21811,0.48148,0.0,2.0,2.75,0.0,6.5,6.5,5.8,8.75,3.2,5.0,0.0,8.35,13.65,9.0,17.0,0.0,0.8,1.5,1.0,6.95,9.25,0.0,0.3425926,0.41990742,0.5416667,,,,,,,1.0,3.0,,,,,,,,3.0,3.0,,0.0,,,
12748.0,Victor Martinez,2005 Live,MVP,S,0.0,0.26383,0.47234,0.26383,0.0,2.0,0.0,0.0,6.9,6.85,6.45,9.65,3.25,5.0,2.0,14.9,17.1,5.0,8.0,0.0,1.75,0.15,0.0,12.65,0.0,6.35,0.33888888,0.49537036,0.49398148,0.0,0.0,False,0.0,D,B,8.0,2.0,27.0,0.32009,0.24503,0.43488,1.9,6.0,0.0,0.0,5.1,5.1,7.4,11.1,3.75,5.0,0.0,13.9,4.1,10.0,12.0,0.0,1.25,0.0,0.0,21.4,0.0,0.0,0.36898148,0.4976852,0.599537,,3.0,,,,,,,,,2.0,,,,,,,,,0.0,2.0,5.0
12749.0,Travis Hafner,2005 Live,All-Star,L,0.0,0.22628,0.54745,0.22627,1.05,4.0,0.0,0.0,4.5,4.5,3.2,4.2,1.4,5.0,7.0,19.05,24.95,5.0,6.0,0.0,0.6,0.45,1.0,6.3,9.8,0.0,0.2162037,0.45740741,0.38425925,0.0,0.0,False,0.0,D,A,11.0,3.0,27.0,0.26205,0.2259,0.51205,1.2,5.0,0.0,0.0,4.75,13.75,10.15,3.8,1.25,5.0,0.0,16.85,21.15,1.0,7.0,1.0,3.75,1.05,0.0,0.1,0.0,11.2,0.36944443,0.525463,0.6435185,,,,,,,,,,,,,,,,,,,,,,
12750.0,Casey Blake,2005 Live,All-Star,R,0.0,0.22314,0.55372,0.22314,7.8,6.0,0.0,0.0,1.2,3.6,6.4,2.4,0.0,5.0,0.0,13.3,15.7,6.0,12.0,1.0,0.0,4.6,5.0,13.4,1.0,3.6,0.24907407,0.37222221,0.5935185,3.0,7.0,False,0.083333336,D,B,13.0,2.0,27.0,0.277,0.15728,0.56572,1.05,4.0,0.0,0.0,7.0,7.05,4.9,6.95,2.4,5.0,3.0,9.95,12.05,6.0,11.0,0.0,1.6,0.9,2.0,2.1,0.0,21.05,0.31342593,0.43333334,0.52824074,,,3.0,,3.0,,,,2.0,,,30.0,,35.0,,,,6.0,0.0,,,
12751.0,Aaron Boone,2005 Live,Reserve,R,0.0,0.2623,0.47541,0.26229,2.1,6.0,0.0,0.0,2.25,2.25,4.75,5.7,3.5,5.0,1.0,19.4,18.6,3.0,14.0,0.0,1.5,2.75,3.9,5.0,5.0,2.3,0.24120371,0.4300926,0.42453703,3.0,13.0,False,0.11111111,C,C,14.0,2.0,27.0,0.25105,0.12134,0.62761,0.0,2.0,0.0,0.0,5.4,5.1,4.8,7.25,2.4,5.0,2.0,5.7,11.3,21.0,2.0,0.0,1.6,0.9,3.0,20.8,0.0,7.75,0.26342592,0.33472222,0.38842592,,,,,4.0,,,,,,,,,22.0,,,,,,,,
12752.0,Ronnie Belliard,2005 Live,All-Star,R,0.0,0.27219,0.45562,0.27219,1.05,2.0,0.0,0.0,12.0,11.95,8.5,3.25,1.05,5.0,0.0,11.95,23.05,3.0,16.0,0.0,1.95,0.0,0.0,0.0,7.25,0.0,0.3824074,0.49305555,0.6611111,3.0,7.0,False,0.027777778,A,B,12.0,1.0,27.0,0.20971,0.16998,0.62031,1.05,4.0,0.0,0.0,5.8,5.8,5.1,7.6,2.55,5.0,0.0,6.8,17.2,8.0,13.0,0.0,0.45,1.15,0.0,13.1,0.0,11.4,0.3,0.36296296,0.49212962,,,,1.0,,,,,,,,,13.0,,,,,,,,,
12753.0,Mark Kotsay,2005 Live,Starter,L,0.0,0.25,0.53846,0.21154,0.0,1.0,0.0,0.0,8.3,8.25,5.7,7.95,2.7,5.0,0.0,6.3,13.7,14.0,11.0,0.0,0.3,0.75,2.0,4.0,5.0,12.05,0.33240741,0.39074075,0.49953705,3.0,8.0,False,0.083333336,A,C,12.0,3.0,27.0,0.272,0.224,0.504,1.2,4.0,0.0,0.0,5.1,5.1,4.75,5.7,3.3,5.0,0.0,6.7,6.3,8.0,20.0,0.0,2.7,3.7,2.0,20.15,0.0,4.3,0.27453703,0.33657408,0.45787036,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12745.0,Randy Winn,2005 Live,MVP,S,0.0,0.27586,0.44828,0.27586,1.05,5.0,4.75,0.0,6.6,6.65,6.65,2.7,0.0,5.0,0.0,7.85,15.15,5.0,9.0,1.0,0.0,2.3,2.0,20.0,0.0,7.3,0.30925927,0.38194445,0.61851853,5.0,8.0,False,0.19444445,A,B,13.0,1.0,27.0,0.23058,0.28398,0.48544,1.05,5.0,1.9,0.0,5.75,5.35,4.75,6.8,2.25,5.0,3.0,9.95,13.05,1.0,18.0,0.0,2.75,1.6,0.0,18.8,0.0,2.0,0.30416667,0.42407408,0.5407407,,,,,,,2.0,1.0,,,,,,,,0.0,0.0,,0.0,,,
12746.0,Wilson Valdez,2005 Live,Replacement,R,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,4.75,4.75,0.25,3.4,1.2,5.0,0.0,3.75,23.25,5.0,7.0,0.0,2.8,2.25,2.0,1.0,33.0,8.6,0.15601853,0.19074073,0.24398148,3.0,7.0,False,0.16666667,A,D,12.0,1.0,27.0,0.2,0.17778,0.62222,0.0,0.0,2.5,0.0,3.75,3.6,3.75,6.6,3.0,5.0,0.0,6.6,19.4,4.0,15.0,0.0,0.0,0.4,2.0,0.0,32.4,0.0,0.23796296,0.29907408,0.3523148,,,,,,5.0,,,,,,,,,21.0,,,,,,,
12747.0,Coco Crisp,2005 Live,All-Star,S,0.0,0.2735,0.45299,0.27351,1.1,5.0,0.0,0.0,7.2,6.9,3.9,5.7,1.9,5.0,0.0,10.5,10.5,16.0,7.0,0.0,1.1,2.0,1.0,0.9,14.0,8.3,0.2935185,0.39074075,0.5240741,8.0,11.0,False,0.11111111,A,B,13.0,3.0,27.0,0.30041,0.21811,0.48148,0.0,2.0,2.75,0.0,6.5,6.5,5.8,8.75,3.2,5.0,0.0,8.35,7.65,7.0,23.0,0.0,0.8,1.5,1.0,6.95,9.25,2.0,0.3425926,0.41990742,0.5416667,,,,,,,1.0,3.0,,,,,,,,3.0,3.0,,0.0,,,
12748.0,Victor Martinez,2005 Live,MVP,S,0.0,0.26383,0.47234,0.26383,0.0,2.0,0.0,0.0,6.9,6.85,6.45,9.65,3.25,5.0,2.0,14.9,23.1,5.0,8.0,0.0,1.75,0.15,0.0,6.65,0.0,6.35,0.33888888,0.49537036,0.49398148,0.0,0.0,False,0.0,D,B,8.0,2.0,27.0,0.32009,0.24503,0.43488,1.9,6.0,0.0,0.0,5.1,5.1,7.4,11.1,3.75,5.0,0.0,13.9,4.1,10.0,12.0,0.0,1.25,0.0,0.0,21.4,0.0,0.0,0.36898148,0.4976852,0.599537,,3.0,,,,,,,,,2.0,,,,,,,,,0.0,2.0,5.0
12749.0,Travis Hafner,2005 Live,All-Star,L,0.0,0.22628,0.54745,0.22627,1.05,4.0,0.0,0.0,4.5,4.5,3.2,4.2,1.4,5.0,7.0,19.05,30.95,5.0,6.0,0.0,0.6,0.45,1.0,3.3,6.8,0.0,0.2162037,0.45740741,0.38425925,0.0,0.0,False,0.0,D,A,11.0,3.0,27.0,0.26205,0.2259,0.51205,1.2,5.0,0.0,0.0,4.75,13.75,10.15,3.8,1.25,5.0,0.0,16.85,23.15,1.0,9.0,1.0,3.75,1.05,0.0,0.1,0.0,7.2,0.36944443,0.525463,0.6435185,,,,,,,,,,,,,,,,,,,,,,
12750.0,Casey Blake,2005 Live,All-Star,R,0.0,0.22314,0.55372,0.22314,7.8,6.0,0.0,0.0,1.2,3.6,6.4,2.4,0.0,5.0,0.0,13.3,7.7,8.0,17.0,1.0,0.0,4.4,4.2,13.4,1.0,5.6,0.24907407,0.37222221,0.5935185,3.0,7.0,False,0.083333336,D,B,13.0,2.0,27.0,0.277,0.15728,0.56572,1.05,4.0,0.0,0.0,7.0,7.05,4.9,6.95,2.4,5.0,3.0,9.95,6.05,10.0,16.0,0.0,1.6,0.9,2.0,2.1,0.0,18.05,0.31342593,0.43333334,0.52824074,,,3.0,,3.0,,,,2.0,,,30.0,,35.0,,,,6.0,0.0,,,
12751.0,Aaron Boone,2005 Live,Reserve,R,0.0,0.2623,0.47541,0.26229,2.1,6.0,0.0,0.0,2.25,2.25,4.75,5.7,3.5,5.0,1.0,19.4,10.6,7.0,18.0,0.0,1.5,2.75,3.9,5.0,5.0,2.3,0.24120371,0.4300926,0.42453703,3.0,13.0,False,0.11111111,C,C,14.0,2.0,27.0,0.25105,0.12134,0.62761,0.0,2.0,0.0,0.0,5.4,5.1,4.8,7.25,2.4,5.0,2.0,5.7,10.3,19.0,3.0,0.0,1.6,0.9,3.0,20.8,0.0,9.75,0.26342592,0.33472222,0.38842592,,,,,4.0,,,,,,,,,22.0,,,,,,,,
12752.0,Ronnie Belliard,2005 Live,All-Star,R,0.0,0.27219,0.45562,0.27219,1.05,2.0,0.0,0.0,12.0,11.95,8.5,3.25,1.05,5.0,0.0,11.95,23.05,6.0,13.0,0.0,1.95,0.0,0.0,0.0,7.25,0.0,0.3824074,0.49305555,0.6611111,3.0,7.0,False,0.027777778,A,B,12.0,1.0,27.0,0.20971,0.16998,0.62031,1.05,4.0,0.0,0.0,5.8,5.8,5.1,7.6,2.55,5.0,0.0,6.8,13.2,6.0,20.0,0.0,0.45,1.15,0.0,10.1,0.0,13.4,0.3,0.36296296,0.49212962,,,,1.0,,,,,,,,,13.0,,,,,,,,,
12753.0,Mark Kotsay,2005 Live,Starter,L,0.0,0.25,0.53846,0.21154,0.0,1.0,0.0,0.0,8.3,8.25,5.7,7.95,2.7,5.0,0.0,6.3,17.7,15.0,8.0,0.0,0.3,0.75,2.0,4.0,5.0,10.05,0.33240741,0.39074075,0.49953705,3.0,8.0,False,0.083333336,A,C,12.0,3.0,27.0,0.272,0.224,0.504,1.2,4.0,0.0,0.0,5.1,5.1,4.75,5.7,3.3,5.0,0.0,6.7,2.3,6.0,26.0,0.0,2.7,3.7,2.0,20.15,0.0,4.3,0.27453703,0.33657408,0.45787036,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12754.0,Eric Chavez,2005 Live,MVP,L,0.0,0.22043,0.5,0.27957,0.0,3.0,0.0,0.0,9.6,9.6,4.5,6.75,2.25,5.0,1.0,9.0,32.0,5.0,1.0,0.0,2.75,1.4,1.0,3.9,10.25,0.0,0.3398148,0.4324074,0.55925924,3.0,20.0,False,0.055555556,D,B,12.0,1.0,27.0,0.26304,0.21088,0.52608,2.7,8.0,0.0,0.0,3.2,2.7,10.15,3.8,1.25,5.0,0.0,9.55,29.45,3.0,8.0,1.0,3.75,3.6,1.0,1.65,8.0,2.2,0.28055555,0.36898148,0.5212963,,,,,1.0,,,,,,,,,17.0,,,,,,,,
12755.0,Erubiel Durazo,2005 Live,Starter,L,0.0,0.19512,0.6,0.20488,5.1,4.0,4.5,0.0,2.25,6.75,11.8,3.6,2.4,5.0,0.0,6.0,11.0,8.0,10.0,1.0,1.6,3.15,3.0,0.0,18.45,0.4,0.3787037,0.43425927,0.7425926,3.0,20.0,False,0.055555556,D,C,10.0,3.0,27.0,0.23009,0.22124,0.54867,1.05,3.0,0.0,0.0,3.3,3.3,2.7,4.2,3.4,5.0,1.0,12.5,16.5,10.0,10.0,0.0,0.6,4.65,1.0,11.0,10.0,4.8,0.20324074,0.32824075,0.3351852,,,,,,,,,,,,,,,,,,,,,,
12756.0,Scott Hatteberg,2005 Live,Reserve,L,0.0,0.24038,0.6,0.15962,0.0,4.0,0.0,0.0,4.25,4.2,4.75,7.1,2.4,5.0,1.0,10.95,9.05,5.0,19.0,0.0,0.6,1.8,2.0,7.0,16.0,3.9,0.25185186,0.3625,0.38564816,0.0,0.0,False,0.0,D,C,11.0,2.0,27.0,0.2619,0.17196,0.56614,1.05,1.0,0.0,0.0,5.1,4.75,5.75,8.6,3.2,5.0,0.0,12.05,8.95,14.0,7.0,0.0,0.8,2.2,1.0,25.15,0.0,2.4,0.2912037,0.4027778,0.42546296,,,3.0,,,,,,,,,19.0,,,,,,,,,,
12757.0,Nick Swisher,2005 Live,All-Star,S,0.0,0.30818,0.38365,0.30817,1.65,9.0,0.0,0.0,3.2,2.55,5.1,7.25,2.5,5.0,0.0,13.0,20.0,3.0,13.0,0.0,2.5,1.45,1.35,2.7,14.75,0.0,0.27083334,0.3912037,0.4949074,0.0,0.0,False,0.0,D,B,11.0,3.0,27.0,0.26708,0.18944,0.54348,1.05,5.0,0.0,0.0,6.55,6.55,3.5,5.4,1.5,5.0,2.0,13.65,10.35,1.0,18.0,0.0,3.5,2.4,1.0,1.95,0.0,19.6,0.2736111,0.4185185,0.49351853,,,4.0,,,,,,2.0,,,0.0,,,,,,2.0,0.0,,,
12755.0,Erubiel Durazo,2005 Live,Starter,L,0.0,0.19512,0.6,0.20488,5.1,4.0,4.5,0.0,2.25,6.75,11.8,3.6,2.4,5.0,0.0,6.0,16.0,5.0,14.0,1.0,1.6,3.15,3.0,0.0,11.45,1.4,0.3787037,0.43425927,0.7425926,3.0,20.0,False,0.055555556,D,C,10.0,3.0,27.0,0.23009,0.22124,0.54867,1.05,3.0,0.0,0.0,3.3,3.3,2.7,4.2,3.4,5.0,1.0,12.5,11.5,14.0,14.0,0.0,0.6,4.65,1.0,11.0,10.0,1.8,0.20324074,0.32824075,0.3351852,,,,,,,,,,,,,,,,,,,,,,
12756.0,Scott Hatteberg,2005 Live,Reserve,L,0.0,0.24038,0.6,0.15962,0.0,4.0,0.0,0.0,4.25,4.2,4.75,7.1,2.4,5.0,1.0,10.95,11.05,1.0,24.0,0.0,0.6,1.8,2.0,7.0,16.0,0.9,0.25185186,0.3625,0.38564816,0.0,0.0,False,0.0,D,C,11.0,2.0,27.0,0.2619,0.17196,0.56614,1.05,1.0,0.0,0.0,5.1,4.75,5.75,8.6,3.2,5.0,0.0,12.05,8.95,8.0,14.0,0.0,0.8,2.2,1.0,21.15,0.0,5.4,0.2912037,0.4027778,0.42546296,,,3.0,,,,,,,,,19.0,,,,,,,,,,
12757.0,Nick Swisher,2005 Live,All-Star,S,0.0,0.30818,0.38365,0.30817,1.65,9.0,0.0,0.0,3.2,2.55,5.1,7.25,2.5,5.0,0.0,13.0,18.0,3.0,15.0,0.0,2.5,1.8,1.0,2.7,14.75,0.0,0.27083334,0.3912037,0.4949074,0.0,0.0,False,0.0,D,B,11.0,3.0,27.0,0.26708,0.18944,0.54348,1.05,5.0,0.0,0.0,6.55,6.55,3.5,5.4,1.5,5.0,2.0,13.65,10.35,5.0,22.0,0.0,3.5,2.4,1.0,1.95,0.0,11.6,0.2736111,0.4185185,0.49351853,,,4.0,,,,,,2.0,,,0.0,,,,,,2.0,0.0,,,
12758.0,Jason Kendall,2005 Live,Reserve,R,0.0,0.18235,0.6,0.21765,0.0,0.0,0.0,0.0,5.1,5.4,6.3,9.5,3.25,5.0,0.0,19.0,11.0,4.0,9.0,0.0,1.75,0.6,1.0,2.6,24.5,0.0,0.29675925,0.4726852,0.3939815,3.0,11.0,False,0.083333336,B,C,12.0,2.0,27.0,0.20446,0.20074,0.5948,0.0,0.0,0.0,0.0,4.8,5.1,6.0,8.95,3.2,5.0,6.0,7.05,12.95,6.0,12.0,0.0,0.8,0.9,3.0,22.2,0.0,4.05,0.28287038,0.4037037,0.37453705,,4.0,,,,,,,,,3.0,,,,,,,,,1.0,3.0,6.0
12759.0,Dmitri Young,2005 Live,All-Star,S,0.0,0.25532,0.48936,0.25532,6.55,4.0,1.05,0.0,2.2,6.4,10.15,2.4,2.8,5.0,1.0,2.25,13.75,11.0,15.0,0.0,1.2,1.05,2.0,0.6,14.0,5.6,0.3337963,0.3638889,0.6703704,3.0,20.0,False,0.027777778,D,B,10.0,2.0,27.0,0.25219,0.15132,0.59649,1.2,4.0,2.4,0.0,3.9,3.9,4.75,6.75,2.25,5.0,3.0,7.0,11.0,7.0,17.0,0.0,2.75,1.9,1.0,21.95,0.0,1.25,0.27453703,0.36712962,0.48009259,,,3.0,,,,4.0,,,,,13.0,,,,0.0,,,1.0,,,
12760.0,Tadahito Iguchi,2005 Live,All-Star,R,0.0,0.28,0.44,0.28,1.05,4.0,0.0,0.0,3.75,3.75,4.75,6.7,2.25,5.0,4.0,11.8,11.2,7.0,15.0,0.0,2.75,1.2,1.0,20.8,0.0,2.0,0.24768518,0.3939815,0.40185186,3.0,12.0,True,0.1388889,B,C,12.0,1.0,27.0,0.23837,0.19186,0.56977,5.1,4.0,2.1,0.0,4.75,4.5,7.15,2.9,0.0,5.0,3.0,8.05,16.95,6.0,17.0,1.0,0.0,0.4,2.0,13.1,0.0,5.0,0.28703704,0.38935184,0.6087963,,,,4.0,,,,,,,,,15.0,,,,,,,,,
12761.0,Carl Everett,2005 Live,MVP,S,0.0,0.21014,0.57971,0.21015,6.75,5.0,0.0,0.0,1.95,5.85,12.65,4.75,1.65,5.0,0.0,13.05,28.95,5.0,4.0,1.0,1.35,0.4,0.0,2.4,8.0,0.25,0.35740742,0.47824073,0.6865741,3.0,6.0,False,0.11111111,D,B,12.0,2.0,27.0,0.25786,0.25157,0.49057,2.2,7.0,0.0,0.0,3.75,3.75,5.1,7.6,2.55,5.0,0.0,14.2,18.8,13.0,7.0,0.0,0.45,1.05,0.0,16.55,0.0,0.0,0.28657407,0.41805556,0.51435184,,,,,,,3.0,,3.0,,,,,,,0.0,,0.0,0.0,,,
12762.0,Jermaine Dye,2005 Live,Starter,R,0.0,0.30928,0.38144,0.30928,5.7,3.0,0.0,0.0,3.4,9.3,4.5,0.0,1.95,5.0,2.0,11.65,6.35,6.0,20.0,1.0,1.05,4.0,4.0,4.1,6.0,9.0,0.26712963,0.3935185,0.5847222,3.0,12.0,False,0.11111111,D,D,10.0,2.0,27.0,0.24781,0.1,0.65219,1.6,6.0,0.0,0.0,3.2,3.2,4.2,5.95,1.95,5.0,3.0,5.75,26.25,6.0,16.0,0.0,1.05,0.8,3.4,8.6,0.0,6.05,0.23703703,0.31805557,0.42407408,,,,,,,,,4.0,,,,,,,,,7.0,1.0,,,
12763.0,Aaron Rowand,2005 Live,All-Star,R,0.0,0.2437,0.51261,0.24369,1.05,1.0,7.0,0.0,4.5,4.5,5.7,8.05,2.75,5.0,3.0,5.4,23.6,7.0,13.0,0.0,2.25,0.45,1.0,2.8,4.0,5.95,0.33842593,0.4162037,0.59444445,8.0,11.0,True,0.1388889,A,B,12.0,1.0,27.0,0.24615,0.11731,0.63654,1.9,6.0,0.0,0.0,4.2,3.75,4.8,7.0,2.4,5.0,2.0,4.95,15.05,10.0,15.0,0.0,1.6,1.35,2.0,12.0,0.0,9.0,0.2736111,0.33796296,0.48333332,,,,,,,,1.0,,,,,,,,,1.0,,0.0,,,
12764.0,Brad Wilkerson,2005 Live,All-Star,L,0.0,0.23358,0.48175,0.28467,0.0,1.0,0.0,0.0,8.25,8.1,4.15,5.1,3.25,5.0,2.0,11.7,24.3,18.0,0.0,0.0,1.75,1.9,1.0,5.6,4.9,2.0,0.29490742,0.42175925,0.4601852,3.0,6.0,False,0.11111111,A,B,11.0,3.0,27.0,0.19885,0.1902,0.61095,1.05,5.0,3.2,0.0,5.75,5.35,3.05,0.0,2.8,5.0,0.0,19.9,19.1,6.0,14.0,1.0,1.2,2.6,0.0,1.0,8.0,4.0,0.24259259,0.42685184,0.50324076,,,3.0,,,,3.0,4.0,3.0,,,6.0,,,,3.0,3.0,3.0,1.0,,,
12759.0,Dmitri Young,2005 Live,All-Star,S,0.0,0.25532,0.48936,0.25532,6.55,4.0,1.05,0.0,2.2,6.4,10.15,2.4,2.8,5.0,1.0,2.25,11.75,8.0,20.0,0.0,1.2,1.05,2.0,0.6,14.0,5.6,0.3337963,0.3638889,0.6703704,3.0,20.0,False,0.027777778,D,B,10.0,2.0,27.0,0.25219,0.15132,0.59649,1.2,4.0,2.4,0.0,3.9,3.9,4.75,6.75,2.25,5.0,3.0,7.0,11.0,5.0,22.0,0.0,2.75,1.9,1.0,13.95,0.0,6.25,0.27453703,0.36712962,0.48009259,,,3.0,,,,4.0,,,,,13.0,,,,0.0,,,1.0,,,
12760.0,Tadahito Iguchi,2005 Live,All-Star,R,0.0,0.28,0.44,0.28,1.05,4.0,0.0,0.0,3.75,3.75,4.75,6.7,2.25,5.0,4.0,11.8,8.2,6.0,21.0,0.0,2.75,1.2,1.0,20.5,0.0,0.3,0.24768518,0.3939815,0.40185186,3.0,12.0,True,0.1388889,B,C,12.0,1.0,27.0,0.23837,0.19186,0.56977,5.1,4.0,2.1,0.0,4.75,4.5,7.15,2.9,0.0,5.0,3.0,8.05,22.95,6.0,17.0,1.0,0.0,0.4,2.0,6.0,0.0,6.1,0.28703704,0.38935184,0.6087963,,,,4.0,,,,,,,,,15.0,,,,,,,,,
12761.0,Carl Everett,2005 Live,MVP,S,0.0,0.21014,0.57971,0.21015,6.75,5.0,0.0,0.0,1.95,5.85,12.65,4.75,1.65,5.0,0.0,13.05,28.95,5.0,4.0,1.0,1.35,0.4,0.0,2.4,8.0,0.25,0.35740742,0.47824073,0.6865741,3.0,6.0,False,0.11111111,D,B,12.0,2.0,27.0,0.25786,0.25157,0.49057,2.2,7.0,0.0,0.0,3.75,3.75,5.1,7.6,2.55,5.0,0.0,14.2,18.8,11.0,9.0,0.0,0.45,1.05,0.0,16.55,0.0,0.0,0.28657407,0.41805556,0.51435184,,,,,,,3.0,,3.0,,,,,,,0.0,,0.0,0.0,,,
12762.0,Jermaine Dye,2005 Live,Starter,R,0.0,0.30928,0.38144,0.30928,5.7,3.0,0.0,0.0,3.4,9.3,4.5,0.0,1.95,5.0,2.0,11.65,6.35,6.0,20.0,1.0,1.05,4.0,4.0,4.1,0.0,15.0,0.26712963,0.3935185,0.5847222,3.0,12.0,False,0.11111111,D,D,10.0,2.0,27.0,0.24781,0.1,0.65219,1.6,6.0,0.0,0.0,3.2,3.2,4.2,5.95,1.95,5.0,3.0,5.75,21.25,8.0,21.0,0.0,1.05,0.8,3.4,0.6,0.0,12.05,0.23703703,0.31805557,0.42407408,,,,,,,,,4.0,,,,,,,,,7.0,1.0,,,
12763.0,Aaron Rowand,2005 Live,All-Star,R,0.0,0.2437,0.51261,0.24369,1.05,1.0,7.0,0.0,4.5,4.5,5.7,8.05,2.75,5.0,3.0,5.4,13.6,6.0,20.0,0.0,2.25,0.45,1.0,2.8,4.0,9.95,0.33842593,0.4162037,0.59444445,8.0,11.0,True,0.1388889,A,B,12.0,1.0,27.0,0.24615,0.11731,0.63654,1.9,6.0,0.0,0.0,4.2,3.75,4.8,7.0,2.4,5.0,2.0,4.95,15.05,10.0,15.0,0.0,1.6,1.35,2.0,12.0,0.0,9.0,0.2736111,0.33796296,0.48333332,,,,,,,,1.0,,,,,,,,,1.0,,0.0,,,
12764.0,Brad Wilkerson,2005 Live,All-Star,L,0.0,0.23358,0.48175,0.28467,0.0,1.0,0.0,0.0,8.25,8.1,4.15,5.1,3.25,5.0,2.0,11.7,24.3,20.0,0.0,0.0,1.75,1.9,1.0,5.6,4.0,0.9,0.29490742,0.42175925,0.4601852,3.0,6.0,False,0.11111111,A,B,11.0,3.0,27.0,0.19885,0.1902,0.61095,1.05,5.0,3.2,0.0,5.75,5.35,3.05,0.0,2.8,5.0,0.0,19.9,17.1,6.0,16.0,1.0,1.2,2.6,0.0,1.0,8.0,4.0,0.24259259,0.42685184,0.50324076,,,3.0,,,,3.0,4.0,3.0,,,6.0,,,,3.0,3.0,3.0,1.0,,,
12765.0,Jose Guillen,2005 Live,All-Star,R,0.0,0.26282,0.47436,0.26282,1.2,4.0,0.0,0.0,7.7,7.65,0.0,2.7,0.0,5.0,2.0,8.1,15.9,5.0,13.0,0.0,0.0,3.45,2.0,0.0,26.0,4.3,0.2199074,0.31342593,0.45092592,0.0,0.0,False,0.0,D,B,13.0,3.0,27.0,0.21658,0.19786,0.58556,6.7,4.0,0.0,0.0,4.5,4.5,12.75,4.8,1.65,5.0,4.0,5.1,7.9,1.0,21.0,1.0,1.35,1.8,2.0,17.75,0.0,1.2,0.36481482,0.44907406,0.6898148,,,,,,,3.0,,4.0,,,,,,,5.0,,5.0,0.0,,,
12766.0,Nick Johnson,2005 Live,All-Star,L,0.0,0.20896,0.59701,0.19403,1.4,3.0,0.0,0.0,4.2,4.2,4.75,7.05,2.4,5.0,4.0,15.2,17.8,6.0,11.0,0.0,1.6,1.4,1.0,8.05,8.0,1.95,0.25925925,0.43703705,0.41759259,1.0,4.0,False,0.083333336,C,B,12.0,2.0,27.0,0.29412,0.2046,0.50128,2.1,7.0,1.4,0.0,4.25,12.5,6.45,0.0,3.25,5.0,1.0,21.75,20.25,1.0,6.0,1.0,1.75,4.4,0.0,0.9,0.0,8.0,0.33287036,0.54351854,0.66944444,,,1.0,,,,,,,,,5.0,,,,,,,,,,
12767.0,Vinny Castilla,2005 Live,Starter,R,0.0,0.21429,0.57143,0.21428,0.0,1.0,0.0,0.0,10.2,10.25,5.7,8.2,2.75,5.0,0.0,14.6,11.4,13.0,5.0,0.0,2.25,1.75,0.0,8.1,5.0,3.8,0.3712963,0.50648147,0.57453704,3.0,13.0,False,0.055555556,C,D,10.0,1.0,27.0,0.2588,0.14907,0.59213,1.2,5.0,0.0,0.0,4.75,4.5,0.25,4.2,1.1,5.0,1.0,10.0,23.0,6.0,13.0,0.0,0.9,1.5,3.8,20.0,0.0,2.8,0.19444445,0.2962963,0.38287038,,,,,2.0,,,,,,,,,15.0,,,,,,,,
12768.0,Junior Spivey,2005 Live,Starter,R,0.0,0.24194,0.51613,0.24193,1.35,7.0,2.7,0.0,3.9,11.55,5.4,2.75,0.0,5.0,0.0,15.8,13.2,6.0,14.0,1.0,0.0,4.1,3.0,0.0,8.0,3.25,0.31157407,0.45787036,0.63935184,3.0,12.0,True,0.16666667,C,B,13.0,2.0,27.0,0.23457,0.19753,0.5679,1.1,2.0,0.0,0.0,3.75,3.75,3.75,5.4,1.65,5.0,2.0,11.5,24.5,15.0,9.0,0.0,1.35,1.15,1.0,2.5,13.6,0.0,0.21203704,0.33703703,0.3398148,,,,2.0,,,,,,,,,15.0,,,,,,,,,
12769.0,Cristian Guzman,2005 Live,Replacement,S,0.0,0.2437,0.51261,0.24369,1.05,3.0,0.0,0.0,3.3,3.25,2.7,0.0,3.25,5.0,0.0,7.0,20.0,13.0,3.0,0.0,1.75,3.7,2.0,36.0,0.0,0.0,0.1625,0.22731481,0.2939815,9.0,12.0,False,0.11111111,A,D,12.0,2.0,27.0,0.34043,0.14421,0.51536,1.05,0.0,3.75,0.0,2.55,2.55,4.2,6.0,2.1,5.0,0.0,5.85,9.15,14.0,8.0,0.0,0.9,2.4,1.0,0.0,30.5,9.0,0.22870371,0.28287038,0.37453705,,,,,,5.0,,,,,,,,,18.0,,,,,,,
12770.0,Juan Pierre,2005 Live,Reserve,L,0.0,0.12821,0.49744,0.37435,0.0,0.0,0.0,0.0,3.5,3.5,7.9,11.95,4.25,5.0,4.0,11.6,3.4,9.0,10.0,0.0,0.75,0.0,1.5,2.6,29.05,0.0,0.31111112,0.45555556,0.37592593,9.0,12.0,True,0.3888889,A,C,11.0,1.0,27.0,0.28059,0.15824,0.56117,0.0,1.0,4.75,0.0,3.25,3.25,4.5,6.4,2.2,5.0,2.0,9.55,2.45,21.0,5.0,0.0,1.8,1.75,1.0,5.5,26.0,1.6,0.25324073,0.36018518,0.41527778,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
12771.0,Carlos Delgado,2005 Live,MVP,L,0.0,0.26882,0.44086,0.29032,1.65,7.0,0.0,0.0,5.7,5.4,3.3,0.0,2.35,5.0,7.0,7.5,29.5,6.0,15.0,0.0,1.65,1.95,0.0,0.0,0.0,9.0,0.22592592,0.36018518,0.47175926,0.0,0.0,False,0.0,D,B,9.0,2.0,27.0,0.28992,0.17227,0.53781,7.5,5.0,0.0,0.0,3.2,9.3,7.4,2.8,0.0,5.0,3.0,20.3,10.7,6.0,3.0,1.0,0.0,3.2,1.0,13.4,0.0,6.2,0.32592592,0.5416667,0.71944445,,,5.0,,,,,,,,,14.0,,,,,,,,,,
12772.0,Cesar Izturis,2005 Live,Reserve,S,0.0,0.20915,0.5817,0.20915,1.05,1.0,1.4,0.0,5.75,5.35,7.15,10.75,3.75,5.0,0.0,7.7,5.3,12.0,9.0,0.0,1.25,1.6,0.0,16.7,0.0,13.25,0.3537037,0.425,0.525463,3.0,7.0,False,0.1388889,A,C,10.0,3.0,27.0,0.23483,0.17417,0.591,0.0,0.0,0.0,0.0,5.1,5.1,5.1,7.25,2.4,5.0,2.0,6.8,19.2,9.0,7.0,0.0,1.6,2.9,0.0,28.8,0.0,0.75,0.25416666,0.33564815,0.34861112,,,,,,3.0,,,,,,,,,16.0,,,,,,,
12773.0,Jeff Kent,2005 Live,All-Star,R,0.0,0.21053,0.57895,0.21052,1.2,3.0,0.0,0.0,4.8,4.8,5.4,7.7,2.55,5.0,0.0,26.1,13.9,6.0,10.0,0.0,0.45,0.0,0.0,5.8,7.0,4.3,0.28194445,0.5236111,0.44583333,3.0,12.0,False,0.055555556,D,C,11.0,3.0,27.0,0.27679,0.12277,0.60044,6.7,4.0,0.0,0.0,2.75,7.95,4.5,0.0,2.2,5.0,2.0,16.05,24.95,1.0,14.0,1.0,1.8,2.35,0.0,11.75,0.0,0.0,0.26481482,0.43194443,0.60555553,,,2.0,3.0,,,,,,,,26.0,15.0,,,,,,,,,
12774.0,Jason Phillips,2005 Live,Starter,R,0.0,0.24675,0.50649,0.24676,7.9,6.0,0.0,0.0,3.25,8.1,3.85,0.0,2.0,5.0,0.0,13.1,15.9,5.0,7.0,1.0,0.0,0.0,2.0,3.9,11.0,13.0,0.28333333,0.40462962,0.6912037,0.0,0.0,False,0.0,B,D,10.0,2.0,27.0,0.2629,0.1,0.6371,1.5,4.0,0.0,0.0,4.2,4.2,4.2,5.75,1.95,5.0,3.0,5.95,18.05,16.0,0.0,0.0,1.05,1.8,3.5,25.6,0.0,2.25,0.24351852,0.3263889,0.4185185,,4.0,4.0,,,,,,,,4.0,0.0,,,,,,,,1.0,5.0,8.0
12775.0,Shannon Stewart,2005 Live,Reserve,R,0.0,0.17687,0.6,0.22313,1.05,3.0,0.0,0.0,3.2,2.5,5.8,8.65,3.2,5.0,3.0,6.8,16.2,3.0,21.0,0.0,0.8,4.45,1.0,11.0,5.0,3.35,0.26296297,0.3537037,0.38657406,3.0,8.0,False,0.083333336,B,C,10.0,1.0,27.0,0.24757,0.15372,0.59871,1.05,2.0,0.0,0.0,5.85,5.85,4.5,6.4,2.2,5.0,2.0,6.4,27.6,6.0,4.0,0.0,1.8,2.1,3.0,9.65,6.0,6.6,0.27175927,0.34953704,0.43703705,,,,,,,5.0,,,,,,,,,3.0,,,2.0,,,
12776.0,Joe Mauer,2005 Live,Starter,L,0.0,0.1,0.6,0.3,0.0,0.0,0.0,0.0,5.1,4.75,6.0,9.05,3.2,5.0,0.0,8.35,19.65,3.0,13.0,0.0,0.8,0.0,0.25,0.0,29.85,0.0,0.28333333,0.36064816,0.37453705,3.0,17.0,False,0.11111111,A,B,12.0,3.0,27.0,0.14526,0.15789,0.69685,1.05,3.0,0.0,0.0,7.25,7.35,4.7,6.75,2.25,5.0,0.0,13.65,6.35,5.0,14.0,0.0,2.75,2.6,0.0,5.05,13.0,8.25,0.3087963,0.4351852,0.5148148,,1.0,,,,,,,,,3.0,,,,,,,,,-4.0,6.0,6.0
12777.0,Torii Hunter,2005 Live,All-Star,R,0.0,0.25893,0.48214,0.25893,5.4,3.0,0.0,0.0,3.9,11.55,5.4,0.0,2.5,5.0,1.0,12.8,17.2,3.0,10.0,1.0,2.5,3.05,3.0,3.7,5.0,9.0,0.30324075,0.43101853,0.63796294,8.0,11.0,True,0.3611111,C,C,11.0,1.0,27.0,0.22302,0.19424,0.58274,1.2,5.0,0.0,0.0,4.75,4.5,4.75,6.75,2.25,5.0,2.0,9.85,16.15,5.0,12.0,0.0,2.75,1.3,2.0,11.5,8.0,3.25,0.27037036,0.3800926,0.4587963,,,,,,,,4.0,,,,,,,,,3.0,,2.0,,,
12778.0,Jacque Jones,2005 Live,Reserve,L,0.0,0.12698,0.55556,0.31746,1.05,4.0,2.5,0.0,1.4,1.35,2.5,3.2,0.0,5.0,0.0,9.55,17.45,11.0,10.0,0.0,0.0,3.6,2.6,11.0,19.0,2.8,0.15277778,0.24120371,0.30925927,8.0,11.0,True,0.1388889,B,C,10.0,3.0,27.0,0.28221,0.21472,0.50307,5.7,3.0,0.0,0.0,5.4,3.3,7.9,3.2,0.0,5.0,2.0,13.4,15.6,6.0,10.0,1.0,0.0,0.0,0.0,7.7,14.0,4.8,0.27314815,0.41574073,0.5537037,,,,,,,,4.0,2.0,,,,,,,,3.0,3.0,0.0,,,
12779.0,Lew Ford,2005 Live,Reserve,R,0.0,0.3,0.4,0.3,0.0,0.0,0.0,0.0,5.4,5.4,3.6,5.4,1.9,5.0,3.0,8.0,9.0,8.0,12.0,0.0,0.1,0.6,1.0,1.0,34.0,4.6,0.22407408,0.32592592,0.32407406,3.0,10.0,False,0.16666667,C,B,12.0,2.0,27.0,0.26706,0.14035,0.59259,1.05,1.0,5.7,0.0,4.25,4.25,6.25,9.4,3.2,5.0,3.0,13.95,6.05,7.0,12.0,0.0,0.8,0.0,1.7,22.8,0.6,0.0,0.34351853,0.50046295,0.5708333,,,,,,,3.0,4.0,4.0,,,,,,,7.0,7.0,7.0,0.0,,,
12766.0,Nick Johnson,2005 Live,All-Star,L,0.0,0.20896,0.59701,0.19403,1.4,3.0,0.0,0.0,4.2,4.2,4.75,7.05,2.4,5.0,4.0,15.2,12.8,6.0,16.0,0.0,1.6,1.4,1.0,1.05,15.0,1.95,0.25925925,0.43703705,0.41759259,1.0,4.0,False,0.083333336,C,B,12.0,2.0,27.0,0.29412,0.2046,0.50128,2.1,7.0,1.4,0.0,4.25,12.5,6.45,0.0,3.25,5.0,1.0,21.75,26.25,1.0,6.0,1.0,1.75,4.4,0.0,0.9,0.0,2.0,0.33287036,0.54351854,0.66944444,,,1.0,,,,,,,,,5.0,,,,,,,,,,
12767.0,Vinny Castilla,2005 Live,Starter,R,0.0,0.21429,0.57143,0.21428,0.0,1.0,0.0,0.0,10.2,10.25,5.7,8.2,2.75,5.0,0.0,14.6,6.4,12.0,11.0,0.0,2.25,1.75,0.0,8.1,5.0,3.8,0.3712963,0.50648147,0.57453704,3.0,13.0,False,0.055555556,C,D,10.0,1.0,27.0,0.2588,0.14907,0.59213,1.2,5.0,0.0,0.0,4.75,4.5,0.25,4.2,1.1,5.0,1.0,10.0,15.0,9.0,16.0,0.0,0.9,1.5,3.8,20.0,0.0,4.8,0.19444445,0.2962963,0.38287038,,,,,2.0,,,,,,,,,15.0,,,,,,,,
12768.0,Junior Spivey,2005 Live,Starter,R,0.0,0.24194,0.51613,0.24193,1.35,7.0,2.7,0.0,3.9,11.55,5.4,2.75,0.0,5.0,0.0,15.8,7.2,6.0,20.0,1.0,0.0,4.1,3.0,0.0,8.0,3.25,0.31157407,0.45787036,0.63935184,3.0,12.0,True,0.16666667,C,B,13.0,2.0,27.0,0.23457,0.19753,0.5679,1.1,2.0,0.0,0.0,3.75,3.75,3.75,5.4,1.65,5.0,2.0,11.5,24.5,15.0,9.0,0.0,1.35,1.15,1.0,2.5,13.6,0.0,0.21203704,0.33703703,0.3398148,,,,2.0,,,,,,,,,15.0,,,,,,,,,
12769.0,Cristian Guzman,2005 Live,Replacement,S,0.0,0.2437,0.51261,0.24369,1.05,3.0,0.0,0.0,3.3,3.25,2.7,0.0,3.25,5.0,0.0,7.0,18.0,15.0,3.0,0.0,1.75,3.7,2.0,36.0,0.0,0.0,0.1625,0.22731481,0.2939815,9.0,12.0,False,0.11111111,A,D,12.0,2.0,27.0,0.34043,0.14421,0.51536,1.05,0.0,3.75,0.0,2.55,2.55,4.2,6.0,2.1,5.0,0.0,5.85,15.15,11.0,8.0,0.0,0.9,2.4,1.0,0.0,27.5,9.0,0.22870371,0.28287038,0.37453705,,,,,,5.0,,,,,,,,,18.0,,,,,,,
12770.0,Juan Pierre,2005 Live,Reserve,L,0.0,0.12821,0.49744,0.37435,0.0,0.0,0.0,0.0,3.5,3.5,7.9,11.95,4.25,5.0,4.0,11.6,7.4,3.0,15.0,0.0,0.75,0.0,1.5,2.6,26.05,0.0,0.31111112,0.45555556,0.37592593,9.0,12.0,True,0.3888889,A,C,11.0,1.0,27.0,0.28059,0.15824,0.56117,0.0,1.0,4.75,0.0,3.25,3.25,4.5,6.4,2.2,5.0,2.0,9.55,2.45,19.0,7.0,0.0,1.8,1.75,1.0,5.5,26.0,1.6,0.25324073,0.36018518,0.41527778,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
12771.0,Carlos Delgado,2005 Live,MVP,L,0.0,0.26882,0.44086,0.29032,1.65,7.0,0.0,0.0,5.7,5.4,3.3,0.0,2.35,5.0,7.0,7.5,27.5,6.0,17.0,0.0,1.65,1.95,0.0,0.0,0.0,9.0,0.22592592,0.36018518,0.47175926,0.0,0.0,False,0.0,D,B,9.0,2.0,27.0,0.28992,0.17227,0.53781,7.5,5.0,0.0,0.0,3.2,9.3,7.4,2.8,0.0,5.0,3.0,20.3,10.7,6.0,3.0,1.0,0.0,3.2,1.0,13.4,0.0,6.2,0.32592592,0.5416667,0.71944445,,,5.0,,,,,,,,,14.0,,,,,,,,,,
12772.0,Cesar Izturis,2005 Live,Reserve,S,0.0,0.20915,0.5817,0.20915,1.05,1.0,1.4,0.0,5.75,5.35,7.15,10.75,3.75,5.0,0.0,7.7,5.3,7.0,11.0,0.0,1.25,1.6,0.0,16.7,0.0,16.25,0.3537037,0.425,0.525463,3.0,7.0,False,0.1388889,A,C,10.0,3.0,27.0,0.23483,0.17417,0.591,0.0,0.0,0.0,0.0,5.1,5.1,5.1,7.25,2.4,5.0,2.0,6.8,18.2,10.0,7.0,0.0,1.6,2.9,0.0,28.8,0.0,0.75,0.25416666,0.33564815,0.34861112,,,,,,3.0,,,,,,,,,16.0,,,,,,,
12773.0,Jeff Kent,2005 Live,All-Star,R,0.0,0.21053,0.57895,0.21052,1.2,3.0,0.0,0.0,4.8,4.8,5.4,7.7,2.55,5.0,0.0,26.1,5.9,8.0,14.0,0.0,0.45,0.0,0.0,5.8,7.0,6.3,0.28194445,0.5236111,0.44583333,3.0,12.0,False,0.055555556,D,C,11.0,3.0,27.0,0.27679,0.12277,0.60044,6.7,4.0,0.0,0.0,2.75,7.95,4.5,0.0,2.2,5.0,2.0,16.05,24.95,1.0,14.0,1.0,1.8,2.35,0.0,11.75,0.0,0.0,0.26481482,0.43194443,0.60555553,,,2.0,3.0,,,,,,,,26.0,15.0,,,,,,,,,
12774.0,Jason Phillips,2005 Live,Starter,R,0.0,0.24675,0.50649,0.24676,7.9,6.0,0.0,0.0,3.25,8.1,3.85,0.0,2.0,5.0,0.0,13.1,9.9,9.0,11.0,1.0,0.0,0.0,2.0,3.9,5.0,17.0,0.28333333,0.40462962,0.6912037,0.0,0.0,False,0.0,B,D,10.0,2.0,27.0,0.2629,0.1,0.6371,1.5,4.0,0.0,0.0,4.2,4.2,4.2,5.75,1.95,5.0,3.0,5.95,18.05,16.0,0.0,0.0,1.05,1.8,3.5,25.6,0.0,2.25,0.24351852,0.3263889,0.4185185,,4.0,4.0,,,,,,,,4.0,0.0,,,,,,,,1.0,5.0,8.0
12775.0,Shannon Stewart,2005 Live,Reserve,R,0.0,0.17687,0.6,0.22313,1.05,3.0,0.0,0.0,3.2,2.5,5.8,8.65,3.2,5.0,3.0,6.8,12.2,3.0,25.0,0.0,0.8,4.45,1.0,11.0,5.0,3.35,0.26296297,0.3537037,0.38657406,3.0,8.0,False,0.083333336,B,C,10.0,1.0,27.0,0.24757,0.15372,0.59871,1.05,2.0,0.0,0.0,5.85,5.85,4.5,6.4,2.2,5.0,2.0,6.4,33.6,6.0,4.0,0.0,1.8,2.1,3.0,9.65,0.0,6.6,0.27175927,0.34953704,0.43703705,,,,,,,5.0,,,,,,,,,3.0,,,2.0,,,
12776.0,Joe Mauer,2005 Live,Starter,L,0.0,0.1,0.6,0.3,0.0,0.0,0.0,0.0,5.1,4.75,6.0,9.05,3.2,5.0,0.0,8.35,11.65,6.0,16.0,0.0,0.8,0.0,0.25,0.0,29.85,2.0,0.28333333,0.36064816,0.37453705,3.0,17.0,False,0.11111111,A,B,12.0,3.0,27.0,0.14526,0.15789,0.69685,1.05,3.0,0.0,0.0,7.25,7.35,4.7,6.75,2.25,5.0,0.0,13.65,5.35,5.0,18.0,0.0,2.75,2.6,0.0,5.05,6.0,12.25,0.3087963,0.4351852,0.5148148,,1.0,,,,,,,,,3.0,,,,,,,,,-4.0,6.0,6.0
12777.0,Torii Hunter,2005 Live,All-Star,R,0.0,0.25893,0.48214,0.25893,5.4,3.0,0.0,0.0,3.9,11.55,5.4,0.0,2.5,5.0,1.0,12.8,15.2,3.0,12.0,1.0,2.5,3.05,3.0,3.7,5.0,9.0,0.30324075,0.43101853,0.63796294,8.0,11.0,True,0.3611111,C,C,11.0,1.0,27.0,0.22302,0.19424,0.58274,1.2,5.0,0.0,0.0,4.75,4.5,4.75,6.75,2.25,5.0,2.0,9.85,17.15,3.0,17.0,0.0,2.75,1.3,2.0,11.5,0.0,7.25,0.27037036,0.3800926,0.4587963,,,,,,,,4.0,,,,,,,,,3.0,,2.0,,,
12778.0,Jacque Jones,2005 Live,Reserve,L,0.0,0.12698,0.55556,0.31746,1.05,4.0,2.5,0.0,1.4,1.35,2.5,3.2,0.0,5.0,0.0,9.55,16.45,10.0,12.0,0.0,0.0,3.6,2.6,11.0,19.0,2.8,0.15277778,0.24120371,0.30925927,8.0,11.0,True,0.1388889,B,C,10.0,3.0,27.0,0.28221,0.21472,0.50307,5.7,3.0,0.0,0.0,5.4,3.3,7.9,3.2,0.0,5.0,2.0,13.4,11.6,8.0,12.0,1.0,0.0,0.0,0.0,7.7,14.0,4.8,0.27314815,0.41574073,0.5537037,,,,,,,,4.0,2.0,,,,,,,,3.0,3.0,0.0,,,
12779.0,Lew Ford,2005 Live,Reserve,R,0.0,0.3,0.4,0.3,0.0,0.0,0.0,0.0,5.4,5.4,3.6,5.4,1.9,5.0,3.0,8.0,5.0,6.0,17.0,0.0,0.1,0.6,1.0,1.0,34.0,5.6,0.22407408,0.32592592,0.32407406,3.0,10.0,False,0.16666667,C,B,12.0,2.0,27.0,0.26706,0.14035,0.59259,1.05,1.0,5.7,0.0,4.25,4.25,6.25,9.4,3.2,5.0,3.0,13.95,6.05,3.0,16.0,0.0,0.8,0.0,1.7,22.8,0.6,0.0,0.34351853,0.50046295,0.5708333,,,,,,,3.0,4.0,4.0,,,,,,,7.0,7.0,7.0,0.0,,,
12780.0,Derek Jeter,2005 Live,MVP,R,0.0,0.23643,0.52713,0.23644,5.7,3.0,4.25,0.0,5.4,3.3,10.95,4.2,1.25,5.0,0.0,13.75,9.25,5.0,15.0,1.0,3.75,1.0,0.0,3.4,7.8,5.0,0.36157408,0.4888889,0.72083336,5.0,8.0,False,0.083333336,A,B,12.0,2.0,27.0,0.19665,0.28452,0.51883,3.2,2.0,0.0,0.0,5.95,5.9,5.4,7.85,2.7,5.0,1.0,13.7,12.3,10.0,12.0,0.0,3.3,0.0,0.9,1.65,0.0,15.15,0.31944445,0.45555556,0.54583335,,,,,,5.0,,,,,,,,,14.0,,,,,,,
12781.0,Gary Sheffield,2005 Live,MVP,R,0.0,0.24324,0.51351,0.24325,8.1,6.0,0.0,0.0,1.9,5.8,14.4,5.7,1.5,5.0,0.0,12.6,5.4,7.0,14.0,1.0,3.5,2.1,2.0,2.7,0.0,9.3,0.39722222,0.5138889,0.77685183,3.0,14.0,False,0.083333336,D,B,11.0,1.0,27.0,0.26808,0.16755,0.56437,2.25,8.0,0.0,0.0,4.25,4.0,9.3,3.4,1.25,5.0,2.0,17.0,17.0,10.0,0.0,1.0,3.75,2.75,2.0,5.45,9.6,0.0,0.28657407,0.4625,0.53657407,,,,,,,,,5.0,,,,,,,,,3.0,2.0,,,
12782.0,Alex Rodriguez,2005 Live,Hall of Fame,R,0.0,0.24667,0.50667,0.24666,8.55,5.0,0.0,0.0,1.9,5.7,7.8,3.2,0.0,5.0,0.0,28.65,19.35,1.0,4.0,0.0,0.0,3.75,2.0,0.3,0.0,11.8,0.29768518,0.56296295,0.675,10.0,13.0,True,0.1388889,D,B,11.0,1.0,27.0,0.21986,0.17967,0.60047,9.65,7.0,0.0,0.0,1.9,5.7,9.9,3.75,1.2,5.0,3.0,14.25,17.75,6.0,2.0,0.0,4.8,1.65,3.0,1.2,0.0,10.25,0.35277778,0.5125,0.7884259,,,,,5.0,,,,,,,,,14.0,,,,,,,,
12783.0,Hideki Matsui,2005 Live,All-Star,L,0.0,0.31193,0.58716,0.10091,5.7,3.0,1.2,0.0,3.25,9.65,9.1,3.4,1.2,5.0,0.0,10.35,13.65,11.0,5.0,1.0,2.8,2.65,4.0,10.45,0.0,5.6,0.3472222,0.44305557,0.6888889,3.0,10.0,False,0.027777778,D,C,12.0,3.0,27.0,0.2623,0.23315,0.50455,1.25,4.0,0.0,0.0,5.1,5.1,4.75,6.85,2.25,5.0,2.0,10.75,11.25,12.0,5.0,0.0,2.75,1.65,1.0,27.3,0.0,0.0,0.27592593,0.3939815,0.46064815,,,,,,,4.0,5.0,4.0,,,,,,,2.0,2.0,2.0,1.0,,,
12784.0,Jason Giambi,2005 Live,MVP,L,0.0,0.39623,0.39623,0.20754,3.9,2.0,0.0,0.0,3.75,3.5,1.25,0.0,3.75,5.0,11.0,19.75,24.25,10.0,0.0,0.0,1.25,3.6,1.0,8.0,5.0,1.0,0.18194444,0.46666667,0.38518518,0.0,0.0,False,0.0,B,C,11.0,1.0,27.0,0.40304,0.1597,0.43726,7.9,5.0,0.0,0.0,1.4,4.5,9.25,2.2,2.5,5.0,3.0,28.5,7.5,1.0,16.0,1.0,2.5,2.6,2.0,0.0,6.15,0.0,0.30324075,0.5949074,0.6467593,,,5.0,,,,,,,,,14.0,,,,,,,,,,
12785.0,Bernie Williams,2005 Live,Starter,S,0.0,0.27536,0.44928,0.27536,0.0,1.0,0.0,0.0,6.25,6.0,5.4,4.75,5.7,5.0,0.0,12.75,21.25,5.0,17.0,0.0,3.3,1.0,1.0,12.35,0.0,0.25,0.28796297,0.40601853,0.41527778,1.0,4.0,False,0.027777778,D,C,12.0,1.0,27.0,0.26263,0.31313,0.42424,1.9,8.0,0.0,0.0,4.2,4.2,8.2,3.25,0.0,5.0,0.0,11.8,17.2,12.0,6.0,1.0,0.0,3.9,1.0,18.6,0.0,1.75,0.26157406,0.37083334,0.50324076,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
12786.0,Jorge Posada,2005 Live,All-Star,S,0.0,0.24413,0.51174,0.24413,6.85,4.0,0.0,0.0,3.2,2.75,10.35,3.9,1.35,5.0,0.0,9.4,12.6,6.0,13.0,1.0,1.65,1.4,1.0,18.45,0.0,6.1,0.30462962,0.39166668,0.60555553,3.0,20.0,False,0.027777778,D,C,10.0,2.0,27.0,0.30909,0.3303,0.36061,1.5,4.0,0.0,0.0,4.2,4.2,4.2,5.8,1.95,5.0,0.0,16.55,18.45,5.0,13.0,0.0,1.05,3.5,1.8,0.0,16.6,1.2,0.24398148,0.39722222,0.4189815,,3.0,,,,,,,,,1.0,,,,,,,,,-1.0,7.0,3.0
12787.0,Tino Martinez,2005 Live,MVP,L,0.0,0.29,0.52,0.19,1.7,7.0,0.0,0.0,1.65,1.6,7.6,11.4,3.8,5.0,1.0,22.9,15.1,1.0,5.0,0.0,0.2,0.0,2.7,1.75,18.6,0.0,0.3125,0.5337963,0.48703703,3.0,20.0,False,0.027777778,D,C,8.0,2.0,27.0,0.28761,0.23009,0.4823,7.55,5.0,0.0,0.0,1.65,1.6,9.6,3.75,1.1,5.0,0.0,14.35,13.65,5.0,9.0,1.0,0.9,2.85,2.0,20.75,0.0,3.25,0.2800926,0.41296297,0.58935183,,,3.0,,,,,,,,,12.0,,,,,,,,,,
12788.0,Brian Roberts,2005 Live,MVP,S,0.0,0.19298,0.6,0.20702,1.6,6.0,1.9,0.0,4.75,4.75,9.4,3.6,1.2,5.0,1.0,9.4,11.6,6.0,16.0,1.0,0.8,1.65,1.0,0.0,14.95,6.4,0.30277777,0.39907408,0.5537037,7.0,10.0,False,0.22222222,A,B,10.0,1.0,27.0,0.26265,0.20428,0.53307,1.05,4.0,1.1,0.0,7.4,7.45,5.4,7.9,2.7,5.0,0.0,10.4,15.6,6.0,12.0,0.0,0.3,2.5,1.0,0.0,7.1,11.1,0.3472222,0.44351852,0.58981484,,,,5.0,,,,,,,,,8.0,,,,,,,,,
12789.0,Melvin Mora,2005 Live,Reserve,R,0.0,0.30282,0.39437,0.30281,1.9,5.0,0.0,0.0,3.4,3.4,3.2,4.2,1.35,5.0,0.0,8.85,28.15,8.0,12.0,0.0,1.65,2.6,3.1,1.4,11.0,3.8,0.20787036,0.2898148,0.39305556,3.0,8.0,False,0.083333336,A,C,11.0,1.0,27.0,0.25996,0.1174,0.62264,1.5,4.0,0.0,0.0,4.25,4.2,5.4,7.9,2.7,5.0,3.0,9.1,7.9,11.0,15.0,0.0,0.3,1.8,3.5,3.35,14.1,4.0,0.28194445,0.3939815,0.45740741,,,,,1.0,,,,,,,,,21.0,,,,,,,,
12790.0,Miguel Tejada,2005 Live,All-Star,R,0.0,0.23153,0.53695,0.23152,1.05,3.0,0.0,0.0,7.8,7.8,6.3,9.4,3.2,5.0,0.0,18.25,15.75,1.0,13.0,0.0,0.8,1.15,1.0,10.9,0.0,2.6,0.3662037,0.53518516,0.58148146,3.0,12.0,False,0.055555556,B,B,12.0,1.0,27.0,0.23196,0.18729,0.58075,1.5,5.0,0.0,0.0,6.05,6.05,4.75,6.65,2.25,5.0,4.0,3.2,12.8,8.0,8.0,0.0,2.75,0.45,2.0,28.2,0.0,1.35,0.2986111,0.36527777,0.5217593,,,,,,5.0,,,,,,,,,20.0,,,,,,,
12783.0,Hideki Matsui,2005 Live,All-Star,L,0.0,0.31193,0.58716,0.10091,5.7,3.0,1.2,0.0,3.25,9.65,9.1,3.4,1.2,5.0,0.0,10.35,19.65,6.0,7.0,1.0,2.8,2.65,4.0,7.45,0.0,5.6,0.3472222,0.44305557,0.6888889,3.0,10.0,False,0.027777778,D,C,12.0,3.0,27.0,0.2623,0.23315,0.50455,1.25,4.0,0.0,0.0,5.1,5.1,4.75,6.85,2.25,5.0,2.0,10.75,8.25,13.0,7.0,0.0,2.75,1.65,1.0,27.3,0.0,0.0,0.27592593,0.3939815,0.46064815,,,,,,,4.0,5.0,4.0,,,,,,,2.0,2.0,2.0,1.0,,,
12784.0,Jason Giambi,2005 Live,MVP,L,0.0,0.39623,0.39623,0.20754,3.9,2.0,0.0,0.0,3.75,3.5,1.25,0.0,3.75,5.0,11.0,19.75,21.25,12.0,0.0,0.0,1.25,3.6,1.0,8.0,5.0,2.0,0.18194444,0.46666667,0.38518518,0.0,0.0,False,0.0,B,C,11.0,1.0,27.0,0.40304,0.1597,0.43726,7.9,5.0,0.0,0.0,1.4,4.5,9.25,2.2,2.5,5.0,3.0,28.5,1.5,1.0,22.0,1.0,2.5,2.6,2.0,0.0,6.15,0.0,0.30324075,0.5949074,0.6467593,,,5.0,,,,,,,,,14.0,,,,,,,,,,
12785.0,Bernie Williams,2005 Live,Starter,S,0.0,0.27536,0.44928,0.27536,0.0,1.0,0.0,0.0,6.25,6.0,5.4,4.75,5.7,5.0,0.0,12.75,23.25,5.0,21.0,0.0,3.3,1.0,1.0,6.35,0.0,0.25,0.28796297,0.40601853,0.41527778,1.0,4.0,False,0.027777778,D,C,12.0,1.0,27.0,0.26263,0.31313,0.42424,1.9,8.0,0.0,0.0,4.2,4.2,8.2,3.25,0.0,5.0,0.0,11.8,17.2,11.0,8.0,1.0,0.0,3.9,0.0,18.6,0.0,1.75,0.26157406,0.37083334,0.50324076,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
12786.0,Jorge Posada,2005 Live,All-Star,S,0.0,0.24413,0.51174,0.24413,6.85,4.0,0.0,0.0,3.2,2.75,10.35,3.9,1.35,5.0,0.0,9.4,17.6,6.0,14.0,1.0,1.65,1.4,1.0,11.45,0.0,7.1,0.30462962,0.39166668,0.60555553,3.0,20.0,False,0.027777778,D,C,10.0,2.0,27.0,0.30909,0.3303,0.36061,1.5,4.0,0.0,0.0,4.2,4.2,4.2,5.8,1.95,5.0,0.0,16.55,16.45,5.0,15.0,0.0,1.05,3.5,1.8,0.0,16.6,1.2,0.24398148,0.39722222,0.4189815,,3.0,,,,,,,,,1.0,,,,,,,,,-1.0,7.0,3.0
12787.0,Tino Martinez,2005 Live,MVP,L,0.0,0.29,0.52,0.19,1.7,7.0,0.0,0.0,1.65,1.6,7.6,11.4,3.8,5.0,1.0,22.9,13.1,1.0,7.0,0.0,0.2,0.0,2.7,1.75,18.6,0.0,0.3125,0.5337963,0.48703703,3.0,20.0,False,0.027777778,D,C,8.0,2.0,27.0,0.28761,0.23009,0.4823,7.55,5.0,0.0,0.0,1.65,1.6,9.6,3.75,1.1,5.0,0.0,14.35,13.65,5.0,9.0,1.0,0.9,2.85,2.0,20.75,0.0,3.25,0.2800926,0.41296297,0.58935183,,,3.0,,,,,,,,,12.0,,,,,,,,,,
12788.0,Brian Roberts,2005 Live,MVP,S,0.0,0.19298,0.6,0.20702,1.6,6.0,1.9,0.0,4.75,4.75,9.4,3.6,1.2,5.0,1.0,9.4,16.6,6.0,18.0,1.0,0.8,1.65,1.0,0.0,7.95,6.4,0.30277777,0.39907408,0.5537037,7.0,10.0,False,0.22222222,A,B,10.0,1.0,27.0,0.26265,0.20428,0.53307,1.05,4.0,1.1,0.0,7.4,7.45,5.4,7.9,2.7,5.0,0.0,10.4,13.6,6.0,14.0,0.0,0.3,2.5,1.0,0.0,7.1,11.1,0.3472222,0.44351852,0.58981484,,,,5.0,,,,,,,,,8.0,,,,,,,,,
12789.0,Melvin Mora,2005 Live,Reserve,R,0.0,0.30282,0.39437,0.30281,1.9,5.0,0.0,0.0,3.4,3.4,3.2,4.2,1.35,5.0,0.0,8.85,27.15,8.0,13.0,0.0,1.65,2.6,3.1,1.4,11.0,3.8,0.20787036,0.2898148,0.39305556,3.0,8.0,False,0.083333336,A,C,11.0,1.0,27.0,0.25996,0.1174,0.62264,1.5,4.0,0.0,0.0,4.25,4.2,5.4,7.9,2.7,5.0,3.0,9.1,0.9,13.0,21.0,0.0,0.3,1.8,3.5,3.35,14.0,3.1,0.28194445,0.3939815,0.45740741,,,,,1.0,,,,,,,,,21.0,,,,,,,,
12790.0,Miguel Tejada,2005 Live,All-Star,R,0.0,0.23153,0.53695,0.23152,1.05,3.0,0.0,0.0,7.8,7.8,6.3,9.4,3.2,5.0,0.0,18.25,11.75,1.0,15.0,0.0,0.8,1.15,1.0,7.9,0.0,7.6,0.3662037,0.53518516,0.58148146,3.0,12.0,False,0.055555556,B,B,12.0,1.0,27.0,0.23196,0.18729,0.58075,1.5,5.0,0.0,0.0,6.05,6.05,4.75,6.65,2.25,5.0,4.0,3.2,11.8,8.0,9.0,0.0,2.75,0.45,2.0,28.2,0.0,1.35,0.2986111,0.36527777,0.5217593,,,,,,5.0,,,,,,,,,20.0,,,,,,,
12791.0,Javy Lopez,2005 Live,MVP,R,0.0,0.23529,0.52941,0.2353,0.0,2.0,0.0,0.0,9.25,9.25,6.7,10.1,3.4,5.0,6.0,12.4,17.6,2.0,16.0,0.0,0.6,0.75,0.0,0.0,1.05,5.9,0.39074075,0.5611111,0.58981484,0.0,0.0,False,0.0,D,A,10.0,1.0,27.0,0.26768,0.13636,0.59596,1.7,5.0,2.7,0.0,4.2,4.2,5.7,8.6,3.2,5.0,4.0,0.0,21.0,12.0,6.0,0.0,0.8,2.1,2.0,2.4,17.4,0.0,0.32685184,0.3638889,0.5712963,,5.0,,,,,,,,,2.0,,,,,,,,,0.0,6.0,5.0
12792.0,Sammy Sosa,2005 Live,Reserve,R,0.0,0.29091,0.41818,0.29091,1.2,5.0,1.5,0.0,4.75,2.8,6.05,9.05,3.2,5.0,0.0,17.7,9.3,6.0,16.0,0.0,0.8,1.0,1.0,0.0,6.7,10.95,0.31064814,0.47453704,0.51111114,3.0,7.0,False,0.027777778,D,D,9.0,2.0,27.0,0.23585,0.10849,0.65566,1.05,5.0,0.0,0.0,3.2,3.2,2.2,3.2,0.0,5.0,0.0,10.1,22.9,14.0,5.0,0.0,0.0,0.8,2.95,24.6,0.0,4.8,0.16527778,0.2587963,0.32314816,,,,,,,,,4.0,,,,,,,,,5.0,1.0,,,
12793.0,Luis Matos,2005 Live,MVP,R,0.0,0.22222,0.55556,0.22222,1.05,5.0,1.25,0.0,8.7,8.75,13.0,5.1,1.4,5.0,1.0,21.65,12.35,1.0,12.0,0.0,2.6,0.2,0.0,0.0,5.05,2.9,0.4097222,0.61944443,0.69305557,5.0,8.0,False,0.22222222,A,A,12.0,2.0,27.0,0.21036,0.19417,0.59547,0.0,0.0,0.0,0.0,7.6,7.6,7.75,11.65,3.9,5.0,4.0,4.5,9.5,4.0,16.0,0.0,2.1,1.4,3.0,0.0,16.65,3.35,0.37962964,0.45833334,0.52037036,,,,,,,,1.0,,,,,,,,,4.0,,0.0,,,
12792.0,Sammy Sosa,2005 Live,Reserve,R,0.0,0.29091,0.41818,0.29091,1.2,5.0,1.5,0.0,4.75,2.8,6.05,9.05,3.2,5.0,0.0,17.7,3.3,6.0,20.0,0.0,0.8,1.0,1.0,0.0,0.7,18.95,0.31064814,0.47453704,0.51111114,3.0,7.0,False,0.027777778,D,D,9.0,2.0,27.0,0.23585,0.10849,0.65566,1.05,5.0,0.0,0.0,3.2,3.2,2.2,3.2,0.0,5.0,0.0,10.1,11.9,19.0,9.0,0.0,0.0,0.8,2.95,24.6,0.0,6.8,0.16527778,0.2587963,0.32314816,,,,,,,,,4.0,,,,,,,,,5.0,1.0,,,
12793.0,Luis Matos,2005 Live,MVP,R,0.0,0.22222,0.55556,0.22222,1.05,5.0,1.25,0.0,8.7,8.75,13.0,5.1,1.4,5.0,1.0,21.65,6.35,1.0,18.0,0.0,2.6,0.2,0.0,0.0,5.05,2.9,0.4097222,0.61944443,0.69305557,5.0,8.0,False,0.22222222,A,A,12.0,2.0,27.0,0.21036,0.19417,0.59547,0.0,0.0,0.0,0.0,7.6,7.6,7.75,11.65,3.9,5.0,4.0,4.5,9.5,1.0,22.0,0.0,2.1,1.4,0.0,0.0,16.65,3.35,0.37962964,0.45833334,0.52037036,,,,,,,,1.0,,,,,,,,,4.0,,0.0,,,
12794.0,Carl Crawford,2005 Live,Starter,L,0.0,0.21925,0.54011,0.24064,0.0,1.0,4.5,0.0,1.9,1.9,4.5,6.25,2.2,5.0,1.0,7.85,15.15,10.0,16.0,0.0,1.8,1.1,1.0,0.0,21.1,5.75,0.22453703,0.30648148,0.35694444,12.0,15.0,True,0.3611111,B,B,12.0,2.0,27.0,0.2232,0.1775,0.5993,0.0,3.0,6.95,0.0,6.5,6.4,9.25,3.5,1.2,5.0,0.0,4.25,17.75,1.0,14.0,1.0,2.8,4.6,2.0,10.3,7.0,1.5,0.35,0.38935184,0.6398148,,,,,,,1.0,4.0,,,,,,,,1.0,1.0,,0.0,,,
12795.0,Jorge Cantu,2005 Live,All-Star,R,0.0,0.2349,0.5302,0.2349,1.05,5.0,0.0,0.0,6.7,6.65,3.3,3.2,4.2,5.0,1.0,6.2,9.8,18.0,8.0,0.0,1.8,1.3,0.0,22.0,0.0,4.8,0.2787037,0.34537038,0.5009259,3.0,20.0,False,0.027777778,C,B,12.0,1.0,27.0,0.24248,0.1485,0.60902,1.9,7.0,0.0,0.0,6.7,6.7,8.85,3.4,1.1,5.0,0.0,3.25,8.75,11.0,15.0,1.0,0.9,3.3,1.1,20.45,0.0,2.6,0.32083333,0.35092592,0.5949074,,,,5.0,5.0,,,,,,,,20.0,44.0,,,,,,,,
12795.0,Jorge Cantu,2005 Live,All-Star,R,0.0,0.2349,0.5302,0.2349,1.05,5.0,0.0,0.0,6.7,6.65,3.3,3.2,4.2,5.0,1.0,6.2,11.8,16.0,8.0,0.0,1.8,1.3,0.0,22.0,0.0,4.8,0.2787037,0.34537038,0.5009259,3.0,20.0,False,0.027777778,C,B,12.0,1.0,27.0,0.24248,0.1485,0.60902,1.9,7.0,0.0,0.0,6.7,6.7,8.85,3.4,1.1,5.0,0.0,3.25,3.75,13.0,20.0,1.0,0.9,2.4,0.0,20.45,0.0,2.6,0.32083333,0.35092592,0.5949074,,,,5.0,5.0,,,,,,,,20.0,44.0,,,,,,,,
12796.0,Aubrey Huff,2005 Live,Starter,L,0.0,0.21459,0.6,0.18541,1.1,2.0,1.5,0.0,5.1,5.1,4.4,5.0,3.3,5.0,2.0,4.75,5.25,9.0,17.0,0.0,2.7,1.8,1.0,1.0,28.0,3.0,0.2685185,0.3310185,0.44907406,3.0,7.0,False,0.11111111,D,D,12.0,1.0,27.0,0.35255,0.32373,0.32372,6.4,5.0,0.0,0.0,3.2,3.25,8.0,3.2,0.0,5.0,0.0,8.5,11.5,14.0,6.0,1.0,0.0,3.35,3.0,3.8,21.0,1.8,0.2689815,0.3476852,0.57592595,,,3.0,,3.0,,,,5.0,,,0.0,,0.0,,,,3.0,2.0,,,
12797.0,Julio Lugo,2005 Live,Starter,R,0.0,0.18841,0.6,0.21159,0.0,1.0,1.4,0.0,5.7,5.7,5.9,7.85,2.7,5.0,0.0,8.25,11.75,10.0,4.0,0.0,0.3,2.3,2.0,2.0,24.0,8.15,0.2986111,0.375,0.44398147,8.0,11.0,True,0.2777778,A,B,11.0,1.0,27.0,0.23711,0.26598,0.49691,0.0,3.0,1.5,0.0,5.1,4.75,5.75,8.6,3.2,5.0,2.0,11.1,15.9,3.0,14.0,0.0,0.8,1.25,2.0,21.05,0.0,0.0,0.30462962,0.42592594,0.4652778,,,,,,4.0,,,,,,,,,22.0,,,,,,,
12798.0,Vernon Wells,2005 Live,All-Star,R,0.0,0.21978,0.56044,0.21978,1.5,7.0,1.5,0.0,5.25,14.5,9.85,3.75,1.2,5.0,0.0,11.8,17.2,1.0,9.0,1.0,4.8,4.0,4.0,1.4,0.0,4.25,0.40324074,0.5125,0.75277776,3.0,13.0,False,0.083333336,D,B,11.0,1.0,27.0,0.24107,0.18214,0.57679,1.05,4.0,0.0,0.0,5.85,4.95,4.75,6.8,2.25,5.0,0.0,7.8,14.2,6.0,10.0,0.0,2.75,1.0,3.0,18.4,0.0,10.2,0.27916667,0.3513889,0.46388888,,,,,,,,4.0,,,,,,,,,0.0,,2.0,,,
12799.0,Shea Hillenbrand,2005 Live,MVP,R,0.0,0.2356,0.5288,0.2356,6.95,5.0,0.0,0.0,2.5,7.3,14.45,5.7,1.6,5.0,1.0,6.8,11.2,5.0,10.0,0.0,2.4,4.7,5.05,6.05,0.0,7.3,0.4027778,0.475,0.7560185,3.0,13.0,False,0.055555556,D,C,12.0,2.0,27.0,0.2522,0.17813,0.56967,1.05,5.0,0.0,0.0,5.7,5.7,3.3,6.1,3.0,5.0,5.0,7.6,4.4,16.0,6.0,0.0,0.0,1.25,3.0,23.0,0.0,6.9,0.27638888,0.39305556,0.48055556,,,2.0,,5.0,,,,,,,11.0,,22.0,,,,,,,,
12800.0,Corey Koskie,2005 Live,Reserve,L,0.0,0.3871,0.45161,0.16129,5.4,3.0,0.0,0.0,2.4,2.4,1.6,4.25,1.5,5.0,6.0,7.8,18.2,8.0,3.0,0.0,3.5,1.6,1.6,4.0,25.75,3.0,0.19953704,0.32731482,0.43564814,3.0,13.0,False,0.055555556,D,C,9.0,3.0,27.0,0.2607,0.16342,0.57588,1.75,6.0,0.0,0.0,3.25,3.2,4.25,3.75,4.75,5.0,0.0,14.05,19.95,5.0,14.0,0.0,0.25,3.25,0.8,0.0,18.75,0.0,0.24490741,0.375,0.43657407,,,,,2.0,,,,,,,,,16.0,,,,,,,,
12801.0,Gregg Zaun,2005 Live,Starter,S,0.0,0.264,0.472,0.264,1.05,2.0,1.65,0.0,5.7,5.7,4.65,4.2,1.1,5.0,0.0,19.85,4.15,15.0,12.0,0.0,0.9,2.25,2.0,15.0,5.8,0.0,0.2550926,0.43888888,0.44814816,2.0,5.0,False,0.055555556,D,C,9.0,2.0,27.0,0.26875,0.18438,0.54687,1.4,4.0,0.0,0.0,4.2,3.9,5.1,7.55,2.5,5.0,0.0,20.4,17.6,7.0,8.0,0.0,2.5,1.7,1.0,15.7,0.0,0.45,0.26990741,0.4587963,0.43935186,,4.0,,,,,,,,,4.0,,,,,,,,,0.0,4.0,9.0
12802.0,Orlando Hudson,2005 Live,Starter,S,0.0,0.19126,0.6,0.20874,0.0,2.0,1.1,0.0,3.75,3.4,5.1,7.35,2.5,5.0,3.0,6.4,17.6,6.0,14.0,0.0,2.5,2.6,0.0,14.05,0.0,11.65,0.24722221,0.33425927,0.36157408,3.0,15.0,False,0.083333336,D,C,11.0,2.0,27.0,0.19957,0.24512,0.55531,5.4,4.0,0.0,0.0,4.75,4.5,8.95,3.4,1.1,5.0,0.0,6.6,17.4,12.0,0.0,1.0,0.9,2.1,0.0,29.3,0.0,1.6,0.30185184,0.36296296,0.59305555,,,,1.0,,,,,,,,,6.0,,,,,,,,,
12803.0,Alex Rios,2005 Live,All-Star,R,0.0,0.24229,0.51542,0.24229,1.05,5.0,3.2,0.0,3.2,3.2,6.2,9.25,3.2,5.0,0.0,6.75,18.25,3.0,16.0,0.0,0.8,3.75,1.0,14.4,0.0,4.75,0.3175926,0.3800926,0.5347222,5.0,8.0,False,0.22222222,D,B,11.0,2.0,27.0,0.21818,0.35455,0.42727,1.75,5.0,0.0,0.0,5.4,5.35,4.3,6.3,2.2,5.0,1.0,9.1,20.9,9.0,0.0,0.0,1.8,0.9,2.0,25.3,0.0,2.7,0.28055555,0.37407407,0.49814814,,,,,,,,3.0,1.0,,,,,,,,1.0,1.0,0.0,,,
12804.0,Johnny Damon,2005 Live,MVP,L,0.0,0.29961,0.50584,0.19455,1.05,1.0,2.25,0.0,5.55,4.95,7.4,11.0,3.75,5.0,0.0,8.55,18.45,6.0,9.0,0.0,1.25,1.0,1.0,0.0,11.8,9.0,0.36064816,0.4398148,0.5425926,3.0,18.0,False,0.11111111,A,B,12.0,2.0,27.0,0.21351,0.28322,0.50327,1.05,2.0,4.2,0.0,4.75,4.75,6.65,10.0,3.3,5.0,0.0,15.2,6.8,5.0,15.0,0.0,2.7,3.2,1.0,0.4,17.0,0.0,0.3537037,0.49444443,0.5763889,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12805.0,Edgar Renteria,2005 Live,All-Star,R,0.0,0.26296,0.47407,0.26297,0.0,3.0,0.0,0.0,7.0,7.05,5.7,8.1,2.75,5.0,0.0,11.6,6.4,1.0,17.0,0.0,2.25,1.95,2.0,3.3,19.0,4.9,0.32037038,0.42777777,0.49212962,3.0,10.0,False,0.083333336,A,B,12.0,1.0,27.0,0.24568,0.24568,0.50864,0.0,1.0,1.6,0.0,6.6,6.6,6.15,9.2,3.2,5.0,0.0,11.3,6.7,18.0,6.0,0.0,0.8,0.4,2.0,21.65,0.0,1.8,0.33657408,0.4412037,0.5023148,,,,,,5.0,,,,,,,,,32.0,,,,,,,
12806.0,David Ortiz,2005 Live,MVP,L,0.0,0.27189,0.5576,0.17051,1.25,7.0,0.0,0.0,6.2,6.15,7.6,3.2,0.0,5.0,0.0,10.5,8.5,6.0,19.0,1.0,0.0,1.6,2.0,0.2,18.0,4.8,0.28148147,0.3787037,0.5277778,3.0,20.0,False,0.027777778,D,B,8.0,2.0,27.0,0.35215,0.32527,0.32258,8.1,6.0,0.0,0.0,3.6,10.6,6.8,0.0,3.55,5.0,0.0,27.2,12.8,3.0,13.0,0.0,0.45,0.3,0.0,0.6,0.0,7.0,0.35324073,0.6050926,0.79305553,,,4.0,,,,,,,,,30.0,,,,,,,,,,
12807.0,Manny Ramirez,2005 Live,Hall of Fame,R,0.0,0.22951,0.54098,0.22951,10.1,6.0,0.0,0.0,1.75,5.4,3.25,0.0,1.8,5.0,1.0,27.65,12.35,3.0,8.0,0.0,2.2,4.5,3.0,0.0,6.0,7.0,0.2574074,0.52268517,0.6875,0.0,0.0,False,0.0,D,B,10.0,3.0,27.0,0.24779,0.19469,0.55752,8.35,5.0,0.0,0.0,2.75,8.2,9.95,3.2,1.75,5.0,0.0,15.75,13.25,3.0,16.0,1.0,3.25,0.45,3.0,7.3,0.0,0.8,0.36296296,0.5087963,0.76574075,,,,,,,5.0,,,,,,,,,6.0,,,2.0,,,
12808.0,Kevin Millar,2005 Live,Reserve,R,0.0,0.29221,0.41558,0.29221,0.0,0.0,0.0,0.0,4.2,4.2,6.5,9.7,3.25,5.0,2.0,9.95,6.05,5.0,23.0,0.0,1.75,1.8,2.0,19.3,0.0,4.3,0.28101853,0.39166668,0.3587963,0.0,0.0,False,0.0,D,C,9.0,3.0,27.0,0.27655,0.12826,0.59519,0.0,2.0,0.0,0.0,6.6,6.55,4.75,6.85,2.25,5.0,1.0,11.6,38.4,9.0,0.0,0.0,2.75,0.45,0.0,1.65,5.0,4.15,0.2824074,0.39907408,0.43194443,,,3.0,,,,4.0,,3.0,,,10.0,,,,0.0,,0.0,0.0,,,
12809.0,Corey Patterson,2005 Live,Reserve,L,0.0,0.38542,0.51042,0.10416,0.0,2.0,6.0,0.0,4.75,4.65,0.25,0.0,2.5,5.0,0.0,3.25,35.75,9.0,5.0,0.0,2.5,1.35,2.0,0.0,24.0,0.0,0.20046297,0.23055555,0.4263889,3.0,12.0,True,0.25,A,C,12.0,2.0,27.0,0.32188,0.15313,0.52499,1.9,6.0,1.4,0.0,2.25,2.25,5.35,7.7,2.6,5.0,0.0,8.55,18.45,1.0,17.0,0.0,1.4,2.85,1.0,1.0,21.0,1.3,0.26805556,0.3472222,0.47175926,,,,,,,,2.0,,,,,,,,,5.0,,0.0,,,
12797.0,Julio Lugo,2005 Live,Starter,R,0.0,0.18841,0.6,0.21159,0.0,1.0,1.4,0.0,5.7,5.7,5.9,7.85,2.7,5.0,0.0,8.25,11.75,14.0,4.0,0.0,0.3,2.3,2.0,2.0,24.0,4.15,0.2986111,0.375,0.44398147,8.0,11.0,True,0.2777778,A,B,11.0,1.0,27.0,0.23711,0.26598,0.49691,0.0,3.0,1.5,0.0,5.1,4.75,5.75,8.6,3.2,5.0,2.0,11.1,11.9,5.0,16.0,0.0,0.8,1.25,2.0,21.05,0.0,0.0,0.30462962,0.42592594,0.4652778,,,,,,4.0,,,,,,,,,22.0,,,,,,,
12798.0,Vernon Wells,2005 Live,All-Star,R,0.0,0.21978,0.56044,0.21978,1.5,7.0,1.5,0.0,5.25,14.5,9.85,3.75,1.2,5.0,0.0,11.8,12.2,1.0,12.0,1.0,4.8,4.0,4.0,1.4,0.0,6.25,0.40324074,0.5125,0.75277776,3.0,13.0,False,0.083333336,D,B,11.0,1.0,27.0,0.24107,0.18214,0.57679,1.05,4.0,0.0,0.0,5.85,4.95,4.75,6.8,2.25,5.0,0.0,7.8,12.2,8.0,12.0,0.0,2.75,1.0,3.0,11.4,0.0,15.2,0.27916667,0.3513889,0.46388888,,,,,,,,4.0,,,,,,,,,0.0,,2.0,,,
12799.0,Shea Hillenbrand,2005 Live,MVP,R,0.0,0.2356,0.5288,0.2356,6.95,5.0,0.0,0.0,2.5,7.3,14.45,5.7,1.6,5.0,1.0,6.8,11.2,5.0,10.0,0.0,2.4,4.7,5.05,6.05,0.0,7.3,0.4027778,0.475,0.7560185,3.0,13.0,False,0.055555556,D,C,12.0,2.0,27.0,0.2522,0.17813,0.56967,1.05,5.0,0.0,0.0,5.7,5.7,3.3,6.1,3.0,5.0,5.0,7.6,4.4,17.0,6.0,0.0,0.0,1.25,3.0,17.0,0.0,11.9,0.27638888,0.39305556,0.48055556,,,2.0,,5.0,,,,,,,11.0,,22.0,,,,,,,,
12800.0,Corey Koskie,2005 Live,Reserve,L,0.0,0.3871,0.45161,0.16129,5.4,3.0,0.0,0.0,2.4,2.4,1.6,4.25,1.5,5.0,6.0,7.8,19.2,8.0,3.0,0.0,3.5,1.6,1.6,4.0,25.0,2.75,0.19953704,0.32731482,0.43564814,3.0,13.0,False,0.055555556,D,C,9.0,3.0,27.0,0.2607,0.16342,0.57588,1.75,6.0,0.0,0.0,3.25,3.2,4.25,3.75,4.75,5.0,0.0,14.05,18.95,5.0,15.0,0.0,0.25,3.25,0.8,0.0,18.75,0.0,0.24490741,0.375,0.43657407,,,,,2.0,,,,,,,,,16.0,,,,,,,,
12801.0,Gregg Zaun,2005 Live,Starter,S,0.0,0.264,0.472,0.264,1.05,2.0,1.65,0.0,5.7,5.7,4.65,4.2,1.1,5.0,0.0,19.85,4.15,11.0,16.0,0.0,0.9,2.25,2.0,15.0,5.8,0.0,0.2550926,0.43888888,0.44814816,2.0,5.0,False,0.055555556,D,C,9.0,2.0,27.0,0.26875,0.18438,0.54687,1.4,4.0,0.0,0.0,4.2,3.9,5.1,7.55,2.5,5.0,0.0,20.4,17.6,5.0,10.0,0.0,2.5,1.7,1.0,15.7,0.0,0.45,0.26990741,0.4587963,0.43935186,,4.0,,,,,,,,,4.0,,,,,,,,,0.0,4.0,9.0
12802.0,Orlando Hudson,2005 Live,Starter,S,0.0,0.19126,0.6,0.20874,0.0,2.0,1.1,0.0,3.75,3.4,5.1,7.35,2.5,5.0,3.0,6.4,11.6,6.0,19.0,0.0,2.5,2.6,0.0,14.05,0.0,12.65,0.24722221,0.33425927,0.36157408,3.0,15.0,False,0.083333336,D,C,11.0,2.0,27.0,0.19957,0.24512,0.55531,5.4,4.0,0.0,0.0,4.75,4.5,8.95,3.4,1.1,5.0,0.0,6.6,12.4,16.0,0.0,1.0,0.9,2.1,0.0,29.3,0.0,2.6,0.30185184,0.36296296,0.59305555,,,,1.0,,,,,,,,,6.0,,,,,,,,,
12803.0,Alex Rios,2005 Live,All-Star,R,0.0,0.24229,0.51542,0.24229,1.05,5.0,3.2,0.0,3.2,3.2,6.2,9.25,3.2,5.0,0.0,6.75,16.25,3.0,18.0,0.0,0.8,3.75,1.0,14.4,0.0,4.75,0.3175926,0.3800926,0.5347222,5.0,8.0,False,0.22222222,D,B,11.0,2.0,27.0,0.21818,0.35455,0.42727,1.75,5.0,0.0,0.0,5.4,5.35,4.3,6.3,2.2,5.0,1.0,9.1,18.9,11.0,0.0,0.0,1.8,0.9,2.0,25.3,0.0,2.7,0.28055555,0.37407407,0.49814814,,,,,,,,3.0,1.0,,,,,,,,1.0,1.0,0.0,,,
12804.0,Johnny Damon,2005 Live,MVP,L,0.0,0.29961,0.50584,0.19455,1.05,1.0,2.25,0.0,5.55,4.95,7.4,11.0,3.75,5.0,0.0,8.55,24.45,1.0,11.0,0.0,1.25,1.0,1.0,0.0,8.8,9.0,0.36064816,0.4398148,0.5425926,3.0,18.0,False,0.11111111,A,B,12.0,2.0,27.0,0.21351,0.28322,0.50327,1.05,2.0,4.2,0.0,4.75,4.75,6.65,10.0,3.3,5.0,0.0,15.2,7.8,5.0,15.0,0.0,2.7,3.2,0.0,0.4,17.0,0.0,0.3537037,0.49444443,0.5763889,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12805.0,Edgar Renteria,2005 Live,All-Star,R,0.0,0.26296,0.47407,0.26297,0.0,3.0,0.0,0.0,7.0,7.05,5.7,8.1,2.75,5.0,0.0,11.6,4.4,1.0,21.0,0.0,2.25,1.95,2.0,3.3,12.0,9.9,0.32037038,0.42777777,0.49212962,3.0,10.0,False,0.083333336,A,B,12.0,1.0,27.0,0.24568,0.24568,0.50864,0.0,1.0,1.6,0.0,6.6,6.6,6.15,9.2,3.2,5.0,0.0,11.3,6.7,18.0,6.0,0.0,0.8,0.4,2.0,21.65,0.0,1.8,0.33657408,0.4412037,0.5023148,,,,,,5.0,,,,,,,,,32.0,,,,,,,
12806.0,David Ortiz,2005 Live,MVP,L,0.0,0.27189,0.5576,0.17051,1.25,7.0,0.0,0.0,6.2,6.15,7.6,3.2,0.0,5.0,0.0,10.5,6.5,6.0,25.0,1.0,0.0,1.6,2.0,0.2,18.0,0.8,0.28148147,0.3787037,0.5277778,3.0,20.0,False,0.027777778,D,B,8.0,2.0,27.0,0.35215,0.32527,0.32258,8.1,6.0,0.0,0.0,3.6,10.6,6.8,0.0,3.55,5.0,0.0,27.2,8.8,6.0,16.0,0.0,0.45,0.3,0.0,0.6,0.0,5.0,0.35324073,0.6050926,0.79305553,,,4.0,,,,,,,,,30.0,,,,,,,,,,
12807.0,Manny Ramirez,2005 Live,Hall of Fame,R,0.0,0.22951,0.54098,0.22951,10.1,6.0,0.0,0.0,1.75,5.4,3.25,0.0,1.8,5.0,1.0,27.65,17.35,3.0,8.0,0.0,2.2,4.5,3.0,0.0,0.0,8.0,0.2574074,0.52268517,0.6875,0.0,0.0,False,0.0,D,B,10.0,3.0,27.0,0.24779,0.19469,0.55752,8.35,5.0,0.0,0.0,2.75,8.2,9.95,3.2,1.75,5.0,0.0,15.75,7.25,7.0,21.0,1.0,3.25,0.45,0.0,7.3,0.0,0.8,0.36296296,0.5087963,0.76574075,,,,,,,5.0,,,,,,,,,6.0,,,2.0,,,
12808.0,Kevin Millar,2005 Live,Reserve,R,0.0,0.29221,0.41558,0.29221,0.0,0.0,0.0,0.0,4.2,4.2,6.5,9.7,3.25,5.0,2.0,9.95,5.05,5.0,29.0,0.0,1.75,1.8,2.0,12.3,0.0,6.3,0.28101853,0.39166668,0.3587963,0.0,0.0,False,0.0,D,C,9.0,3.0,27.0,0.27655,0.12826,0.59519,0.0,2.0,0.0,0.0,6.6,6.55,4.75,6.85,2.25,5.0,1.0,11.6,35.4,6.0,2.0,0.0,2.75,0.45,0.0,1.65,5.0,8.15,0.2824074,0.39907408,0.43194443,,,3.0,,,,4.0,,3.0,,,10.0,,,,0.0,,0.0,0.0,,,
12809.0,Corey Patterson,2005 Live,Reserve,L,0.0,0.38542,0.51042,0.10416,0.0,2.0,6.0,0.0,4.75,4.65,0.25,0.0,2.5,5.0,0.0,3.25,35.75,9.0,5.0,0.0,2.5,1.35,2.0,0.0,24.0,0.0,0.20046297,0.23055555,0.4263889,3.0,12.0,True,0.25,A,C,12.0,2.0,27.0,0.32188,0.15313,0.52499,1.9,6.0,1.4,0.0,2.25,2.25,5.35,7.7,2.6,5.0,0.0,8.55,12.45,1.0,23.0,0.0,1.4,2.85,1.0,1.0,21.0,1.3,0.26805556,0.3472222,0.47175926,,,,,,,,2.0,,,,,,,,,5.0,,0.0,,,
12810.0,Aramis Ramirez,2005 Live,MVP,R,0.0,0.22222,0.55556,0.22222,2.5,9.0,0.0,0.0,3.2,8.25,11.8,3.6,2.55,5.0,2.0,9.3,4.7,7.0,16.0,1.0,0.45,5.75,6.5,9.4,0.0,0.0,0.36018518,0.4648148,0.66064817,0.0,0.0,False,0.0,D,C,10.0,3.0,27.0,0.25825,0.20388,0.53787,1.65,7.0,0.0,0.0,4.65,4.35,7.85,3.2,0.0,5.0,2.0,8.95,24.05,10.0,8.0,1.0,0.0,1.0,2.0,7.5,0.0,9.8,0.25648147,0.35787037,0.48287037,,,,,3.0,,,,,,,,,26.0,,,,,,,,
12811.0,Jeromy Burnitz,2005 Live,Replacement,L,0.0,0.30939,0.51381,0.1768,1.2,3.0,1.2,0.0,2.75,2.7,5.05,2.5,3.2,5.0,0.0,3.9,20.1,19.0,4.0,0.0,0.8,2.3,2.8,17.0,7.0,4.5,0.20925926,0.24537037,0.35694444,3.0,9.0,False,0.055555556,C,D,10.0,1.0,27.0,0.30876,0.21429,0.47695,1.05,4.0,0.0,0.0,4.5,4.75,4.2,4.75,3.2,5.0,0.0,10.85,14.15,7.0,17.0,0.0,0.8,3.2,2.0,13.3,5.0,3.25,0.24953704,0.35,0.41990742,,,,,,,,3.0,3.0,,,,,,,,3.0,3.0,0.0,,,
12811.0,Jeromy Burnitz,2005 Live,Replacement,L,0.0,0.30939,0.51381,0.1768,1.2,3.0,1.2,0.0,2.75,2.7,5.05,2.5,3.2,5.0,0.0,3.9,14.1,23.0,6.0,0.0,0.8,2.3,2.8,17.0,7.0,4.5,0.20925926,0.24537037,0.35694444,3.0,9.0,False,0.055555556,C,D,10.0,1.0,27.0,0.30876,0.21429,0.47695,1.05,4.0,0.0,0.0,4.5,4.75,4.2,4.75,3.2,5.0,0.0,10.85,17.15,3.0,21.0,0.0,0.8,3.2,2.0,13.3,5.0,0.25,0.24953704,0.35,0.41990742,,,,,,,,3.0,3.0,,,,,,,,3.0,3.0,0.0,,,
12812.0,Derrek Lee,2005 Live,MVP,R,0.0,0.21935,0.56129,0.21936,9.05,6.0,0.0,0.0,2.5,7.55,5.7,0.0,2.8,5.0,1.0,24.8,11.2,15.0,3.0,1.0,1.2,4.4,3.0,0.0,0.8,4.0,0.30648148,0.5453704,0.73425925,3.0,16.0,False,0.11111111,D,B,11.0,2.0,27.0,0.23711,0.17938,0.58351,5.1,4.0,0.0,0.0,4.25,12.65,7.85,3.2,0.0,5.0,0.0,12.65,7.35,7.0,14.0,1.0,0.0,2.25,5.0,0.9,15.8,0.0,0.3476852,0.4648148,0.7013889,,,5.0,,,,,,,,,5.0,,,,,,,,,,
12813.0,Luis Gonzalez,2005 Live,All-Star,L,0.0,0.37559,0.4554,0.16901,1.1,2.0,0.0,0.0,6.0,6.15,6.25,9.1,3.2,5.0,1.0,13.05,12.95,10.0,8.0,0.0,0.8,1.75,3.0,11.75,0.0,6.9,0.32685184,0.45694444,0.4976852,3.0,13.0,False,0.027777778,D,C,10.0,1.0,27.0,0.23888,0.22717,0.53395,1.2,6.0,0.0,0.0,5.7,5.1,3.3,5.1,1.4,5.0,0.0,14.95,12.05,10.0,7.0,0.0,2.6,3.7,1.0,7.0,5.0,11.9,0.25277779,0.3912037,0.46944445,,,,,,,5.0,,,,,,,,,2.0,,,2.0,,,
12814.0,Michael Barrett,2005 Live,MVP,R,0.0,0.25157,0.49686,0.25157,8.95,6.0,1.65,0.0,3.75,11.25,10.7,4.2,1.25,5.0,1.0,24.65,12.35,4.0,0.0,0.0,3.75,0.8,2.0,0.9,1.8,4.0,0.4375,0.675,0.9388889,0.0,0.0,False,0.0,C,B,12.0,2.0,27.0,0.27222,0.21944,0.50834,1.05,3.0,0.0,0.0,7.7,7.65,2.7,3.2,2.1,5.0,1.0,7.2,12.8,10.0,11.0,0.0,3.9,3.3,2.0,4.6,14.0,5.8,0.26296297,0.33888888,0.47592592,,4.0,,,,,,,,,3.0,,,,,,,,,0.0,3.0,6.0
12815.0,Troy Glaus,2005 Live,MVP,R,0.0,0.24691,0.50617,0.24692,11.8,8.0,0.0,0.0,1.35,3.75,3.75,0.0,1.95,5.0,1.0,20.0,6.0,1.0,11.0,1.0,1.05,4.45,5.0,0.0,17.9,4.0,0.26944444,0.46388888,0.75555557,3.0,10.0,False,0.055555556,D,C,11.0,2.0,27.0,0.25064,0.20972,0.53964,5.95,4.0,0.0,0.0,2.5,7.45,5.7,0.0,2.7,5.0,3.0,10.2,13.8,6.0,14.0,1.0,3.3,1.6,4.0,14.8,0.0,3.0,0.26666668,0.3888889,0.5796296,,,,,5.0,,,,,,,,,26.0,,,,,,,,
12816.0,Shawn Green,2005 Live,MVP,L,0.0,0.21472,0.6,0.18528,6.35,4.0,1.6,0.0,1.75,1.75,5.65,3.0,0.0,5.0,0.0,13.5,10.5,1.0,14.0,1.0,0.0,4.9,1.0,6.0,26.0,1.0,0.22777778,0.35277778,0.5217593,3.0,11.0,False,0.083333336,D,B,12.0,1.0,27.0,0.24335,0.21472,0.54193,5.1,4.0,1.1,0.0,5.7,5.7,10.85,4.2,1.25,5.0,0.0,12.0,10.0,6.0,9.0,1.0,3.75,1.2,0.0,22.15,0.0,0.0,0.35555556,0.46666667,0.6787037,,,,,,,,5.0,4.0,,,,,,,,0.0,0.0,1.0,,,
12817.0,JD Drew,2005 Live,MVP,L,0.0,0.4507,0.46479,0.08451,0.0,0.0,0.0,0.0,5.4,5.4,5.1,7.3,2.4,5.0,6.0,24.6,15.4,3.0,5.0,0.0,1.6,0.0,0.6,0.0,18.5,2.7,0.26018518,0.54351854,0.36018518,3.0,7.0,False,0.027777778,D,C,10.0,1.0,27.0,0.35,0.18333,0.46667,7.25,5.0,1.2,0.0,2.1,6.1,8.5,3.25,1.05,5.0,1.0,19.25,6.75,9.0,5.0,0.0,1.95,4.65,4.0,1.2,13.0,2.75,0.31898147,0.50648147,0.68796295,,,,,,,,4.0,3.0,,,,,,,,3.0,3.0,1.0,,,
12818.0,Milton Bradley,2005 Live,MVP,S,0.0,0.30476,0.39048,0.30476,3.4,2.0,0.0,0.0,8.1,8.15,4.5,0.0,2.2,5.0,1.0,1.5,22.5,1.0,16.0,1.0,1.8,1.45,1.0,0.0,27.4,0.0,0.27638888,0.29953703,0.54907405,3.0,15.0,False,0.11111111,A,C,10.0,2.0,27.0,0.23757,0.11326,0.64917,4.75,4.0,0.0,0.0,5.75,5.35,9.95,3.2,1.9,5.0,0.0,14.5,11.5,13.0,6.0,1.0,0.1,1.9,0.0,20.1,0.0,0.0,0.32777777,0.46203703,0.6180556,,,,,,,,4.0,,,,,,,,,2.0,,1.0,,,
12819.0,Clint Barmes,2005 Live,MVP,R,0.0,0.24324,0.51351,0.24325,2.5,8.0,0.0,0.0,4.5,4.2,12.3,2.75,3.4,5.0,2.0,3.4,12.6,19.0,9.0,1.0,0.6,4.3,2.0,0.0,11.45,0.0,0.33472222,0.38472223,0.59583336,3.0,12.0,False,0.11111111,A,B,13.0,3.0,27.0,0.23457,0.23457,0.53086,1.1,4.0,1.1,0.0,7.6,7.55,5.7,7.95,2.7,5.0,3.0,3.0,11.0,19.0,7.0,0.0,3.3,1.35,2.0,0.6,5.0,10.05,0.3537037,0.40925926,0.600463,,,,,,2.0,,,,,,,,,29.0,,,,,,,
12820.0,Todd Helton,2005 Live,All-Star,L,0.0,0.18065,0.6,0.21935,0.0,1.0,1.4,0.0,5.7,5.4,3.9,5.75,1.9,5.0,2.0,12.4,21.6,12.0,6.0,0.0,0.1,1.6,2.0,11.0,7.0,2.25,0.25046295,0.3837963,0.39305556,3.0,20.0,False,0.027777778,D,B,10.0,2.0,27.0,0.28571,0.29841,0.41588,1.65,8.0,0.0,0.0,5.7,16.7,8.15,2.5,1.65,5.0,2.0,20.5,10.5,14.0,2.0,0.0,1.35,1.65,0.0,4.15,2.5,0.0,0.39675927,0.6050926,0.76111114,,,2.0,,,,,,,,,4.0,,,,,,,,,,
12813.0,Luis Gonzalez,2005 Live,All-Star,L,0.0,0.37559,0.4554,0.16901,1.1,2.0,0.0,0.0,6.0,6.15,6.25,9.1,3.2,5.0,1.0,13.05,13.95,12.0,8.0,0.0,0.8,1.75,3.0,5.75,0.0,9.9,0.32685184,0.45694444,0.4976852,3.0,13.0,False,0.027777778,D,C,10.0,1.0,27.0,0.23888,0.22717,0.53395,1.2,6.0,0.0,0.0,5.7,5.1,3.3,5.1,1.4,5.0,0.0,14.95,18.05,10.0,7.0,0.0,2.6,3.7,1.0,7.0,5.0,5.9,0.25277779,0.3912037,0.46944445,,,,,,,5.0,,,,,,,,,2.0,,,2.0,,,
12814.0,Michael Barrett,2005 Live,MVP,R,0.0,0.25157,0.49686,0.25157,8.95,6.0,1.65,0.0,3.75,11.25,10.7,4.2,1.25,5.0,1.0,24.65,12.35,4.0,0.0,0.0,3.75,0.8,2.0,0.9,0.0,5.8,0.4375,0.675,0.9388889,0.0,0.0,False,0.0,C,B,12.0,2.0,27.0,0.27222,0.21944,0.50834,1.05,3.0,0.0,0.0,7.7,7.65,2.7,3.2,2.1,5.0,1.0,7.2,6.8,14.0,15.0,0.0,3.9,3.3,2.0,4.6,6.0,11.8,0.26296297,0.33888888,0.47592592,,4.0,,,,,,,,,3.0,,,,,,,,,0.0,3.0,6.0
12815.0,Troy Glaus,2005 Live,MVP,R,0.0,0.24691,0.50617,0.24692,11.8,8.0,0.0,0.0,1.35,3.75,3.75,0.0,1.95,5.0,1.0,20.0,10.0,1.0,11.0,1.0,1.05,4.25,4.2,0.0,9.9,9.0,0.26944444,0.46388888,0.75555557,3.0,10.0,False,0.055555556,D,C,11.0,2.0,27.0,0.25064,0.20972,0.53964,5.95,4.0,0.0,0.0,2.5,7.45,5.7,0.0,2.7,5.0,3.0,10.2,4.8,8.0,19.0,1.0,3.3,1.6,4.0,14.8,0.0,5.0,0.26666668,0.3888889,0.5796296,,,,,5.0,,,,,,,,,26.0,,,,,,,,
12816.0,Shawn Green,2005 Live,MVP,L,0.0,0.21472,0.6,0.18528,6.35,4.0,1.6,0.0,1.75,1.75,5.65,3.0,0.0,5.0,0.0,13.5,2.5,2.0,19.0,1.0,0.0,4.9,1.0,6.0,18.0,11.0,0.22777778,0.35277778,0.5217593,3.0,11.0,False,0.083333336,D,B,12.0,1.0,27.0,0.24335,0.21472,0.54193,5.1,4.0,1.1,0.0,5.7,5.7,10.85,4.2,1.25,5.0,0.0,12.0,10.0,6.0,9.0,1.0,3.75,1.2,0.0,22.15,0.0,0.0,0.35555556,0.46666667,0.6787037,,,,,,,,5.0,4.0,,,,,,,,0.0,0.0,1.0,,,
12817.0,JD Drew,2005 Live,MVP,L,0.0,0.4507,0.46479,0.08451,0.0,0.0,0.0,0.0,5.4,5.4,5.1,7.3,2.4,5.0,6.0,24.6,15.4,3.0,5.0,0.0,1.6,0.0,0.6,0.0,18.5,2.7,0.26018518,0.54351854,0.36018518,3.0,7.0,False,0.027777778,D,C,10.0,1.0,27.0,0.35,0.18333,0.46667,7.25,5.0,1.2,0.0,2.1,6.1,8.5,3.25,1.05,5.0,1.0,19.25,6.75,7.0,7.0,0.0,1.95,4.65,4.0,1.2,13.0,2.75,0.31898147,0.50648147,0.68796295,,,,,,,,4.0,3.0,,,,,,,,3.0,3.0,1.0,,,
12818.0,Milton Bradley,2005 Live,MVP,S,0.0,0.30476,0.39048,0.30476,3.4,2.0,0.0,0.0,8.1,8.15,4.5,0.0,2.2,5.0,1.0,1.5,11.5,6.0,24.0,1.0,1.8,1.45,1.0,0.0,18.4,7.0,0.27638888,0.29953703,0.54907405,3.0,15.0,False,0.11111111,A,C,10.0,2.0,27.0,0.23757,0.11326,0.64917,4.75,4.0,0.0,0.0,5.75,5.35,9.95,3.2,1.9,5.0,0.0,14.5,10.5,12.0,8.0,1.0,0.1,1.9,0.0,20.1,0.0,0.0,0.32777777,0.46203703,0.6180556,,,,,,,,4.0,,,,,,,,,2.0,,1.0,,,
12819.0,Clint Barmes,2005 Live,MVP,R,0.0,0.24324,0.51351,0.24325,2.5,8.0,0.0,0.0,4.5,4.2,12.3,2.75,3.4,5.0,2.0,3.4,3.6,25.0,11.0,1.0,0.6,4.3,2.0,0.0,11.45,1.0,0.33472222,0.38472223,0.59583336,3.0,12.0,False,0.11111111,A,B,13.0,3.0,27.0,0.23457,0.23457,0.53086,1.1,4.0,1.1,0.0,7.6,7.55,5.7,7.95,2.7,5.0,3.0,3.0,10.0,19.0,4.0,0.0,3.3,1.35,2.0,0.6,5.0,14.05,0.3537037,0.40925926,0.600463,,,,,,2.0,,,,,,,,,29.0,,,,,,,
12820.0,Todd Helton,2005 Live,All-Star,L,0.0,0.18065,0.6,0.21935,0.0,1.0,1.4,0.0,5.7,5.4,3.9,5.75,1.9,5.0,2.0,12.4,31.6,8.0,6.0,0.0,0.1,1.6,2.0,8.0,4.0,2.25,0.25046295,0.3837963,0.39305556,3.0,20.0,False,0.027777778,D,B,10.0,2.0,27.0,0.28571,0.29841,0.41588,1.65,8.0,0.0,0.0,5.7,16.7,8.15,2.5,1.65,5.0,2.0,20.5,8.5,12.0,6.0,0.0,1.35,1.65,0.0,4.15,2.5,0.0,0.39675927,0.6050926,0.76111114,,,2.0,,,,,,,,,4.0,,,,,,,,,,
12821.0,Preston Wilson,2005 Live,MVP,R,0.0,0.27174,0.45652,0.27174,10.35,7.0,0.0,0.0,2.4,6.95,4.5,0.0,2.1,5.0,0.0,15.85,5.15,8.0,15.0,1.0,3.9,2.7,0.0,1.1,6.0,11.0,0.29907408,0.44583333,0.77037036,3.0,9.0,False,0.11111111,C,B,11.0,2.0,27.0,0.2,0.14483,0.65517,5.7,3.0,0.0,0.0,5.4,5.4,6.7,2.5,0.0,5.0,3.0,10.95,18.05,10.0,12.0,0.0,0.0,0.0,2.9,10.9,0.0,6.5,0.275,0.40416667,0.575,,,,,,,4.0,5.0,3.0,,,,,,,2.0,2.0,2.0,1.0,,,
12822.0,Matt Holliday,2005 Live,MVP,R,0.0,0.24286,0.51429,0.24285,7.0,5.0,1.95,0.0,2.75,2.85,16.3,6.1,2.1,5.0,2.0,20.25,13.75,1.0,2.0,0.0,0.9,0.0,0.15,0.0,18.9,0.0,0.40787038,0.61388886,0.75972223,11.0,15.0,True,0.1388889,D,B,11.0,3.0,27.0,0.22222,0.17021,0.60757,1.1,6.0,0.0,0.0,5.4,5.4,5.7,8.6,3.25,5.0,2.0,7.1,18.9,5.0,13.0,0.0,1.75,0.5,2.0,2.9,14.4,0.0,0.3236111,0.40787038,0.5375,,,,,,,5.0,,,,,,,,,7.0,,,2.0,,,
12823.0,Geoff Blum,2005 Live,Replacement,S,0.0,0.26786,0.46429,0.26785,1.4,5.0,0.0,0.0,2.25,2.25,3.15,4.2,1.25,5.0,0.0,5.7,16.3,10.0,14.0,0.0,3.75,5.35,2.0,3.6,21.0,1.8,0.18055555,0.23333333,0.33055556,3.0,7.0,False,0.083333336,D,C,10.0,1.0,27.0,0.3434,0.19623,0.46037,0.0,1.0,0.0,0.0,6.3,6.0,3.9,5.8,1.95,5.0,1.0,12.3,11.7,12.0,11.0,0.0,1.05,2.0,0.0,0.0,15.8,11.2,0.24953704,0.3726852,0.3773148,,,4.0,4.0,2.0,3.0,,,,,,0.0,0.0,24.0,0.0,,,,,,,
12824.0,Mark Loretta,2005 Live,All-Star,R,0.0,0.26271,0.47458,0.26271,0.0,0.0,0.0,0.0,5.4,5.1,8.9,13.35,4.5,5.0,0.0,14.65,5.35,5.0,20.0,0.0,0.5,1.9,2.0,0.0,12.35,4.0,0.36805555,0.5037037,0.4652778,3.0,11.0,False,0.083333336,A,B,10.0,2.0,27.0,0.2233,0.18123,0.59547,0.0,1.0,0.0,0.0,6.35,6.0,6.45,9.65,3.25,5.0,1.0,12.0,11.0,12.0,9.0,0.0,1.75,0.0,0.0,22.2,0.0,1.35,0.3212963,0.44166666,0.44953704,,,,3.0,,,,,,,,,8.0,,,,,,,,,
12825.0,Brian Giles,2005 Live,MVP,L,0.0,0.23153,0.6,0.16847,0.0,1.0,3.4,0.0,6.0,5.95,5.4,7.55,2.5,5.0,0.0,19.65,10.35,10.0,4.0,0.0,2.5,1.05,2.0,1.2,5.0,15.45,0.31296295,0.4949074,0.50046295,9.0,12.0,False,0.11111111,D,C,11.0,2.0,27.0,0.28169,0.28638,0.43193,1.2,7.0,1.2,0.0,6.1,6.1,7.95,3.2,0.0,5.0,0.0,22.0,11.0,7.0,15.0,0.0,0.0,2.7,0.0,0.75,6.8,5.0,0.2939815,0.4976852,0.55972224,,,,,,,,4.0,5.0,,,,,,,,2.0,2.0,1.0,,,
12826.0,Phil Nevin,2005 Live,Starter,R,0.0,0.33136,0.33728,0.33136,0.0,3.0,0.0,0.0,9.35,9.35,3.25,3.9,2.5,5.0,0.0,12.55,27.45,6.0,2.0,0.0,2.5,2.65,2.0,10.4,2.0,4.1,0.29953703,0.41574073,0.51435184,3.0,20.0,False,0.055555556,D,C,11.0,3.0,27.0,0.19897,0.14729,0.65374,1.05,5.0,0.0,0.0,3.2,3.2,4.5,5.4,3.5,5.0,2.0,5.4,17.6,7.0,18.0,0.0,1.5,0.8,2.95,19.3,0.0,2.6,0.23935185,0.30787036,0.39722222,,3.0,5.0,,,,,,,,0.0,8.0,,,,,,,,3.0,0.0,0.0
12827.0,Ryan Klesko,2005 Live,Reserve,L,0.0,0.23913,0.56522,0.19565,0.0,0.0,2.1,0.0,3.9,3.9,3.0,5.1,1.8,5.0,0.0,15.75,25.25,9.0,1.0,0.0,2.2,2.1,2.0,1.0,23.0,1.9,0.20648149,0.3523148,0.3175926,3.0,7.0,False,0.083333336,D,D,11.0,1.0,27.0,0.24927,0.15249,0.59824,1.2,7.0,0.0,0.0,5.1,5.1,6.3,2.4,0.0,5.0,0.0,16.9,11.1,6.0,11.0,1.0,0.0,2.7,1.0,19.6,0.0,6.6,0.24166666,0.39814815,0.46666667,,,,,,,5.0,,,,,,,,,4.0,,,2.0,,,
12828.0,Ramon Hernandez,2005 Live,Reserve,R,0.0,0.20779,0.58442,0.20779,1.05,4.0,2.5,0.0,2.55,2.55,2.95,5.1,2.05,5.0,0.0,6.75,20.25,6.0,13.0,0.0,1.95,3.4,2.0,2.0,20.0,4.9,0.21527778,0.2777778,0.3935185,3.0,20.0,False,0.027777778,C,C,9.0,1.0,27.0,0.21739,0.19565,0.58696,1.25,3.0,0.0,0.0,6.4,6.4,5.4,7.85,2.7,5.0,0.0,5.7,7.3,10.0,13.0,0.0,0.3,1.35,2.0,26.2,0.0,4.15,0.3148148,0.3675926,0.50972223,,3.0,,,,,,,,,5.0,,,,,,,,,-1.0,7.0,11.0
12824.0,Mark Loretta,2005 Live,All-Star,R,0.0,0.26271,0.47458,0.26271,0.0,0.0,0.0,0.0,5.4,5.1,8.9,13.35,4.5,5.0,0.0,14.65,5.35,5.0,24.0,0.0,0.5,0.9,2.0,0.0,11.7,1.65,0.36805555,0.5037037,0.4652778,3.0,11.0,False,0.083333336,A,B,10.0,2.0,27.0,0.2233,0.18123,0.59547,0.0,1.0,0.0,0.0,6.35,6.0,6.45,9.65,3.25,5.0,1.0,12.0,6.0,15.0,11.0,0.0,1.75,0.0,0.0,22.2,0.0,1.35,0.3212963,0.44166666,0.44953704,,,,3.0,,,,,,,,,8.0,,,,,,,,,
12825.0,Brian Giles,2005 Live,MVP,L,0.0,0.23153,0.6,0.16847,0.0,1.0,3.4,0.0,6.0,5.95,5.4,7.55,2.5,5.0,0.0,19.65,10.35,10.0,4.0,0.0,2.5,1.05,2.0,1.2,5.0,15.45,0.31296295,0.4949074,0.50046295,9.0,12.0,False,0.11111111,D,C,11.0,2.0,27.0,0.28169,0.28638,0.43193,1.2,7.0,1.2,0.0,6.1,6.1,7.95,3.2,0.0,5.0,0.0,22.0,10.0,3.0,21.0,0.0,0.0,2.7,0.0,0.75,6.0,4.8,0.2939815,0.4976852,0.55972224,,,,,,,,4.0,5.0,,,,,,,,2.0,2.0,1.0,,,
12826.0,Phil Nevin,2005 Live,Starter,R,0.0,0.33136,0.33728,0.33136,0.0,3.0,0.0,0.0,9.35,9.35,3.25,3.9,2.5,5.0,0.0,12.55,27.45,6.0,2.0,0.0,2.5,2.65,2.0,10.4,2.0,4.1,0.29953703,0.41574073,0.51435184,3.0,20.0,False,0.055555556,D,C,11.0,3.0,27.0,0.19897,0.14729,0.65374,1.05,5.0,0.0,0.0,3.2,3.2,4.5,5.4,3.5,5.0,2.0,5.4,11.6,7.0,24.0,0.0,1.5,0.8,2.95,19.3,0.0,2.6,0.23935185,0.30787036,0.39722222,,3.0,5.0,,,,,,,,0.0,8.0,,,,,,,,3.0,0.0,0.0
12827.0,Ryan Klesko,2005 Live,Reserve,L,0.0,0.23913,0.56522,0.19565,0.0,0.0,2.1,0.0,3.9,3.9,3.0,5.1,1.8,5.0,0.0,15.75,18.25,13.0,1.0,0.0,2.2,2.1,2.0,1.0,23.0,4.9,0.20648149,0.3523148,0.3175926,3.0,7.0,False,0.083333336,D,D,11.0,1.0,27.0,0.24927,0.15249,0.59824,1.2,7.0,0.0,0.0,5.1,5.1,6.3,2.4,0.0,5.0,0.0,16.9,16.1,6.0,11.0,1.0,0.0,2.7,1.0,12.6,0.0,8.6,0.24166666,0.39814815,0.46666667,,,,,,,5.0,,,,,,,,,4.0,,,2.0,,,
12828.0,Ramon Hernandez,2005 Live,Reserve,R,0.0,0.20779,0.58442,0.20779,1.05,4.0,2.5,0.0,2.55,2.55,2.95,5.1,2.05,5.0,0.0,6.75,20.25,6.0,13.0,0.0,1.95,3.4,2.0,2.0,20.0,4.9,0.21527778,0.2777778,0.3935185,3.0,20.0,False,0.027777778,C,C,9.0,1.0,27.0,0.21739,0.19565,0.58696,1.25,3.0,0.0,0.0,6.4,6.4,5.4,7.85,2.7,5.0,0.0,5.7,7.3,10.0,17.0,0.0,0.3,1.35,2.0,19.2,0.0,7.15,0.3148148,0.3675926,0.50972223,,3.0,,,,,,,,,5.0,,,,,,,,,-1.0,7.0,11.0
12829.0,Xavier Nady,2005 Live,All-Star,R,0.0,0.19643,0.6,0.20357,1.2,4.0,0.0,0.0,7.85,7.85,8.8,7.9,9.7,5.0,2.0,16.6,6.4,11.0,4.0,0.0,3.3,0.0,1.95,0.0,3.35,7.1,0.4425926,0.6148148,0.67685187,3.0,20.0,False,0.055555556,D,C,11.0,2.0,27.0,0.23494,0.40964,0.35542,6.55,4.0,1.65,0.0,1.9,1.7,1.45,0.0,0.0,5.0,0.0,5.75,17.25,13.0,14.0,1.0,0.0,1.3,2.45,1.0,26.0,4.0,0.16435185,0.2175926,0.46574074,,,2.0,,3.0,,3.0,4.0,4.0,,,17.0,,0.0,,5.0,5.0,5.0,0.0,,,
12830.0,Sean Burroughs,2005 Live,Replacement,L,0.0,0.23636,0.58182,0.18182,1.4,6.0,0.0,0.0,0.0,0.0,4.2,5.95,1.95,5.0,7.0,1.95,11.05,6.0,24.0,0.0,1.05,1.0,2.6,10.8,12.0,6.05,0.17592593,0.2587963,0.29814816,3.0,20.0,False,0.055555556,B,C,10.0,2.0,27.0,0.22172,0.1448,0.63348,0.0,0.0,3.25,0.0,3.75,3.75,6.55,9.85,3.3,5.0,1.0,12.6,11.4,17.0,0.0,0.0,2.7,1.25,0.0,7.45,18.15,1.0,0.3050926,0.43101853,0.43472221,,,,,4.0,,,,,,,,,18.0,,,,,,,,
12830.0,Sean Burroughs,2005 Live,Replacement,L,0.0,0.23636,0.58182,0.18182,1.4,6.0,0.0,0.0,0.0,0.0,4.2,5.95,1.95,5.0,7.0,1.95,3.05,8.0,30.0,0.0,1.05,1.0,2.6,10.8,12.0,6.05,0.17592593,0.2587963,0.29814816,3.0,20.0,False,0.055555556,B,C,10.0,2.0,27.0,0.22172,0.1448,0.63348,0.0,0.0,3.25,0.0,3.75,3.75,6.55,9.85,3.3,5.0,1.0,12.6,10.4,19.0,0.0,0.0,2.7,1.25,0.0,7.45,18.0,0.15,0.3050926,0.43101853,0.43472221,,,,,4.0,,,,,,,,,18.0,,,,,,,,
12831.0,Omar Vizquel,2005 Live,Reserve,S,0.0,0.2931,0.41379,0.29311,0.0,1.0,0.0,0.0,6.6,6.65,3.2,4.5,1.35,5.0,0.0,10.95,29.05,5.0,11.0,0.0,1.65,2.35,2.0,1.2,11.0,5.5,0.23425926,0.33564815,0.37083334,8.0,11.0,True,0.16666667,A,C,10.0,3.0,27.0,0.27149,0.21719,0.51132,0.0,0.0,2.4,0.0,4.5,4.5,5.85,8.75,3.2,5.0,0.0,11.35,13.65,6.0,17.0,0.0,0.8,2.5,1.0,2.25,19.0,0.25,0.2935185,0.3986111,0.4212963,,,,,,2.0,,,,,,,,,8.0,,,,,,,
12832.0,Edgardo Alfonzo,2005 Live,Starter,R,0.0,0.20833,0.58333,0.20834,1.05,2.0,0.0,0.0,4.2,3.8,6.65,9.95,3.3,5.0,1.0,5.8,18.2,6.0,22.0,0.0,2.7,3.15,3.0,0.15,5.0,5.05,0.30046296,0.36342594,0.43148148,3.0,20.0,False,0.027777778,D,B,10.0,1.0,27.0,0.25066,0.22164,0.5277,0.0,1.0,0.0,0.0,6.3,6.3,6.6,8.0,5.0,5.0,0.0,7.4,8.6,7.0,21.0,0.0,0.0,2.7,3.0,20.1,0.0,0.0,0.32592592,0.39444444,0.4564815,,,,3.0,5.0,,,,,,,,0.0,16.0,,,,,,,,
12833.0,Ray Durham,2005 Live,Starter,S,0.0,0.16038,0.6,0.23962,0.0,1.0,0.0,0.0,6.2,6.25,5.4,7.85,2.7,5.0,0.0,10.3,15.7,5.0,11.0,0.0,3.3,1.75,2.0,24.55,0.0,0.0,0.29074073,0.3861111,0.41990742,3.0,9.0,False,0.055555556,D,B,11.0,3.0,27.0,0.24312,0.16514,0.59174,1.2,2.0,0.0,0.0,6.0,6.15,6.25,9.2,3.2,5.0,1.0,11.6,17.4,7.0,6.0,0.0,0.8,1.65,1.0,18.75,0.0,3.8,0.3287037,0.44537038,0.5023148,,,,2.0,,,,,,,,,12.0,,,,,,,,,
12834.0,Marquis Grissom,2005 Live,Replacement,R,0.0,0.23438,0.53125,0.23437,0.0,0.0,0.0,0.0,5.1,4.75,4.5,6.6,2.25,5.0,0.0,5.7,10.3,13.0,18.0,0.0,2.75,2.25,2.0,17.4,7.0,1.4,0.23796296,0.29074073,0.32916668,3.0,20.0,False,0.055555556,C,D,14.0,2.0,27.0,0.2,0.37778,0.42222,1.05,4.0,0.0,0.0,2.4,2.4,4.25,6.25,2.2,5.0,0.0,6.6,12.4,6.0,17.0,0.0,1.8,2.6,3.95,15.35,9.0,5.75,0.21342592,0.27453703,0.3425926,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12833.0,Ray Durham,2005 Live,Starter,S,0.0,0.16038,0.6,0.23962,0.0,1.0,0.0,0.0,6.2,6.25,5.4,7.85,2.7,5.0,0.0,10.3,13.7,5.0,13.0,0.0,3.3,1.75,2.0,24.55,0.0,0.0,0.29074073,0.3861111,0.41990742,3.0,9.0,False,0.055555556,D,B,11.0,3.0,27.0,0.24312,0.16514,0.59174,1.2,2.0,0.0,0.0,6.0,6.15,6.25,9.2,3.2,5.0,1.0,11.6,17.4,5.0,8.0,0.0,0.8,1.65,1.0,15.75,0.0,6.8,0.3287037,0.44537038,0.5023148,,,,2.0,,,,,,,,,12.0,,,,,,,,,
12834.0,Marquis Grissom,2005 Live,Replacement,R,0.0,0.23438,0.53125,0.23437,0.0,0.0,0.0,0.0,5.1,4.75,4.5,6.6,2.25,5.0,0.0,5.7,2.3,15.0,24.0,0.0,2.75,2.25,2.0,17.4,7.0,1.4,0.23796296,0.29074073,0.32916668,3.0,20.0,False,0.055555556,C,D,14.0,2.0,27.0,0.2,0.37778,0.42222,1.05,4.0,0.0,0.0,2.4,2.4,4.25,6.25,2.2,5.0,0.0,6.6,4.4,7.0,23.0,0.0,1.8,2.6,3.95,15.35,9.0,6.75,0.21342592,0.27453703,0.3425926,,,,,,,,5.0,,,,,,,,,3.0,,2.0,,,
12835.0,Pedro Feliz,2005 Live,Reserve,R,0.0,0.2449,0.5102,0.2449,1.2,5.0,0.0,0.0,5.7,5.7,3.3,4.75,1.5,5.0,0.0,17.7,4.3,9.0,9.0,0.0,3.5,2.1,2.0,2.0,23.0,3.25,0.25138888,0.41527778,0.45972222,0.0,0.0,False,0.0,D,D,11.0,1.0,27.0,0.2544,0.19569,0.54991,1.6,5.0,0.0,0.0,3.25,3.25,3.75,5.4,1.75,5.0,0.0,10.4,8.6,7.0,17.0,0.0,3.25,1.75,3.4,22.0,0.0,5.6,0.22222222,0.31851852,0.3962963,,,2.0,,2.0,,1.0,,,,,15.0,,15.0,,5.0,,,0.0,,,
12836.0,Matt Lawton,2005 Live,Reserve,L,0.0,0.34302,0.53488,0.1221,1.2,3.0,0.0,0.0,2.55,2.55,4.2,6.05,2.1,5.0,0.0,13.5,7.5,20.0,5.0,0.0,3.9,0.45,2.8,28.2,0.0,0.0,0.20972222,0.33472222,0.33194444,3.0,10.0,False,0.16666667,D,C,9.0,2.0,27.0,0.23983,0.197,0.56317,1.05,4.0,0.0,0.0,7.25,7.25,4.75,7.0,2.4,5.0,2.0,11.7,10.3,11.0,5.0,0.0,1.6,2.7,0.0,23.0,2.0,0.0,0.31666666,0.44351852,0.53564817,,,,,,,4.0,,5.0,,,,,,,2.0,,2.0,1.0,,,
12837.0,Jack Wilson,2005 Live,Starter,R,0.0,0.24161,0.51678,0.24161,1.9,5.0,3.9,0.0,4.5,4.2,9.6,2.25,2.85,5.0,0.0,6.9,5.1,9.0,20.0,1.0,0.15,2.8,3.1,0.0,16.0,4.75,0.31666666,0.38055557,0.59166664,3.0,10.0,False,0.083333336,A,C,12.0,1.0,27.0,0.23443,0.14103,0.62454,1.2,4.0,1.35,0.0,3.25,3.2,4.8,7.25,2.4,5.0,1.0,4.75,11.25,16.0,7.0,0.0,1.6,1.8,3.8,25.6,0.0,2.75,0.2587963,0.31203705,0.4324074,,,,,,1.0,,,,,,,,,12.0,,,,,,,
12838.0,Jason Bay,2005 Live,Hall of Fame,R,0.0,0.33333,0.33333,0.33334,1.05,5.0,3.25,0.0,5.9,17.6,14.5,5.7,1.6,5.0,0.0,22.8,12.2,4.0,0.0,0.0,2.4,1.35,0.0,1.35,0.0,4.3,0.50555557,0.71666664,0.8819444,15.0,18.0,True,0.16666667,D,A,12.0,3.0,27.0,0.24502,0.13347,0.62151,7.0,4.0,1.2,0.0,2.4,6.9,7.95,3.2,0.0,5.0,0.0,16.6,13.4,3.0,8.0,1.0,0.0,2.1,5.0,0.45,6.0,14.8,0.30694443,0.46064815,0.6652778,,,,,,,5.0,5.0,,,,,,,,3.0,3.0,,2.0,,,
12839.0,Craig Wilson,2005 Live,All-Star,R,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,8.55,8.55,5.4,7.9,2.7,5.0,2.0,22.7,15.3,6.0,9.0,0.0,3.3,0.45,1.0,1.05,2.0,7.1,0.32962963,0.55833334,0.48796296,3.0,20.0,False,0.055555556,D,A,11.0,2.0,27.0,0.28788,0.18182,0.5303,1.05,3.0,0.0,0.0,3.6,3.4,5.4,4.5,5.7,5.0,9.0,16.25,30.75,5.0,1.0,0.0,0.3,0.0,2.55,0.0,11.5,0.0,0.25601852,0.48981482,0.39166668,,,3.0,,,,5.0,,3.0,,,13.0,,,,3.0,,3.0,0.0,,,
12840.0,Rob Mackowiak,2005 Live,All-Star,L,0.0,0.22034,0.55932,0.22034,0.0,0.0,2.4,0.0,10.6,10.55,3.0,5.4,2.4,5.0,2.0,8.3,13.7,4.0,10.0,0.0,3.6,1.45,1.0,7.0,16.6,1.0,0.3412037,0.43657407,0.58148146,3.0,11.0,False,0.11111111,C,B,11.0,2.0,27.0,0.23383,0.1,0.66617,1.1,5.0,0.0,0.0,4.75,4.5,4.75,6.7,2.25,5.0,0.0,12.6,20.4,12.0,0.0,0.0,2.75,2.4,0.0,3.5,20.0,0.3,0.2689815,0.38564816,0.45462963,,,3.0,3.0,2.0,,,3.0,2.0,,,0.0,17.0,23.0,,,4.0,4.0,0.0,,,
12841.0,Michael Cuddyer,2005 Live,All-Star,R,0.0,0.20588,0.58824,0.20588,1.05,1.0,0.0,0.0,5.85,4.95,4.75,7.0,2.4,5.0,0.0,23.75,16.25,12.0,3.0,0.0,1.6,0.0,0.0,2.4,17.0,0.0,0.2685185,0.48842594,0.41157407,2.0,5.0,False,0.083333336,C,C,10.0,1.0,27.0,0.27381,0.17857,0.54762,6.5,4.0,0.0,0.0,4.5,4.2,6.7,2.5,0.0,5.0,3.0,7.4,12.6,10.0,6.0,1.0,0.0,0.0,3.3,26.8,0.0,4.5,0.26759258,0.3638889,0.5842593,,,3.0,3.0,2.0,,,,2.0,,,0.0,0.0,28.0,,,,0.0,0.0,,,
12836.0,Matt Lawton,2005 Live,Reserve,L,0.0,0.34302,0.53488,0.1221,1.2,3.0,0.0,0.0,2.55,2.55,4.2,6.05,2.1,5.0,0.0,13.5,7.5,20.0,5.0,0.0,3.9,0.45,2.8,28.2,0.0,0.0,0.20972222,0.33472222,0.33194444,3.0,10.0,False,0.16666667,D,C,9.0,2.0,27.0,0.23983,0.197,0.56317,1.05,4.0,0.0,0.0,7.25,7.25,4.75,7.0,2.4,5.0,2.0,11.7,4.3,17.0,5.0,0.0,1.6,2.7,0.0,23.0,2.0,0.0,0.31666666,0.44351852,0.53564817,,,,,,,4.0,,5.0,,,,,,,2.0,,2.0,1.0,,,
12837.0,Jack Wilson,2005 Live,Starter,R,0.0,0.24161,0.51678,0.24161,1.9,5.0,3.9,0.0,4.5,4.2,9.6,2.25,2.85,5.0,0.0,6.9,4.1,5.0,25.0,1.0,0.15,2.8,3.1,0.0,16.0,4.75,0.31666666,0.38055557,0.59166664,3.0,10.0,False,0.083333336,A,C,12.0,1.0,27.0,0.23443,0.14103,0.62454,1.2,4.0,1.35,0.0,3.25,3.2,4.8,7.25,2.4,5.0,1.0,4.75,11.25,16.0,7.0,0.0,1.6,1.8,3.8,25.6,0.0,2.75,0.2587963,0.31203705,0.4324074,,,,,,1.0,,,,,,,,,12.0,,,,,,,
12838.0,Jason Bay,2005 Live,Hall of Fame,R,0.0,0.33333,0.33333,0.33334,1.05,5.0,3.25,0.0,5.9,17.6,14.5,5.7,1.6,5.0,0.0,22.8,12.2,4.0,0.0,0.0,2.4,1.35,0.0,1.35,0.0,4.3,0.50555557,0.71666664,0.8819444,15.0,18.0,True,0.16666667,D,A,12.0,3.0,27.0,0.24502,0.13347,0.62151,7.0,4.0,1.2,0.0,2.4,6.9,7.95,3.2,0.0,5.0,0.0,16.6,7.4,3.0,8.0,1.0,0.0,2.1,5.0,0.45,6.0,20.8,0.30694443,0.46064815,0.6652778,,,,,,,5.0,5.0,,,,,,,,3.0,3.0,,2.0,,,
12839.0,Craig Wilson,2005 Live,All-Star,R,0.0,0.25,0.5,0.25,0.0,0.0,0.0,0.0,8.55,8.55,5.4,7.9,2.7,5.0,2.0,22.7,15.3,6.0,9.0,0.0,3.3,0.45,1.0,1.05,2.0,7.1,0.32962963,0.55833334,0.48796296,3.0,20.0,False,0.055555556,D,A,11.0,2.0,27.0,0.28788,0.18182,0.5303,1.05,3.0,0.0,0.0,3.65,3.35,5.4,4.5,5.7,5.0,9.0,16.25,18.75,10.0,4.0,0.0,3.3,0.0,2.6,0.0,11.45,1.0,0.25601852,0.48981482,0.39166668,,,3.0,,,,5.0,,3.0,,,13.0,,,,3.0,,3.0,0.0,,,
12840.0,Rob Mackowiak,2005 Live,All-Star,L,0.0,0.22034,0.55932,0.22034,0.0,0.0,2.4,0.0,10.6,10.55,3.0,5.4,2.4,5.0,2.0,8.3,12.7,2.0,14.0,0.0,3.6,1.45,1.0,7.0,16.0,0.6,0.3412037,0.43657407,0.58148146,3.0,11.0,False,0.11111111,C,B,11.0,2.0,27.0,0.23383,0.1,0.66617,1.1,5.0,0.0,0.0,4.75,4.5,4.75,6.7,2.25,5.0,0.0,12.6,19.4,13.0,0.0,0.0,2.75,2.4,0.0,3.5,20.0,0.3,0.2689815,0.38564816,0.45462963,,,3.0,3.0,2.0,,,3.0,2.0,,,0.0,17.0,23.0,,,4.0,4.0,0.0,,,
12841.0,Michael Cuddyer,2005 Live,All-Star,R,0.0,0.20588,0.58824,0.20588,1.05,1.0,0.0,0.0,5.85,4.95,4.75,7.0,2.4,5.0,0.0,23.75,20.25,8.0,3.0,0.0,1.6,0.0,0.0,2.4,17.0,0.0,0.2685185,0.48842594,0.41157407,2.0,5.0,False,0.083333336,C,C,10.0,1.0,27.0,0.27381,0.17857,0.54762,6.5,4.0,0.0,0.0,4.5,4.2,6.7,2.5,0.0,5.0,3.0,7.4,12.6,10.0,6.0,1.0,0.0,0.0,3.3,26.8,0.0,4.5,0.26759258,0.3638889,0.5842593,,,3.0,3.0,2.0,,,,2.0,,,0.0,0.0,28.0,,,,0.0,0.0,,,
12842.0,Albert Pujols,2005 Live,Hall of Fame,R,0.0,0.29814,0.40373,0.29813,1.6,7.0,0.0,0.0,4.2,11.65,7.15,2.7,0.0,5.0,0.0,34.55,6.45,11.0,0.0,1.0,0.0,0.75,2.0,6.65,0.0,6.3,0.30833334,0.62824076,0.59675926,10.0,15.0,False,0.11111111,D,C,12.0,2.0,27.0,0.27925,0.12264,0.59811,8.9,6.0,0.0,0.0,2.5,7.4,7.75,2.4,1.5,5.0,2.0,15.9,11.1,7.0,0.0,0.0,3.5,3.6,7.1,16.35,0.0,0.0,0.33287036,0.49861112,0.7550926,,,1.0,,,,,,,,,10.0,,,,,,,,,,
12843.0,Sean Casey,2005 Live,MVP,L,0.0,0.27852,0.55705,0.16443,0.0,1.0,0.0,0.0,7.35,7.35,8.0,12.0,4.2,5.0,1.0,10.25,18.75,5.0,4.0,0.0,1.8,1.65,0.0,6.65,0.0,14.0,0.38796297,0.49212962,0.537963,3.0,20.0,False,0.027777778,D,A,10.0,2.0,27.0,0.21463,0.40488,0.38049,1.2,5.0,0.0,0.0,9.2,9.15,10.05,3.75,1.25,5.0,2.0,8.9,19.1,3.0,10.0,1.0,3.75,1.65,1.0,6.75,0.0,6.25,0.36666667,0.4675926,0.63935184,,,2.0,,,,,,,,,2.0,,,,,,,,,,
12844.0,Ken Griffey,2005 Live,MVP,L,0.0,0.35417,0.51562,0.13021,6.8,4.0,0.0,0.0,1.9,5.4,6.5,0.0,3.35,5.0,3.0,10.4,23.6,6.0,13.0,1.0,1.65,2.6,4.2,4.6,0.0,5.0,0.26342592,0.3875,0.57546294,0.0,0.0,False,0.0,D,B,10.0,1.0,27.0,0.31198,0.27577,0.41225,7.2,4.0,0.0,0.0,2.8,8.4,8.95,3.4,1.2,5.0,0.0,12.25,17.75,11.0,3.0,1.0,0.8,4.4,3.0,12.25,1.6,0.0,0.3375,0.45092592,0.6967593,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
12845.0,Joe Randa,2005 Live,Starter,R,0.0,0.21469,0.57062,0.21469,0.0,2.0,0.0,0.0,10.6,10.55,4.8,4.5,5.4,5.0,0.0,10.6,11.4,20.0,6.0,0.0,0.6,1.45,2.0,0.6,12.0,0.5,0.36435184,0.4625,0.587963,0.0,0.0,False,0.0,D,C,10.0,2.0,27.0,0.23992,0.20363,0.55645,1.25,3.0,0.0,0.0,6.4,6.35,3.2,3.5,2.4,5.0,0.0,7.7,18.3,17.0,2.0,0.0,3.6,1.4,3.0,22.4,0.0,1.5,0.25092593,0.32222223,0.44537038,,,,,5.0,,,,,,,,,16.0,,,,,,,,
12846.0,Rafael Furcal,2005 Live,All-Star,S,0.0,0.2069,0.58621,0.20689,0.0,3.0,2.8,0.0,6.35,6.35,4.75,6.7,2.25,5.0,0.0,10.6,12.4,5.0,11.0,0.0,2.75,1.65,2.0,1.1,17.0,7.3,0.3074074,0.40555555,0.5185185,11.0,14.0,True,0.30555555,A,C,12.0,2.0,27.0,0.20325,0.27642,0.52033,0.0,2.0,4.5,0.0,4.2,3.9,4.5,6.35,2.2,5.0,2.0,13.0,16.0,16.0,2.0,0.0,1.8,2.1,1.0,4.8,15.0,1.65,0.26990741,0.4087963,0.4560185,,,,,,1.0,,,,,,,,,14.0,,,,,,,
12843.0,Sean Casey,2005 Live,MVP,L,0.0,0.27852,0.55705,0.16443,0.0,1.0,0.0,0.0,7.35,7.35,8.0,12.0,4.2,5.0,1.0,10.25,14.75,9.0,8.0,0.0,1.8,1.65,0.0,6.65,0.0,10.0,0.38796297,0.49212962,0.537963,3.0,20.0,False,0.027777778,D,A,10.0,2.0,27.0,0.21463,0.40488,0.38049,1.2,5.0,0.0,0.0,9.2,9.15,10.05,3.75,1.25,5.0,2.0,8.9,25.1,3.0,10.0,1.0,3.75,1.65,1.0,0.75,0.0,6.25,0.36666667,0.4675926,0.63935184,,,2.0,,,,,,,,,2.0,,,,,,,,,,
12844.0,Ken Griffey,2005 Live,MVP,L,0.0,0.35417,0.51562,0.13021,6.8,4.0,0.0,0.0,1.9,5.4,6.5,0.0,3.35,5.0,3.0,10.4,17.6,11.0,18.0,1.0,1.65,2.6,4.2,0.6,0.0,5.0,0.26342592,0.3875,0.57546294,0.0,0.0,False,0.0,D,B,10.0,1.0,27.0,0.31198,0.27577,0.41225,7.2,4.0,0.0,0.0,2.8,8.4,8.95,3.4,1.2,5.0,0.0,12.25,17.75,10.0,4.0,1.0,0.8,4.4,3.0,12.25,1.6,0.0,0.3375,0.45092592,0.6967593,,,,,,,,5.0,,,,,,,,,2.0,,2.0,,,
12845.0,Joe Randa,2005 Live,Starter,R,0.0,0.21469,0.57062,0.21469,0.0,2.0,0.0,0.0,10.6,10.55,4.8,4.5,5.4,5.0,0.0,10.6,6.4,25.0,6.0,0.0,0.6,1.45,2.0,0.6,12.0,0.5,0.36435184,0.4625,0.587963,0.0,0.0,False,0.0,D,C,10.0,2.0,27.0,0.23992,0.20363,0.55645,1.25,3.0,0.0,0.0,6.4,6.35,3.2,3.5,2.4,5.0,0.0,7.7,15.3,19.0,3.0,0.0,3.6,1.4,3.0,22.4,0.0,1.5,0.25092593,0.32222223,0.44537038,,,,,5.0,,,,,,,,,16.0,,,,,,,,
12846.0,Rafael Furcal,2005 Live,All-Star,S,0.0,0.2069,0.58621,0.20689,0.0,3.0,2.8,0.0,6.35,6.35,4.75,6.7,2.25,5.0,0.0,10.6,12.4,5.0,15.0,0.0,2.75,1.65,0.0,1.1,11.0,11.3,0.3074074,0.40555555,0.5185185,11.0,14.0,True,0.30555555,A,C,12.0,2.0,27.0,0.20325,0.27642,0.52033,0.0,2.0,4.5,0.0,4.2,3.9,4.5,6.35,2.2,5.0,2.0,13.0,16.0,16.0,2.0,0.0,1.8,2.1,1.0,4.8,15.0,1.65,0.26990741,0.4087963,0.4560185,,,,,,1.0,,,,,,,,,14.0,,,,,,,
12847.0,Willy Taveras,2005 Live,Starter,R,0.0,0.25967,0.48066,0.25967,0.0,1.0,3.2,0.0,3.8,3.75,7.75,11.6,3.9,5.0,0.0,6.8,21.2,7.0,9.0,0.0,2.1,1.25,1.0,0.0,19.65,0.0,0.3425926,0.40555555,0.48564816,3.0,12.0,True,0.25,A,A,13.0,1.0,27.0,0.23486,0.15963,0.60551,0.0,2.0,1.05,0.0,3.5,3.4,8.7,13.1,4.5,5.0,3.0,4.75,16.25,10.0,5.0,0.0,0.5,0.0,1.6,7.75,17.9,0.0,0.34953704,0.4212963,0.46064815,,,,,,,,4.0,,,,,,,,,2.0,,1.0,,,
12848.0,Craig Biggio,2005 Live,All-Star,R,0.0,0.32463,0.35075,0.32462,1.05,2.0,0.0,0.0,8.25,8.25,5.1,7.05,2.4,5.0,0.0,10.2,9.8,5.0,19.0,0.0,1.6,2.7,2.0,1.65,11.0,5.95,0.32962963,0.42407408,0.5393519,10.0,14.0,False,0.083333336,C,C,12.0,3.0,27.0,0.26761,0.18913,0.54326,1.05,5.0,0.0,0.0,5.7,5.7,3.3,5.95,3.0,5.0,4.0,9.6,12.4,10.0,14.0,0.0,0.0,1.25,3.0,0.0,18.0,1.05,0.275,0.40092593,0.47916666,,,,4.0,,,,,,,,,16.0,,,,,,,,,
12849.0,Morgan Ensberg,2005 Live,Hall of Fame,R,0.0,0.30102,0.39796,0.30102,5.1,4.0,0.0,0.0,5.7,5.4,13.1,5.1,1.5,5.0,4.0,23.9,17.1,5.0,0.0,1.0,0.5,0.0,0.5,2.2,8.9,0.0,0.37407407,0.6324074,0.67407405,3.0,6.0,False,0.11111111,D,B,12.0,2.0,27.0,0.27685,0.18616,0.53699,9.9,7.0,1.35,0.0,1.9,5.4,8.05,2.5,1.6,5.0,0.0,18.85,15.15,5.0,8.0,0.0,2.4,2.7,0.0,0.0,4.7,8.5,0.3398148,0.51435184,0.8046296,,,,,1.0,,,,,,,,,18.0,,,,,,,,
12850.0,Adam Everett,2005 Live,Replacement,R,0.0,0.27602,0.44796,0.27602,0.0,0.0,1.25,0.0,3.5,3.5,5.25,5.1,1.7,5.0,0.0,4.8,12.2,20.0,10.0,0.0,0.3,3.5,3.0,0.0,21.0,7.9,0.21111111,0.25555557,0.29907408,3.0,13.0,True,0.19444445,B,C,13.0,2.0,27.0,0.2959,0.21382,0.49028,1.65,4.0,0.0,0.0,5.4,5.4,3.8,5.7,1.9,5.0,4.0,3.2,23.8,3.0,16.0,0.0,0.1,1.95,3.0,0.0,15.8,4.3,0.2625,0.32916668,0.46388888,,,,,,1.0,,,,,,,,,16.0,,,,,,,
12851.0,Jason Lane,2005 Live,All-Star,R,0.0,0.22449,0.55102,0.22449,1.05,6.0,0.0,0.0,5.4,5.35,5.7,8.25,2.8,5.0,5.0,3.6,19.4,6.0,14.0,0.0,1.2,1.6,2.0,0.0,10.9,4.75,0.31527779,0.39490741,0.52731484,3.0,14.0,False,0.083333336,D,B,10.0,2.0,27.0,0.28198,0.28198,0.43604,1.5,5.0,3.25,0.0,6.0,6.05,6.35,0.0,3.25,5.0,0.0,9.1,22.9,11.0,8.0,1.0,1.75,2.95,3.5,6.4,5.0,0.0,0.29074073,0.375,0.57361114,,,,,,,4.0,3.0,1.0,,,,,,,6.0,6.0,6.0,-2.0,,,
12852.0,Jose Reyes,2005 Live,Starter,S,0.0,0.23837,0.52326,0.23837,1.05,1.0,2.55,0.0,4.5,4.25,6.35,9.5,3.2,5.0,0.0,6.95,13.05,5.0,17.0,0.0,0.8,2.7,2.0,0.0,20.6,2.5,0.31851852,0.38287038,0.48981482,10.0,13.0,True,0.4722222,A,C,12.0,1.0,27.0,0.21768,0.1473,0.63502,0.0,1.0,4.75,0.0,3.2,2.7,5.7,8.2,2.75,5.0,1.0,4.2,18.8,3.0,14.0,0.0,2.25,3.3,1.0,2.35,12.0,12.8,0.28055555,0.3287037,0.43703705,,,,,,4.0,,,,,,,,,18.0,,,,,,,
12853.0,Kazuo Matsui,2005 Live,Replacement,S,0.0,0.18,0.6,0.22,0.0,0.0,5.4,0.0,2.55,2.55,6.45,9.65,3.25,5.0,2.0,4.5,10.5,13.0,14.0,0.0,1.75,2.45,2.0,1.6,18.0,3.35,0.29953703,0.35972223,0.44675925,3.0,15.0,False,0.083333336,A,C,10.0,2.0,27.0,0.17266,0.23022,0.59712,1.05,3.0,0.0,0.0,3.5,1.95,4.25,6.25,2.2,5.0,2.0,6.25,22.75,14.0,5.0,0.0,1.8,3.0,0.0,0.0,26.0,0.0,0.21481481,0.2912037,0.3361111,,,,2.0,,,,,,,,,20.0,,,,,,,,,
12854.0,Carlos Beltran,2005 Live,MVP,S,0.0,0.3,0.4,0.3,5.4,4.0,0.0,0.0,5.7,5.7,13.5,5.0,1.65,5.0,0.0,13.6,11.4,10.0,10.0,1.0,1.35,0.9,0.0,0.0,8.8,5.0,0.3837963,0.50972223,0.6949074,9.0,12.0,True,0.16666667,B,C,14.0,1.0,27.0,0.31757,0.13514,0.54729,1.05,4.0,0.0,0.0,5.75,5.35,3.75,5.4,1.65,5.0,1.0,13.75,15.25,13.0,1.0,0.0,1.35,2.6,1.0,25.5,0.0,1.6,0.25416666,0.39074075,0.44166666,,,,,,,,2.0,,,,,,,,,2.0,,0.0,,,
12855.0,Cliff Floyd,2005 Live,MVP,L,0.0,0.2906,0.5812,0.1282,7.55,5.0,0.0,0.0,1.65,1.6,9.6,3.75,1.1,5.0,2.0,11.9,19.1,5.0,10.0,1.0,0.9,2.85,1.0,14.0,0.0,5.0,0.2800926,0.4087963,0.58935183,3.0,14.0,False,0.11111111,D,B,10.0,1.0,27.0,0.33871,0.15668,0.50461,5.4,4.0,0.0,0.0,3.4,10.3,9.15,3.4,1.2,5.0,2.0,13.6,13.4,5.0,14.0,1.0,1.8,4.3,0.0,0.0,5.45,5.6,0.34583333,0.49027777,0.6782407,,,,,,,1.0,,,,,,,,,1.0,,,0.0,,,
12848.0,Craig Biggio,2005 Live,All-Star,R,0.0,0.32463,0.35075,0.32462,1.05,2.0,0.0,0.0,8.25,8.25,5.1,7.05,2.4,5.0,0.0,10.2,5.8,5.0,24.0,0.0,1.6,2.7,2.0,1.65,5.0,10.95,0.32962963,0.42407408,0.5393519,10.0,14.0,False,0.083333336,C,C,12.0,3.0,27.0,0.26761,0.18913,0.54326,1.05,5.0,0.0,0.0,5.7,5.7,3.3,5.95,3.0,5.0,4.0,9.6,4.4,12.0,20.0,0.0,0.0,1.25,3.0,0.0,18.0,1.05,0.275,0.40092593,0.47916666,,,,4.0,,,,,,,,,16.0,,,,,,,,,
12849.0,Morgan Ensberg,2005 Live,Hall of Fame,R,0.0,0.30102,0.39796,0.30102,5.1,4.0,0.0,0.0,5.7,5.4,13.1,5.1,1.5,5.0,4.0,23.9,17.1,5.0,0.0,1.0,0.5,0.0,0.5,2.2,8.9,0.0,0.37407407,0.6324074,0.67407405,3.0,6.0,False,0.11111111,D,B,12.0,2.0,27.0,0.27685,0.18616,0.53699,9.9,7.0,1.35,0.0,1.9,5.4,8.05,2.5,1.6,5.0,0.0,18.85,21.15,5.0,8.0,0.0,2.4,2.7,0.0,0.0,4.7,2.5,0.3398148,0.51435184,0.8046296,,,,,1.0,,,,,,,,,18.0,,,,,,,,
12850.0,Adam Everett,2005 Live,Replacement,R,0.0,0.27602,0.44796,0.27602,0.0,0.0,1.25,0.0,3.5,3.5,5.25,5.1,1.7,5.0,0.0,4.8,10.2,22.0,10.0,0.0,0.3,3.5,3.0,0.0,21.0,7.9,0.21111111,0.25555557,0.29907408,3.0,13.0,True,0.19444445,B,C,13.0,2.0,27.0,0.2959,0.21382,0.49028,1.65,4.0,0.0,0.0,5.4,5.4,3.8,5.7,1.9,5.0,4.0,3.2,23.8,3.0,16.0,0.0,0.1,1.95,3.0,0.0,15.8,4.3,0.2625,0.32916668,0.46388888,,,,,,1.0,,,,,,,,,16.0,,,,,,,
12851.0,Jason Lane,2005 Live,All-Star,R,0.0,0.22449,0.55102,0.22449,1.05,6.0,0.0,0.0,5.4,5.35,5.7,8.25,2.8,5.0,5.0,3.6,17.4,6.0,16.0,0.0,1.2,1.6,2.0,0.0,10.9,4.75,0.31527779,0.39490741,0.52731484,3.0,14.0,False,0.083333336,D,B,10.0,2.0,27.0,0.28198,0.28198,0.43604,1.5,5.0,3.25,0.0,6.0,6.05,6.35,0.0,3.25,5.0,0.0,9.1,22.9,11.0,8.0,1.0,1.75,2.95,3.5,6.4,5.0,0.0,0.29074073,0.375,0.57361114,,,,,,,4.0,3.0,1.0,,,,,,,6.0,6.0,6.0,-2.0,,,
12852.0,Jose Reyes,2005 Live,Starter,S,0.0,0.23837,0.52326,0.23837,1.05,1.0,2.55,0.0,4.5,4.25,6.35,9.5,3.2,5.0,0.0,6.95,7.05,5.0,23.0,0.0,0.8,2.7,2.0,0.0,20.6,2.5,0.31851852,0.38287038,0.48981482,10.0,13.0,True,0.4722222,A,C,12.0,1.0,27.0,0.21768,0.1473,0.63502,0.0,1.0,4.75,0.0,3.2,2.7,5.7,8.2,2.75,5.0,1.0,4.2,19.8,3.0,16.0,0.0,2.25,3.3,1.0,2.35,5.0,16.8,0.28055555,0.3287037,0.43703705,,,,,,4.0,,,,,,,,,18.0,,,,,,,
12853.0,Kazuo Matsui,2005 Live,Replacement,S,0.0,0.18,0.6,0.22,0.0,0.0,5.4,0.0,2.55,2.55,6.45,9.65,3.25,5.0,2.0,4.5,8.5,10.0,19.0,0.0,1.75,2.45,2.0,1.6,18.0,3.35,0.29953703,0.35972223,0.44675925,3.0,15.0,False,0.083333336,A,C,10.0,2.0,27.0,0.17266,0.23022,0.59712,1.05,3.0,0.0,0.0,3.5,1.95,4.25,6.25,2.2,5.0,2.0,6.25,18.75,16.0,7.0,0.0,1.8,3.0,0.0,0.0,26.0,0.0,0.21481481,0.2912037,0.3361111,,,,2.0,,,,,,,,,20.0,,,,,,,,,
12854.0,Carlos Beltran,2005 Live,MVP,S,0.0,0.3,0.4,0.3,5.4,4.0,0.0,0.0,5.7,5.7,13.5,5.0,1.65,5.0,0.0,13.6,11.4,10.0,10.0,1.0,1.35,0.9,0.0,0.0,8.8,5.0,0.3837963,0.50972223,0.6949074,9.0,12.0,True,0.16666667,B,C,14.0,1.0,27.0,0.31757,0.13514,0.54729,1.05,4.0,0.0,0.0,5.75,5.35,3.75,5.4,1.65,5.0,1.0,13.75,11.25,15.0,1.0,0.0,1.35,2.6,1.0,25.5,0.0,3.6,0.25416666,0.39074075,0.44166666,,,,,,,,2.0,,,,,,,,,2.0,,0.0,,,
12855.0,Cliff Floyd,2005 Live,MVP,L,0.0,0.2906,0.5812,0.1282,7.55,5.0,0.0,0.0,1.65,1.6,9.6,3.75,1.1,5.0,2.0,11.9,25.1,5.0,10.0,1.0,0.9,2.85,1.0,6.75,0.0,6.25,0.2800926,0.4087963,0.58935183,3.0,14.0,False,0.11111111,D,B,10.0,1.0,27.0,0.33871,0.15668,0.50461,5.4,4.0,0.0,0.0,3.4,10.3,9.15,3.4,1.2,5.0,2.0,13.6,9.4,5.0,18.0,1.0,1.8,4.3,0.0,0.0,5.45,5.6,0.34583333,0.49027777,0.6782407,,,,,,,1.0,,,,,,,,,1.0,,,0.0,,,
12856.0,David Wright,2005 Live,Hall of Fame,R,0.0,0.24409,0.51181,0.2441,7.2,5.0,0.0,0.0,2.5,7.45,11.4,4.5,1.2,5.0,1.0,20.0,16.0,3.0,16.0,1.0,2.8,1.35,0.0,0.0,2.1,0.5,0.36342594,0.5578704,0.725,8.0,11.0,True,0.1388889,D,A,12.0,1.0,27.0,0.2731,0.13347,0.59343,1.25,5.0,0.0,0.0,7.3,7.3,10.65,4.2,1.2,5.0,0.0,15.25,21.75,1.0,7.0,1.0,2.8,0.0,0.45,16.85,0.0,0.0,0.34166667,0.48287037,0.5810185,,,,,5.0,,,,,,,,,26.0,,,,,,,,
12857.0,Victor Diaz,2005 Live,MVP,R,0.0,0.25926,0.48148,0.25926,1.5,5.0,0.0,0.0,6.05,6.05,6.0,9.0,3.2,5.0,0.0,21.0,17.0,1.0,9.0,0.0,0.8,0.45,1.0,2.95,12.0,1.0,0.34074074,0.53518516,0.5638889,6.0,9.0,False,0.1388889,D,B,12.0,2.0,27.0,0.2,0.11304,0.68696,8.95,6.0,1.35,0.0,2.5,7.5,5.85,2.25,0.0,5.0,0.0,14.3,13.7,5.0,10.0,1.0,0.0,1.5,6.05,14.3,0.0,2.75,0.31388888,0.4462963,0.76342595,,,,,,,3.0,,3.0,,,,,,,4.0,,4.0,1.0,,,
12858.0,Jimmy Rollins,2005 Live,Reserve,S,0.0,0.25764,0.48472,0.25764,1.35,6.0,1.9,0.0,4.5,4.5,5.85,8.8,3.2,5.0,4.0,6.35,10.65,12.0,12.0,0.0,0.8,1.15,1.0,0.75,17.0,1.2,0.32962963,0.42546296,0.56898147,12.0,15.0,True,0.2777778,A,D,12.0,1.0,27.0,0.29063,0.17344,0.53593,0.0,2.0,2.2,0.0,3.2,2.55,3.6,5.4,1.7,5.0,0.0,7.25,17.75,13.0,7.0,0.0,0.3,2.45,1.0,24.0,9.6,0.0,0.2050926,0.27222222,0.32685184,,,,,,1.0,,,,,,,,,14.0,,,,,,,
12859.0,Bobby Abreu,2005 Live,MVP,L,0.0,0.19298,0.5614,0.24562,1.2,4.0,0.0,0.0,5.1,5.1,4.75,6.8,2.25,5.0,2.0,14.05,6.95,9.0,15.0,0.0,2.75,0.7,1.0,0.0,18.35,4.0,0.275,0.4236111,0.45833334,3.0,12.0,True,0.19444445,C,B,12.0,3.0,27.0,0.26546,0.24742,0.48712,6.75,5.0,0.0,0.0,2.4,7.2,10.9,4.2,1.25,5.0,0.0,24.95,11.05,3.0,7.0,1.0,3.75,1.05,0.0,0.0,2.7,10.8,0.34907407,0.5800926,0.6949074,,,,,,,,,3.0,,,,,,,,,3.0,1.0,,,
12860.0,Pat Burrell,2005 Live,MVP,R,0.0,0.24107,0.51786,0.24107,2.2,8.0,0.0,0.0,3.4,3.3,5.4,7.55,2.55,5.0,0.0,30.55,12.45,8.0,9.0,0.0,0.45,4.5,0.0,0.0,5.65,0.0,0.28611112,0.56898147,0.52037036,0.0,0.0,False,0.0,D,B,10.0,2.0,27.0,0.27955,0.13182,0.58863,2.2,7.0,0.0,0.0,4.75,4.5,8.95,3.4,1.2,5.0,0.0,17.4,26.6,3.0,7.0,1.0,2.8,0.3,2.0,10.9,0.0,0.0,0.28703704,0.44814816,0.5310185,,,,,,,2.0,,,,,,,,,6.0,,,0.0,,,
12861.0,David Bell,2005 Live,Starter,R,0.0,0.31447,0.37107,0.31446,1.05,2.0,0.0,0.0,8.1,8.15,7.9,12.0,4.35,5.0,0.0,10.35,24.65,6.0,9.0,0.0,1.65,1.8,1.0,0.0,0.0,5.0,0.41712964,0.51296294,0.62453705,0.0,0.0,False,0.0,A,C,10.0,1.0,27.0,0.28957,0.10612,0.60431,1.05,1.0,0.0,0.0,5.1,4.75,3.2,4.5,1.35,5.0,2.0,5.9,17.1,5.0,20.0,0.0,1.65,1.25,3.95,24.7,0.0,0.5,0.2125,0.28564814,0.34675926,,,,,2.0,,,,,,,,,24.0,,,,,,,,
12862.0,Mike Lieberthal,2005 Live,All-Star,R,0.0,0.27007,0.45985,0.27008,1.05,3.0,0.0,0.0,11.3,11.3,8.45,0.0,4.25,5.0,0.0,10.55,12.45,7.0,11.0,1.0,0.75,1.65,1.0,7.25,0.0,11.0,0.37361112,0.4712963,0.6537037,0.0,0.0,False,0.0,D,C,10.0,1.0,27.0,0.21092,0.15633,0.63275,0.0,4.0,0.0,0.0,5.1,5.1,4.5,6.4,2.2,5.0,3.0,10.2,11.8,5.0,17.0,0.0,1.8,1.9,4.0,1.4,18.0,1.6,0.2574074,0.37962964,0.4074074,,4.0,,,,,,,,,3.0,,,,,,,,,0.0,7.0,6.0
12863.0,Brady Clark,2005 Live,Starter,R,0.0,0.27692,0.44615,0.27693,1.2,3.0,0.0,0.0,5.1,4.75,5.7,7.9,2.7,5.0,3.0,14.05,12.95,11.0,6.0,0.0,0.3,3.05,2.0,0.0,14.2,6.1,0.29027778,0.44814816,0.4564815,3.0,6.0,False,0.1388889,A,B,11.0,2.0,27.0,0.25649,0.1,0.64351,0.0,3.0,0.0,0.0,5.1,5.1,6.65,10.0,3.4,5.0,4.0,6.05,12.95,5.0,21.0,0.0,0.6,0.9,3.0,7.25,0.0,9.0,0.31712964,0.4101852,0.45324075,,,,,,,,1.0,,,,,,,,,1.0,,0.0,,,
12857.0,Victor Diaz,2005 Live,MVP,R,0.0,0.25926,0.48148,0.25926,1.5,5.0,0.0,0.0,6.05,6.05,6.0,9.0,3.2,5.0,0.0,21.0,17.0,1.0,9.0,0.0,0.8,0.45,1.0,2.95,12.0,1.0,0.34074074,0.53518516,0.5638889,6.0,9.0,False,0.1388889,D,B,12.0,2.0,27.0,0.2,0.11304,0.68696,8.95,6.0,1.35,0.0,2.5,7.5,5.85,2.25,0.0,5.0,0.0,14.3,13.7,5.0,14.0,1.0,0.0,1.5,6.05,6.3,0.0,6.75,0.31388888,0.4462963,0.76342595,,,,,,,3.0,,3.0,,,,,,,4.0,,4.0,1.0,,,
12858.0,Jimmy Rollins,2005 Live,Reserve,S,0.0,0.25764,0.48472,0.25764,1.35,6.0,1.9,0.0,4.5,4.5,5.85,8.8,3.2,5.0,4.0,6.35,7.65,12.0,18.0,0.0,0.8,1.15,1.0,0.75,14.0,1.2,0.32962963,0.42546296,0.56898147,12.0,15.0,True,0.2777778,A,D,12.0,1.0,27.0,0.29063,0.17344,0.53593,0.0,2.0,2.2,0.0,3.2,2.55,3.6,5.4,1.7,5.0,0.0,7.25,16.75,14.0,7.0,0.0,0.3,2.45,1.0,24.0,9.6,0.0,0.2050926,0.27222222,0.32685184,,,,,,1.0,,,,,,,,,14.0,,,,,,,
12859.0,Bobby Abreu,2005 Live,MVP,L,0.0,0.19298,0.5614,0.24562,1.2,4.0,0.0,0.0,5.1,5.1,4.75,6.8,2.25,5.0,2.0,14.05,1.95,9.0,21.0,0.0,2.75,0.7,1.0,0.0,18.15,3.2,0.275,0.4236111,0.45833334,3.0,12.0,True,0.19444445,C,B,12.0,3.0,27.0,0.26546,0.24742,0.48712,6.75,5.0,0.0,0.0,2.4,7.2,10.9,4.2,1.25,5.0,0.0,24.95,11.05,3.0,7.0,1.0,3.75,1.05,0.0,0.0,2.7,10.8,0.34907407,0.5800926,0.6949074,,,,,,,,,3.0,,,,,,,,,3.0,1.0,,,
12860.0,Pat Burrell,2005 Live,MVP,R,0.0,0.24107,0.51786,0.24107,2.2,8.0,0.0,0.0,3.4,3.3,5.4,7.55,2.55,5.0,0.0,30.55,6.45,10.0,13.0,0.0,0.45,4.5,0.0,0.0,5.65,0.0,0.28611112,0.56898147,0.52037036,0.0,0.0,False,0.0,D,B,10.0,2.0,27.0,0.27955,0.13182,0.58863,2.2,7.0,0.0,0.0,4.75,4.5,8.95,3.4,1.2,5.0,0.0,17.4,26.6,3.0,7.0,1.0,2.8,0.3,2.0,10.9,0.0,0.0,0.28703704,0.44814816,0.5310185,,,,,,,2.0,,,,,,,,,6.0,,,0.0,,,
12861.0,David Bell,2005 Live,Starter,R,0.0,0.31447,0.37107,0.31446,1.05,2.0,0.0,0.0,8.1,8.15,7.9,12.0,4.35,5.0,0.0,10.35,24.65,6.0,9.0,0.0,1.65,1.8,1.0,0.0,0.0,5.0,0.41712964,0.51296294,0.62453705,0.0,0.0,False,0.0,A,C,10.0,1.0,27.0,0.28957,0.10612,0.60431,1.05,1.0,0.0,0.0,5.1,4.75,3.2,4.5,1.35,5.0,2.0,5.9,13.1,5.0,24.0,0.0,1.65,1.25,3.95,24.7,0.0,0.5,0.2125,0.28564814,0.34675926,,,,,2.0,,,,,,,,,24.0,,,,,,,,
12862.0,Mike Lieberthal,2005 Live,All-Star,R,0.0,0.27007,0.45985,0.27008,1.05,3.0,0.0,0.0,11.3,11.3,8.45,0.0,4.25,5.0,0.0,10.55,18.45,3.0,15.0,1.0,0.75,1.65,0.0,7.25,0.0,6.0,0.37361112,0.4712963,0.6537037,0.0,0.0,False,0.0,D,C,10.0,1.0,27.0,0.21092,0.15633,0.63275,0.0,4.0,0.0,0.0,5.1,5.1,4.5,6.4,2.2,5.0,3.0,10.2,5.8,5.0,23.0,0.0,1.8,1.9,4.0,1.4,18.0,1.6,0.2574074,0.37962964,0.4074074,,4.0,,,,,,,,,3.0,,,,,,,,,0.0,7.0,6.0
12863.0,Brady Clark,2005 Live,Starter,R,0.0,0.27692,0.44615,0.27693,1.2,3.0,0.0,0.0,5.1,4.75,5.7,7.9,2.7,5.0,3.0,14.05,11.95,10.0,8.0,0.0,0.3,3.05,2.0,0.0,14.2,6.1,0.29027778,0.44814816,0.4564815,3.0,6.0,False,0.1388889,A,B,11.0,2.0,27.0,0.25649,0.1,0.64351,0.0,3.0,0.0,0.0,5.1,5.1,6.65,10.0,3.4,5.0,4.0,6.05,12.95,5.0,21.0,0.0,0.6,0.9,3.0,7.25,0.0,9.0,0.31712964,0.4101852,0.45324075,,,,,,,,1.0,,,,,,,,,1.0,,0.0,,,
12864.0,Lyle Overbay,2005 Live,All-Star,L,0.0,0.25893,0.58036,0.16071,5.1,4.0,0.0,0.0,3.75,3.5,5.1,7.2,2.4,5.0,2.0,3.4,15.6,13.0,9.0,0.0,1.6,0.0,1.4,21.15,0.0,4.8,0.29212964,0.34212962,0.5564815,3.0,20.0,False,0.027777778,B,B,12.0,1.0,27.0,0.23725,0.12745,0.6353,1.05,3.0,0.0,0.0,5.25,4.95,5.7,8.0,2.7,5.0,0.0,15.85,9.15,1.0,18.0,0.0,3.3,1.0,0.0,19.05,0.0,5.0,0.29305556,0.4398148,0.45833334,,,1.0,,,,,,,,,10.0,,,,,,,,,,
12865.0,Carlos Lee,2005 Live,Reserve,R,0.0,0.26012,0.47977,0.26011,1.25,4.0,0.0,0.0,4.2,3.75,1.8,4.5,1.35,5.0,0.0,15.5,14.5,14.0,8.0,0.0,1.65,3.75,3.25,0.0,18.0,3.5,0.19768518,0.3412037,0.36157408,6.0,9.0,False,0.1388889,D,D,10.0,1.0,27.0,0.24294,0.15631,0.60075,1.7,7.0,0.0,0.0,5.7,5.4,7.3,2.25,1.65,5.0,1.0,7.8,8.2,5.0,20.0,1.0,1.35,2.6,5.3,4.0,12.0,3.75,0.2777778,0.35925925,0.525,,,,,,,4.0,,,,,,,,,4.0,,,2.0,,,
12866.0,Geoff Jenkins,2005 Live,All-Star,L,0.0,0.26613,0.53226,0.20161,0.0,3.0,0.0,0.0,6.65,6.65,3.9,5.8,1.9,5.0,5.0,7.4,33.6,5.0,6.0,0.0,0.1,1.35,1.0,0.45,0.0,15.2,0.26759258,0.3824074,0.4324074,0.0,0.0,False,0.0,D,A,10.0,3.0,27.0,0.23559,0.16541,0.599,5.1,4.0,0.0,0.0,4.25,12.6,8.0,0.0,4.4,5.0,2.0,14.25,27.75,1.0,3.0,1.0,0.6,3.3,0.0,0.75,9.0,2.0,0.35972223,0.5101852,0.712963,,,,,,,,,2.0,,,,,,,,,3.0,0.0,,,
12866.0,Geoff Jenkins,2005 Live,All-Star,L,0.0,0.26613,0.53226,0.20161,0.0,3.0,0.0,0.0,6.65,6.65,3.9,5.8,1.9,5.0,5.0,7.4,21.6,10.0,12.0,0.0,0.1,1.35,1.0,0.45,0.0,16.2,0.26759258,0.3824074,0.4324074,0.0,0.0,False,0.0,D,A,10.0,3.0,27.0,0.23559,0.16541,0.599,5.1,4.0,0.0,0.0,4.25,12.6,8.0,0.0,4.4,5.0,2.0,14.25,27.75,1.0,3.0,1.0,0.6,3.3,0.0,0.75,9.0,2.0,0.35972223,0.5101852,0.712963,,,,,,,,,2.0,,,,,,,,,3.0,0.0,,,
12867.0,Damian Miller,2005 Live,Reserve,R,0.0,0.24638,0.50725,0.24637,0.0,0.0,0.0,0.0,6.2,6.2,4.75,6.65,2.25,5.0,0.0,12.35,34.65,5.0,9.0,0.0,2.75,0.8,1.0,4.05,0.0,7.35,0.26435184,0.3787037,0.37916666,0.0,0.0,False,0.0,B,C,10.0,2.0,27.0,0.19737,0.11513,0.6875,1.05,4.0,0.0,0.0,5.7,5.7,3.3,3.4,2.2,5.0,3.0,6.0,26.0,3.0,11.0,0.0,1.8,0.0,2.25,24.6,0.0,0.0,0.23935185,0.32268518,0.42962962,,3.0,,,,,,,,,1.0,,,,,,,,,-2.0,4.0,3.0
12868.0,Mike Piazza,2005 Live,All-Star,R,0.0,0.2619,0.47619,0.26191,5.7,4.0,0.0,0.0,4.2,4.2,8.8,0.0,4.5,5.0,0.0,15.95,13.05,1.0,16.0,1.0,0.5,2.1,2.0,0.0,18.0,2.0,0.29537037,0.44305557,0.587037,0.0,0.0,False,0.0,D,C,9.0,2.0,27.0,0.23622,0.15748,0.6063,1.35,5.0,0.0,0.0,5.1,4.75,3.75,5.7,1.7,5.0,0.0,12.2,10.8,5.0,22.0,0.0,0.3,0.9,3.0,17.15,0.0,4.3,0.25324073,0.3662037,0.4513889,,5.0,,,,,,,,,1.0,,,,,,,,,2.0,3.0,3.0
12869.0,Doug Mientkiewicz,2005 Live,All-Star,L,0.0,0.31111,0.51111,0.17778,6.0,4.0,0.0,0.0,1.7,5.1,2.7,0.0,1.4,5.0,0.0,14.65,18.35,2.0,16.0,1.0,0.6,1.9,3.0,18.6,0.0,6.0,0.19814815,0.3337963,0.48333332,0.0,0.0,False,0.0,B,B,11.0,3.0,27.0,0.27572,0.1,0.62428,1.2,5.0,0.0,0.0,7.1,7.15,5.1,7.7,2.55,5.0,0.0,18.5,14.5,9.0,2.0,0.0,0.45,1.65,0.0,21.1,0.0,0.0,0.3314815,0.50277776,0.5662037,,,2.0,,,,,,,,,7.0,,,,,,,,,,
12870.0,Jose Vidro,2005 Live,MVP,S,0.0,0.21849,0.56303,0.21848,8.7,6.0,0.0,0.0,3.2,8.8,8.55,3.25,1.1,5.0,0.0,13.25,16.75,6.0,0.0,1.0,0.9,3.5,3.0,1.25,12.0,5.75,0.36203703,0.48472223,0.79814816,0.0,0.0,False,0.0,C,B,9.0,2.0,27.0,0.29353,0.16667,0.5398,0.0,1.0,0.0,0.0,8.1,8.1,5.4,7.85,2.7,5.0,0.0,8.55,9.45,11.0,12.0,0.0,0.3,2.9,1.0,20.5,0.0,4.15,0.32546297,0.40462962,0.48935184,,,,5.0,,,,,,,,,10.0,,,,,,,,,
12871.0,Jim Thome,2005 Live,Reserve,L,0.0,0.31746,0.53968,0.14286,1.05,4.0,0.0,0.0,3.55,3.45,1.5,3.5,1.2,5.0,2.0,14.75,22.25,6.0,11.0,0.0,2.8,3.5,1.0,0.0,21.45,0.0,0.1736111,0.3287037,0.32314816,0.0,0.0,False,0.0,D,C,8.0,3.0,27.0,0.24752,0.33663,0.41585,1.2,6.0,0.0,0.0,3.6,2.8,3.9,5.8,1.95,5.0,1.0,28.7,15.3,3.0,12.0,0.0,1.05,1.0,0.0,1.5,4.0,10.2,0.22916667,0.50416666,0.4050926,,,2.0,,,,,,,,,0.0,,,,,,,,,,
12872.0,Austin Kearns,2005 Live,Starter,R,0.0,0.21569,0.56863,0.21568,1.65,4.0,0.0,0.0,2.4,1.35,5.6,3.4,8.05,5.0,0.0,16.2,7.8,10.0,23.0,0.0,1.95,0.0,1.0,0.0,6.0,10.6,0.24953704,0.39953703,0.38564816,0.0,0.0,False,0.0,D,C,12.0,2.0,27.0,0.27381,0.23016,0.49603,5.4,3.0,0.0,0.0,5.1,5.1,5.1,0.0,2.4,5.0,4.0,7.85,11.15,12.0,14.0,1.0,1.6,1.5,2.0,1.8,18.0,2.0,0.25092593,0.36064816,0.537037,,,,,,,,,1.0,,,,,,,,,3.0,0.0,,,
12873.0,Tony Womack,2005 Live,Replacement,L,0.0,0.19737,0.48684,0.31579,0.0,0.0,0.0,0.0,0.0,0.0,5.9,8.85,3.2,5.0,0.0,10.2,13.8,13.0,4.0,0.0,0.8,2.0,1.0,6.1,25.0,9.15,0.18935186,0.2837963,0.18935186,12.0,16.0,True,0.33333334,A,C,11.0,1.0,27.0,0.26961,0.1,0.63039,0.0,0.0,0.0,0.0,5.1,5.1,4.75,6.65,2.25,5.0,0.0,3.4,19.6,16.0,0.0,0.0,2.75,2.9,1.0,11.15,21.0,1.35,0.24398148,0.27546296,0.33842593,,,,2.0,,,5.0,4.0,3.0,,,,5.0,,,4.0,4.0,4.0,0.0,,,
12874.0,Mark Bellhorn,2005 Live,Starter,S,0.0,0.32184,0.35632,0.32184,1.05,3.0,0.0,0.0,7.25,7.25,2.4,3.6,1.2,5.0,0.0,17.65,28.35,5.0,8.0,0.0,2.8,2.7,1.0,0.0,11.35,0.4,0.24768518,0.41111112,0.45277777,3.0,20.0,False,0.055555556,D,B,9.0,2.0,27.0,0.32468,0.2013,0.47402,1.2,3.0,0.0,0.0,5.1,5.4,2.4,3.5,1.2,5.0,0.0,19.6,30.4,1.0,9.0,0.0,2.8,1.4,1.0,3.5,11.0,1.5,0.21111111,0.39259258,0.38333333,,,,2.0,3.0,3.0,,,,,,,11.0,0.0,72.0,,,,,,,
12875.0,Josh Phelps,2005 Live,Starter,R,0.0,0.33333,0.33333,0.33334,1.2,3.0,0.0,0.0,4.2,4.2,3.5,5.4,1.65,5.0,5.0,7.7,13.3,13.0,6.0,0.0,1.35,2.6,1.0,0.0,22.3,7.6,0.22361112,0.3412037,0.37638888,0.0,0.0,False,0.0,D,B,10.0,2.0,27.0,0.24742,0.16495,0.58763,1.5,5.0,0.0,0.0,6.0,6.05,4.5,6.75,2.25,5.0,2.0,9.3,25.7,1.0,10.0,0.0,2.75,0.0,2.45,8.5,8.0,1.25,0.29675925,0.40138888,0.51944447,,,,,,,,,,,,,,,,,,,,,,
12876.0,DAngelo Jimenez,2005 Live,Starter,S,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,8.05,8.05,8.3,5.1,11.5,5.0,0.0,14.8,3.2,21.0,4.0,0.0,1.5,1.95,1.0,0.0,14.55,0.0,0.4027778,0.53981483,0.55185187,3.0,7.0,False,0.11111111,D,C,12.0,1.0,27.0,0.22535,0.22535,0.5493,0.0,0.0,0.0,0.0,5.7,5.7,3.3,3.2,1.05,5.0,0.0,15.4,17.6,15.0,9.0,0.0,1.95,2.3,1.0,0.0,19.8,2.0,0.19861111,0.3412037,0.30416667,,,,3.0,,,,,,,,,11.0,,,,,,,,,
12877.0,Jeff Bagwell,2005 Live,All-Star,R,0.0,0.23529,0.52941,0.2353,7.25,5.0,0.0,0.0,0.0,0.0,6.35,9.2,3.2,5.0,0.0,28.0,21.0,10.0,1.0,0.0,0.8,0.0,0.75,0.0,10.45,0.0,0.28703704,0.5462963,0.5578704,0.0,0.0,False,0.0,D,C,8.0,2.0,27.0,0.29213,0.10112,0.60675,1.2,4.0,0.0,0.0,5.1,5.1,3.6,4.25,3.2,5.0,0.0,18.3,9.7,8.0,11.0,0.0,0.8,1.7,3.0,0.0,20.3,3.75,0.24953704,0.4189815,0.43287036,,,2.0,,,,,,,,,0.0,,,,,,,,,,
12868.0,Mike Piazza,2005 Live,All-Star,R,0.0,0.2619,0.47619,0.26191,5.7,4.0,0.0,0.0,4.2,4.2,8.8,0.0,4.5,5.0,0.0,15.95,8.05,1.0,21.0,1.0,0.5,2.1,2.0,0.0,18.0,2.0,0.29537037,0.44305557,0.587037,0.0,0.0,False,0.0,D,C,9.0,2.0,27.0,0.23622,0.15748,0.6063,1.35,5.0,0.0,0.0,5.1,4.75,3.75,5.7,1.7,5.0,0.0,12.2,5.8,7.0,27.0,0.0,0.3,0.9,3.0,11.15,0.0,8.3,0.25324073,0.3662037,0.4513889,,5.0,,,,,,,,,1.0,,,,,,,,,2.0,3.0,3.0
12869.0,Doug Mientkiewicz,2005 Live,All-Star,L,0.0,0.31111,0.51111,0.17778,6.0,4.0,0.0,0.0,1.7,5.1,2.7,0.0,1.4,5.0,0.0,14.65,23.35,2.0,18.0,1.0,0.6,1.9,3.0,12.6,0.0,5.0,0.19814815,0.3337963,0.48333332,0.0,0.0,False,0.0,B,B,11.0,3.0,27.0,0.27572,0.1,0.62428,1.2,5.0,0.0,0.0,7.1,7.15,5.1,7.7,2.55,5.0,0.0,18.5,14.5,9.0,2.0,0.0,0.45,1.65,0.0,21.1,0.0,0.0,0.3314815,0.50277776,0.5662037,,,2.0,,,,,,,,,7.0,,,,,,,,,,
12870.0,Jose Vidro,2005 Live,MVP,S,0.0,0.21849,0.56303,0.21848,8.7,6.0,0.0,0.0,3.2,8.8,8.55,3.25,1.1,5.0,0.0,13.25,16.75,6.0,0.0,1.0,0.9,3.5,3.0,1.25,12.0,5.75,0.36203703,0.48472223,0.79814816,0.0,0.0,False,0.0,C,B,9.0,2.0,27.0,0.29353,0.16667,0.5398,0.0,1.0,0.0,0.0,8.1,8.1,5.4,7.85,2.7,5.0,0.0,8.55,9.45,7.0,16.0,0.0,0.3,2.9,1.0,20.5,0.0,4.15,0.32546297,0.40462962,0.48935184,,,,5.0,,,,,,,,,10.0,,,,,,,,,
12871.0,Jim Thome,2005 Live,Reserve,L,0.0,0.31746,0.53968,0.14286,1.05,4.0,0.0,0.0,3.6,3.4,2.4,3.5,1.2,5.0,2.0,14.75,24.25,6.0,11.0,0.0,1.8,2.55,1.0,0.0,20.5,0.0,0.18194444,0.33703703,0.3314815,0.0,0.0,False,0.0,D,C,8.0,3.0,27.0,0.24752,0.33663,0.41585,1.2,6.0,0.0,0.0,3.6,2.8,3.9,5.8,1.95,5.0,1.0,28.7,13.3,3.0,14.0,0.0,1.05,1.0,0.0,1.5,4.0,10.2,0.22916667,0.50416666,0.4050926,,,2.0,,,,,,,,,0.0,,,,,,,,,,
12872.0,Austin Kearns,2005 Live,Starter,R,0.0,0.21569,0.56863,0.21568,1.65,4.0,0.0,0.0,2.4,1.35,5.6,3.4,8.05,5.0,0.0,16.2,7.8,6.0,30.0,0.0,1.95,0.0,1.0,0.0,0.0,13.6,0.24953704,0.39953703,0.38564816,0.0,0.0,False,0.0,D,C,12.0,2.0,27.0,0.27381,0.23016,0.49603,5.4,3.0,0.0,0.0,5.1,5.1,5.1,0.0,2.4,5.0,4.0,7.85,4.15,13.0,20.0,1.0,1.6,1.5,2.0,1.8,18.0,2.0,0.25092593,0.36064816,0.537037,,,,,,,,,1.0,,,,,,,,,3.0,0.0,,,
12873.0,Tony Womack,2005 Live,Replacement,L,0.0,0.19737,0.48684,0.31579,0.0,0.0,0.0,0.0,0.0,0.0,5.9,8.85,3.2,5.0,0.0,10.2,11.8,15.0,4.0,0.0,0.8,2.0,1.0,6.1,25.0,9.15,0.18935186,0.2837963,0.18935186,12.0,16.0,True,0.33333334,A,C,11.0,1.0,27.0,0.26961,0.1,0.63039,0.0,0.0,0.0,0.0,5.1,5.1,4.75,6.65,2.25,5.0,0.0,3.4,19.6,16.0,0.0,0.0,2.75,2.9,1.0,11.15,21.0,1.35,0.24398148,0.27546296,0.33842593,,,,2.0,,,5.0,4.0,3.0,,,,5.0,,,4.0,4.0,4.0,0.0,,,
12874.0,Mark Bellhorn,2005 Live,Starter,S,0.0,0.32184,0.35632,0.32184,1.05,3.0,0.0,0.0,7.25,7.25,2.4,3.6,1.2,5.0,0.0,17.65,28.35,5.0,8.0,0.0,2.8,2.7,1.0,0.0,11.35,0.4,0.24768518,0.41111112,0.45277777,3.0,20.0,False,0.055555556,D,B,9.0,2.0,27.0,0.32468,0.2013,0.47402,1.2,3.0,0.0,0.0,5.1,5.4,2.4,3.5,1.2,5.0,0.0,19.6,28.4,1.0,11.0,0.0,2.8,1.4,1.0,3.5,11.0,1.5,0.21111111,0.39259258,0.38333333,,,,2.0,3.0,3.0,,,,,,,11.0,0.0,72.0,,,,,,,
12875.0,Josh Phelps,2005 Live,Starter,R,0.0,0.33333,0.33333,0.33334,1.2,3.0,0.0,0.0,4.2,4.2,3.5,5.4,1.65,5.0,5.0,7.7,13.3,11.0,10.0,0.0,1.35,2.6,1.0,0.0,22.3,5.6,0.22361112,0.3412037,0.37638888,0.0,0.0,False,0.0,D,B,10.0,2.0,27.0,0.24742,0.16495,0.58763,1.5,5.0,0.0,0.0,6.0,6.05,4.5,6.75,2.25,5.0,2.0,9.3,25.7,1.0,10.0,0.0,2.75,0.0,2.45,8.5,8.0,1.25,0.29675925,0.40138888,0.51944447,,,,,,,,,,,,,,,,,,,,,,
12876.0,DAngelo Jimenez,2005 Live,Starter,S,0.0,0.21429,0.57143,0.21428,0.0,0.0,0.0,0.0,8.05,8.05,8.3,5.1,11.5,5.0,0.0,14.8,3.2,21.0,4.0,0.0,1.5,1.95,1.0,0.0,14.55,0.0,0.4027778,0.53981483,0.55185187,3.0,7.0,False,0.11111111,D,C,12.0,1.0,27.0,0.22535,0.22535,0.5493,0.0,0.0,0.0,0.0,5.7,5.7,3.3,3.2,1.05,5.0,0.0,15.4,16.6,17.0,9.0,0.0,1.95,2.3,1.0,0.0,19.0,1.8,0.19861111,0.3412037,0.30416667,,,,3.0,,,,,,,,,11.0,,,,,,,,,
12877.0,Jeff Bagwell,2005 Live,All-Star,R,0.0,0.23529,0.52941,0.2353,7.25,5.0,0.0,0.0,0.0,0.0,6.35,9.2,3.2,5.0,0.0,28.0,21.0,10.0,1.0,0.0,0.8,0.0,0.75,0.0,10.45,0.0,0.28703704,0.5462963,0.5578704,0.0,0.0,False,0.0,D,C,8.0,2.0,27.0,0.29213,0.10112,0.60675,1.2,4.0,0.0,0.0,5.1,5.1,3.6,4.25,3.2,5.0,0.0,18.3,11.7,3.0,17.0,0.0,0.8,1.7,3.0,0.0,20.3,0.75,0.24953704,0.4189815,0.43287036,,,2.0,,,,,,,,,0.0,,,,,,,,,,
13007.0,Will the Thrill,2005 Custom,Starter,R,0.0,0.38,0.36,0.26,0.0,1.0,0.0,0.0,5.95,4.25,10.65,7.1,9.05,5.0,0.0,9.1,10.9,6.0,5.0,0.0,1.95,3.75,3.0,9.4,0.0,15.9,0.37037036,0.45462963,0.4787037,7.0,14.0,False,0.33,C,A,13.0,1.0,29.0,0.38,0.36,0.26,0.0,1.0,0.0,0.0,5.1,3.25,10.55,5.55,9.9,5.0,0.0,8.1,15.9,10.0,2.0,0.0,0.1,3.75,4.0,9.35,3.0,11.45,0.34583333,0.42083332,0.43703705,,,,4.0,,,3.0,,,,,,12.0,,,5.0,,,0.0,,,
13008.0,Valerie-Hecate Theolia,2005 Custom,Starter,L,0.0,0.38,0.35,0.27,0.0,0.0,0.0,0.0,7.95,4.0,7.9,3.8,8.4,5.0,0.0,7.75,17.25,13.0,2.0,0.0,0.6,4.0,4.0,6.15,9.0,7.2,0.3199074,0.39166668,0.43055555,7.0,11.0,False,0.05555555,A,B,12.0,2.0,29.0,0.38,0.35,0.27,0.0,1.0,0.0,0.0,8.35,3.5,7.45,4.3,7.1,5.0,1.0,9.05,12.95,14.0,2.0,0.0,3.9,3.5,4.0,5.2,8.0,7.7,0.31203705,0.4050926,0.43564814,,3.0,,,,,,,,,5.0,,,,,,,,,0.0,6.0,3.0
13009.0,Kalin Young,2005 Custom,All-Star,R,0.0,0.33,0.37,0.3,2.05,3.0,0.0,0.0,6.5,4.35,5.55,2.1,4.8,5.0,1.0,16.5,14.5,7.0,0.0,0.0,1.2,5.65,5.95,3.95,9.0,9.9,0.27175927,0.4337963,0.47083333,10.0,15.0,False,0.22222,C,C,13.0,1.0,29.0,0.25,0.4,0.35,2.1,3.0,1.25,0.0,5.35,3.8,5.4,3.95,6.05,5.0,2.0,14.55,18.45,11.0,3.0,0.0,1.95,1.1,4.0,0.0,0.0,16.05,0.29537037,0.4486111,0.50324076,,,,,,,4.0,,2.0,,,,,,,4.0,,4.0,0.0,,,

Can't render this file because it is too large.

File diff suppressed because it is too large Load Diff

View File

@ -538,7 +538,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
6781.0,Andre Pallante,2023 Season,Replacement,R,0.0,2.6,0.0,0.0,0.0,5.7,0.0,3.3,3.25,0.0,5.0,1.0,7.8,20.2,5.0,2.4,0.0,9.0,13.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16064815,0.24212962,0.28564814,4.0,18.0,4.0,1.0,1.0,,#1WR-C,2.0,9.0,0.0,0.0,0.0,0.0,0.0,5.9,11.1,0.0,11.05,5.0,0.0,15.3,21.7,1.0,1.1,0.0,3.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.28287038,0.42453703,0.3375,5,0
7315.0,Amos Willingham,2023 Season,Replacement,R,0.0,4.0,2.0,0.0,0.0,0.0,4.35,3.75,0.0,3.75,5.0,0.0,15.4,17.6,4.0,1.65,5.0,6.25,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17916666,0.32175925,0.35833332,0.0,0.0,-3.0,1.0,1.0,,#1WR-C,2.0,9.0,2.65,5.0,0.0,0.0,0.0,6.1,8.8,0.0,8.8,5.0,1.0,3.8,17.2,4.0,0.25,6.0,9.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29027778,0.33472222,0.48981482,2,0
7083.0,Chris Murphy,2023 Season,Reserve,L,0.0,0.0,1.0,0.0,0.0,0.0,5.8,4.5,0.0,4.5,5.0,0.0,11.5,24.5,6.0,5.2,0.0,6.5,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16481481,0.2712963,0.2324074,0.0,17.0,0.0,1.0,2.0,1.0,#1WL-C,2.0,9.0,1.0,2.0,0.0,0.0,0.0,6.8,4.8,0.0,4.75,5.0,0.0,7.5,37.5,4.0,0.2,4.0,1.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19305556,0.2625,0.31157407,3,0
7316.0,Ryan Pepiot,2023 Season,MVP,R,0.0,1.35,1.0,0.0,0.0,0.0,0.0,2.1,0.0,2.1,0.0,1.0,3.5,25.5,11.0,1.65,9.0,11.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05601852,0.09768519,0.107407406,0.0,0.0,-3.0,5.0,4.0,,#1WR-C,1.0,9.0,1.3,3.0,0.0,0.0,7.6,0.0,2.4,1.8,0.0,5.0,2.0,4.4,35.6,4.0,0.7,0.0,9.0,2.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15833333,0.2175926,0.30648148,2,0
7316.0,Ryan Pepiot,2023 Season,MVP,R,0.0,1.35,1.0,0.0,0.0,0.0,0.0,2.1,0.0,2.1,0.0,1.0,3.5,24.5,11.0,1.65,14.0,7.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05601852,0.09768519,0.107407406,0.0,0.0,-3.0,5.0,4.0,,#1WR-C,1.0,9.0,1.3,3.0,0.0,0.0,7.6,0.0,2.4,1.8,0.0,5.0,2.0,4.4,35.6,4.0,0.7,0.0,9.0,2.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15833333,0.2175926,0.30648148,2,0
7317.0,Nick Robertson,2023 Season,Replacement,R,0.0,1.8,3.0,1.6,0.0,0.0,10.6,7.05,0.0,0.0,5.0,0.0,6.6,24.4,6.0,1.2,5.0,6.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23194444,0.29305556,0.4513889,0.0,0.0,9.0,1.0,1.0,,#1WR-C,2.0,9.0,1.5,2.0,0.0,0.0,0.0,3.5,5.1,0.0,5.1,5.0,0.0,11.3,33.7,2.5,0.0,3.5,4.9,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17314816,0.2777778,0.275,3,0
5279.0,Tyler Holton,2023 Season,MVP,L,0.0,0.0,0.0,0.0,0.0,2.5,0.0,2.5,1.4,0.0,5.0,0.0,4.5,42.5,9.0,0.0,4.0,5.0,2.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08240741,0.12407407,0.10555556,0.0,9.0,9.0,1.0,1.0,0.0,#1WL-C,3.0,9.0,1.0,3.0,0.0,0.0,0.0,2.2,3.2,0.0,2.7,5.0,0.0,7.25,31.75,5.0,1.8,8.0,4.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.121296294,0.18842593,0.21111111,3,0
4991.0,Ryne Nelson,2023 Season,Reserve,R,0.0,1.6,3.0,1.25,0.0,0.0,6.4,3.75,0.0,5.3,5.0,0.0,11.7,19.3,1.6,0.0,2.4,10.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20648149,0.3148148,0.375,2.0,8.0,-5.0,5.0,1.0,,#1WR-C,3.0,9.0,2.0,3.0,0.0,0.0,0.0,5.4,4.5,0.0,4.5,5.0,0.0,4.5,30.5,4.0,4.6,6.0,4.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18888889,0.23055555,0.3361111,1,0
@ -5603,7 +5603,7 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
10524.0,Joey Cantillo,2024 Season,Replacement,L,0.0,5.3,2.0,0.0,0.0,0.0,5.1,6.1,0.0,6.05,5.0,0.0,12.8,17.2,4.0,1.6,2.0,5.0,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24120371,0.35972223,0.46342593,0.0,20.0,9.0,4.0,3.0,,#1WL-C,1.0,17.0,1.25,1.0,0.0,0.0,0.0,6.7,1.6,0.0,1.6,5.0,0.0,8.9,25.1,5.0,5.05,5.0,2.4,8.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13101852,0.21342592,0.24166666,4,0
10525.0,Jack Kochanowicz,2024 Season,Starter,R,0.0,0.0,1.0,0.0,0.0,0.0,7.7,3.0,0.0,9.1,5.0,4.0,3.6,14.4,0.0,3.3,5.0,5.0,17.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21111111,0.28148147,0.2962963,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,1.0,17.0,3.3,1.0,0.0,0.0,0.0,1.7,5.7,0.0,5.4,5.0,0.0,6.8,20.2,4.0,3.0,10.0,12.3,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185,0.23981482,0.29814816,2,0
10526.0,Ky Bush,2024 Season,Replacement,L,0.0,0.0,0.0,0.0,0.0,9.8,0.0,9.8,9.5,0.0,5.0,0.0,14.7,11.3,6.0,0.0,0.0,8.4,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.29259259,0.4287037,0.38333333,0.0,20.0,-1.0,4.0,1.0,,#1WL-C,2.0,17.0,1.25,2.0,0.0,0.0,0.0,5.35,4.5,0.0,4.5,5.0,1.0,22.25,18.75,4.0,4.4,0.0,4.0,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17685185,0.39212963,0.2888889,2,0
10527.0,Brant Hurter,2024 Season,Hall of Fame,L,0.0,1.2,0.0,0.0,0.0,2.4,0.0,0.0,10.3,0.0,5.0,0.0,1.5,36.5,0.0,4.4,0.0,6.0,11.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185,0.16574074,0.2074074,6.0,0.0,9.0,4.0,3.0,,#1WL-C,2.0,17.0,1.35,2.0,0.0,0.0,0.0,3.25,1.6,0.0,1.6,5.0,0.0,5.4,26.6,4.0,11.4,0.0,3.4,11.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462963,0.15462963,0.2,4,0
10527.0,Brant Hurter,2024 Season,Hall of Fame,L,0.0,1.2,0.0,0.0,0.0,2.4,0.0,0.0,10.3,0.0,5.0,0.0,1.5,40.5,0.0,4.4,0.0,2.0,11.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185,0.16574074,0.2074074,6.0,0.0,9.0,4.0,3.0,,#1WL-C,2.0,17.0,1.35,2.0,0.0,0.0,0.0,3.25,1.6,0.0,1.6,5.0,0.0,5.4,31.6,9.0,3.4,0.0,7.4,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462963,0.15462963,0.2,4,0
10528.0,Will Warren,2024 Season,Replacement,R,0.0,1.3,3.0,0.0,0.0,0.0,8.7,0.0,0.0,13.8,5.0,0.0,16.3,17.7,0.0,3.0,4.0,0.0,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2574074,0.40833333,0.41574073,20.0,0.0,-5.0,4.0,3.0,,#1WR-C,2.0,17.0,0.0,2.0,0.0,0.0,0.0,15.0,4.0,0.0,4.0,5.0,1.0,4.7,30.3,4.0,0.0,4.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24537037,0.29814816,0.41203704,3,0
10536.0,Erasmo Ramirez,2024 Season,All-Star,R,0.0,1.8,3.0,0.0,0.0,0.0,2.2,1.2,0.0,1.0,5.0,0.0,16.0,16.0,5.0,14.0,6.0,7.8,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.094444446,0.24259259,0.20648149,0.0,20.0,9.0,1.0,2.0,4.0,#1WR-C,3.0,17.0,1.75,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,2.0,9.8,33.2,0.0,7.25,6.0,1.0,9.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.05787037,0.16712964,0.16203703,3,0
10537.0,Ben Heller,2024 Season,Replacement,R,0.0,0.0,0.0,0.0,0.0,0.0,9.3,3.7,0.0,5.0,5.0,8.0,14.4,21.6,4.0,0.0,4.0,4.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18981482,0.39722222,0.27592593,0.0,0.0,3.0,1.0,2.0,,#1WR-C,1.0,17.0,1.6,2.0,1.8,0.0,0.0,2.4,4.2,0.0,20.0,5.0,10.0,7.9,19.1,0.0,0.0,0.0,5.0,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.3101852,0.47592592,0.43796295,3,0
@ -6758,37 +6758,37 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
12722.0,Nolan Mclean,2025 Season,MVP,R,0.0,0.0,0.0,0.0,0.0,0.0,1.7,3.6,0.0,3.5,5.0,0.0,0.0,42.0,4.0,3.3,4.0,6.4,4.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10462963,0.10462963,0.12037037,0.0,8.0,-5.0,6.0,1.0,,#1WR-C,2.0,24.0,2.05,2.0,0.0,0.0,0.0,1.95,4.1,0.0,3.8,5.0,0.0,0.0,39.0,4.0,0.0,4.0,7.9,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425926,0.1425926,0.24537037,2,0
12723.0,Brandon Sproat,2025 Season,Reserve,R,0.0,0.0,2.0,0.0,0.0,0.0,9.35,4.5,0.0,4.2,5.0,0.0,0.0,36.0,4.0,2.65,4.0,5.5,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19953704,0.19953704,0.31388888,0.0,0.0,-3.0,5.0,1.0,,#1WR-C,3.0,24.0,0.0,0.0,2.25,0.0,0.0,0.0,4.5,4.5,0.0,5.0,0.0,0.0,35.0,4.0,0.0,10.0,12.25,1.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12731482,0.12731482,0.16898148,3,50
12878.0,Bartolo Colon,2005 Live,All-Star,R,0.0,1.1,2.0,0.0,0.0,3.75,0.0,2.75,3.25,0.0,5.0,0.0,0.0,42.0,4.0,0.9,4.0,8.5,1.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13287038,0.13287038,0.22592592,1.0,2.0,-5.0,7.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,4.6,0.0,5.8,5.8,0.0,5.0,0.0,0.0,35.0,4.0,0.0,0.0,10.6,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18240741,0.18240741,0.25277779,5,0
12879.0,Ryan Drese,2005 Live,Replacement,R,0.0,0.0,0.0,0.0,0.0,5.6,0.0,10.5,10.5,0.0,5.0,0.0,0.0,10.0,6.0,5.0,6.0,11.9,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26944444,0.26944444,0.3212963,0.0,10.0,-5.0,3.0,1.0,,#1WR-C,2.0,27.0,0.0,1.0,0.0,0.0,8.25,0.0,3.55,9.6,0.0,5.0,0.0,0.0,18.0,9.0,0.0,5.0,12.2,7.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22592592,0.22592592,0.3162037,3,30
12880.0,Jarrod Washburn,2005 Live,Starter,L,0.0,0.0,1.0,0.0,0.0,2.65,0.0,5.6,5.2,0.0,5.0,0.0,0.0,23.0,5.0,4.0,5.0,16.75,5.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481,0.15231481,0.19074073,0.0,2.0,-5.0,6.0,1.0,,#1WL-C,3.0,27.0,1.5,3.0,0.0,0.0,6.8,0.0,5.7,5.6,0.0,5.0,0.0,0.0,18.0,6.0,3.5,10.0,7.5,6.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21851853,0.21851853,0.36481482,4,46
12881.0,Kenny Rogers,2005 Live,All-Star,L,0.0,0.0,0.0,0.0,0.0,4.1,0.0,2.7,2.8,0.0,5.0,0.0,0.0,41.0,5.0,0.0,4.0,13.2,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11203704,0.11203704,0.15,0.0,0.0,-3.0,6.0,1.0,,#1WL-C,1.0,27.0,0.0,3.0,0.0,0.0,6.8,0.0,6.4,6.4,0.0,5.0,0.0,0.0,24.0,4.0,0.0,9.0,5.8,8.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21851853,0.21851853,0.32314816,1,4
12882.0,John Lackey,2005 Live,Reserve,R,0.0,0.0,0.0,0.0,0.0,6.75,0.0,7.65,7.5,0.0,5.0,0.0,0.0,33.0,4.0,0.0,6.0,8.6,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22592592,0.22592592,0.28842592,0.0,17.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,0.0,0.0,0.0,0.0,7.5,0.0,4.3,4.25,0.0,5.0,0.0,0.0,38.0,4.0,4.0,2.0,9.2,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175926,0.17175926,0.24120371,4,27
12883.0,Chris Young,2005 Live,Reserve,R,0.0,0.0,3.0,0.0,0.0,8.1,0.0,7.5,7.55,0.0,5.0,0.0,0.0,23.0,0.0,4.0,4.0,10.4,6.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25138888,0.25138888,0.36805555,0.0,4.0,-3.0,5.0,1.0,,#1WR-C,3.0,27.0,0.0,3.0,0.0,0.0,5.0,0.0,3.25,2.8,0.0,5.0,0.0,0.0,37.0,4.0,4.0,7.0,6.75,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13935184,0.13935184,0.22731481,4,0
12884.0,Paul Byrd,2005 Live,Starter,R,0.0,1.2,3.0,0.0,0.0,4.25,0.0,9.25,9.25,0.0,5.0,0.0,0.0,21.0,5.0,6.8,6.0,2.5,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2587963,0.2587963,0.37314814,0.0,1.0,-3.0,7.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,4.25,0.0,3.25,3.2,0.0,5.0,0.0,0.0,28.0,6.0,5.0,5.0,12.5,4.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13148148,0.13148148,0.19861111,3,15
12885.0,Denny Bautista,2005 Live,All-Star,R,0.0,0.0,1.0,0.0,0.0,6.7,0.0,6.8,6.7,0.0,5.0,0.0,0.0,18.0,8.0,4.0,5.0,10.5,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21481481,0.21481481,0.29074073,0.0,17.0,-2.0,5.0,1.0,,#1WR-C,3.0,27.0,0.0,1.0,0.0,0.0,3.0,0.0,4.9,4.5,0.0,5.0,0.0,0.0,30.0,9.0,0.0,9.0,8.1,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425926,0.1425926,0.18425927,1,0
12886.0,Jose Lima,2005 Live,Starter,R,0.0,1.7,4.0,0.0,0.0,0.0,7.0,4.8,0.0,4.8,5.0,0.0,0.0,24.0,4.0,6.3,10.0,6.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21111111,0.21111111,0.3787037,0.0,6.0,-3.0,5.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,5.7,0.0,6.55,6.5,0.0,5.0,0.0,0.0,22.0,4.0,0.0,4.0,16.75,6.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20601852,0.20601852,0.28657407,4,0
12887.0,Aaron Sele,2005 Live,Reserve,R,0.0,1.8,4.0,0.0,0.0,0.0,5.8,7.4,0.0,7.05,5.0,0.0,0.0,17.0,11.0,3.4,6.0,8.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24583334,0.24583334,0.4050926,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,5.1,0.0,7.6,7.5,0.0,5.0,0.0,0.0,25.0,4.0,0.0,9.0,13.3,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21944444,0.21944444,0.29444444,3,0
12879.0,Ryan Drese,2005 Live,Replacement,R,0.0,0.0,0.0,0.0,0.0,5.6,0.0,10.5,10.5,0.0,5.0,0.0,0.0,10.0,6.0,5.0,5.0,12.9,8.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.26944444,0.26944444,0.3212963,0.0,10.0,-5.0,3.0,1.0,,#1WR-C,2.0,27.0,0.0,1.0,0.0,0.0,8.25,0.0,3.55,9.6,0.0,5.0,0.0,0.0,18.0,13.0,0.0,6.0,12.2,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22592592,0.22592592,0.3162037,3,30
12880.0,Jarrod Washburn,2005 Live,Starter,L,0.0,0.0,1.0,0.0,0.0,2.65,0.0,5.6,5.2,0.0,5.0,0.0,0.0,23.0,5.0,4.0,5.0,16.75,5.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15231481,0.15231481,0.19074073,0.0,2.0,-5.0,6.0,1.0,,#1WL-C,3.0,27.0,1.5,3.0,0.0,0.0,6.8,0.0,5.7,5.6,0.0,5.0,0.0,0.0,19.0,5.0,3.5,11.0,6.5,6.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21851853,0.21851853,0.36481482,4,46
12881.0,Kenny Rogers,2005 Live,All-Star,L,0.0,0.0,0.0,0.0,0.0,4.1,0.0,2.7,2.8,0.0,5.0,0.0,0.0,42.0,6.0,0.0,4.0,11.2,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11203704,0.11203704,0.15,0.0,0.0,-3.0,6.0,1.0,,#1WL-C,1.0,27.0,0.0,3.0,0.0,0.0,6.8,0.0,6.4,6.4,0.0,5.0,0.0,0.0,23.0,4.0,0.0,10.0,5.8,8.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21851853,0.21851853,0.32314816,1,4
12882.0,John Lackey,2005 Live,Reserve,R,0.0,0.0,0.0,0.0,0.0,6.75,0.0,7.65,7.5,0.0,5.0,0.0,0.0,39.0,4.0,0.0,4.0,4.6,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22592592,0.22592592,0.28842592,0.0,17.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,0.0,0.0,0.0,0.0,7.5,0.0,4.3,4.25,0.0,5.0,0.0,0.0,38.0,4.0,4.0,2.0,9.2,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17175926,0.17175926,0.24120371,4,27
12883.0,Chris Young,2005 Live,Reserve,R,0.0,0.0,3.0,0.0,0.0,8.1,0.0,7.5,7.55,0.0,5.0,0.0,0.0,23.0,0.0,4.0,4.0,10.4,6.45,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25138888,0.25138888,0.36805555,0.0,4.0,-3.0,5.0,1.0,,#1WR-C,3.0,27.0,0.0,3.0,0.0,0.0,5.0,0.0,3.25,2.8,0.0,5.0,0.0,0.0,42.0,4.0,4.0,2.0,6.75,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13935184,0.13935184,0.22731481,4,0
12884.0,Paul Byrd,2005 Live,Starter,R,0.0,1.2,3.0,0.0,0.0,4.25,0.0,9.25,9.25,0.0,5.0,0.0,0.0,27.0,5.0,6.8,0.0,2.5,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2587963,0.2587963,0.37314814,0.0,1.0,-3.0,7.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,4.25,0.0,3.25,3.2,0.0,5.0,0.0,0.0,28.0,5.0,5.0,6.0,12.5,4.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13148148,0.13148148,0.19861111,3,15
12885.0,Denny Bautista,2005 Live,All-Star,R,0.0,0.0,1.0,0.0,0.0,6.7,0.0,6.8,6.7,0.0,5.0,0.0,0.0,17.0,2.0,4.0,6.0,16.5,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21481481,0.21481481,0.29074073,0.0,17.0,-2.0,5.0,1.0,,#1WR-C,3.0,27.0,0.0,1.0,0.0,0.0,3.0,0.0,4.9,4.5,0.0,5.0,0.0,0.0,29.0,15.0,0.0,10.0,2.1,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425926,0.1425926,0.18425927,1,0
12886.0,Jose Lima,2005 Live,Starter,R,0.0,1.7,4.0,0.0,0.0,0.0,7.0,4.8,0.0,4.8,5.0,0.0,0.0,30.0,4.0,0.3,10.0,6.2,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21111111,0.21111111,0.3787037,0.0,6.0,-3.0,5.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,5.7,0.0,6.55,6.5,0.0,5.0,0.0,0.0,22.0,4.0,0.0,4.0,16.75,6.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20601852,0.20601852,0.28657407,4,0
12887.0,Aaron Sele,2005 Live,Reserve,R,0.0,1.8,4.0,0.0,0.0,0.0,5.8,7.4,0.0,7.05,5.0,0.0,0.0,19.0,12.0,3.4,5.0,6.6,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24583334,0.24583334,0.4050926,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,5.1,0.0,7.6,7.5,0.0,5.0,0.0,0.0,23.0,4.0,0.0,13.0,11.3,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21944444,0.21944444,0.29444444,3,0
12888.0,Jamie Moyer,2005 Live,Starter,L,0.0,0.0,1.0,0.0,0.0,5.0,0.0,5.7,5.7,0.0,5.0,0.0,0.0,27.0,0.0,0.0,4.0,18.3,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962,0.17962962,0.23981482,0.0,3.0,-3.0,6.0,1.0,,#1WL-C,3.0,27.0,1.9,4.0,0.0,0.0,2.5,0.0,5.1,4.8,0.0,5.0,0.0,0.0,23.0,5.0,16.1,0.0,5.4,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17407407,0.17407407,0.30555555,3,0
12889.0,Jake Westbrook,2005 Live,Starter,R,0.0,0.0,3.0,0.0,0.0,4.6,0.0,7.2,7.05,0.0,5.0,0.0,0.0,13.0,11.0,9.0,6.0,11.2,1.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21157408,0.21157408,0.29583332,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,1.0,27.0,3.3,0.0,0.0,0.0,3.2,0.0,4.5,4.25,0.0,5.0,0.0,0.0,36.0,4.0,2.7,4.0,11.3,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16435185,0.16435185,0.28564814,1,7
12890.0,Kevin Millwood,2005 Live,Starter,R,0.0,1.95,2.0,0.0,0.0,7.3,0.0,5.4,5.1,0.0,5.0,0.0,0.0,25.0,4.0,1.05,13.0,8.3,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21527778,0.21527778,0.36481482,0.0,2.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,3.0,0.0,0.0,3.7,0.0,3.3,4.5,0.0,5.0,0.0,0.0,37.0,4.0,0.0,4.0,14.0,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351852,0.14351852,0.21944444,4,0
12891.0,Kirk Saarloos,2005 Live,Starter,R,0.0,0.0,2.0,0.0,0.0,4.9,0.0,6.3,6.3,0.0,5.0,0.0,0.0,18.0,8.0,0.0,4.0,21.8,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19444445,0.19444445,0.26759258,0.0,1.0,-3.0,5.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,5.4,0.0,6.2,6.3,0.0,5.0,0.0,0.0,10.0,4.0,0.0,10.0,22.4,7.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19814815,0.19814815,0.27592593,1,10
12892.0,Dan Haren,2005 Live,MVP,R,0.0,0.0,2.0,0.0,0.0,2.6,0.0,4.25,4.25,0.0,5.0,0.0,0.0,32.0,4.0,9.0,5.0,5.15,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518,0.13518518,0.18703704,0.0,6.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,5.4,0.0,4.55,4.2,0.0,5.0,0.0,0.0,33.0,9.0,0.0,4.0,5.05,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16342592,0.16342592,0.24120371,3,14
12893.0,Joe Blanton,2005 Live,MVP,R,0.0,0.0,2.0,0.0,0.0,6.0,0.0,1.4,1.4,0.0,5.0,0.0,0.0,27.0,5.0,5.0,6.0,12.6,7.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388889,0.11388889,0.19722222,2.0,4.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,1.4,3.0,0.0,0.0,3.2,0.0,3.4,3.4,0.0,5.0,0.0,0.0,34.0,5.0,2.6,5.0,7.4,5.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425926,0.1425926,0.25277779,4,8
12894.0,Jeremy Bonderman,2005 Live,MVP,R,0.0,1.5,4.0,0.0,0.0,0.0,8.35,4.25,0.0,4.25,5.0,0.0,0.0,42.0,0.0,0.15,4.0,4.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21157408,0.21157408,0.3861111,1.0,5.0,-3.0,7.0,1.0,,#1WR-C,3.0,27.0,0.0,2.0,0.0,0.0,2.35,0.0,4.15,4.25,0.0,5.0,0.0,0.0,39.0,9.0,0.0,4.0,8.5,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13194445,0.13194445,0.18148148,4,44
12895.0,Mike Maroth,2005 Live,Starter,L,0.0,1.05,2.0,0.0,0.0,2.7,0.0,5.9,5.8,0.0,5.0,0.0,0.0,17.0,6.0,1.95,4.0,11.4,16.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17546296,0.17546296,0.2574074,0.0,5.0,-5.0,6.0,1.0,,#1WL-C,2.0,27.0,1.2,3.0,0.0,0.0,4.5,0.0,8.2,8.2,0.0,5.0,0.0,0.0,16.0,5.0,7.8,4.0,9.3,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666,0.24166666,0.35833332,3,0
12896.0,Cliff Lee,2005 Live,Reserve,L,0.0,0.0,2.0,0.0,0.0,8.0,0.0,5.8,2.8,0.0,5.0,0.0,0.0,30.0,4.0,0.0,1.0,10.2,10.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111,0.18611111,0.28796297,0.0,4.0,-3.0,6.0,1.0,,#1WL-C,3.0,27.0,0.0,3.0,0.0,0.0,6.0,0.0,5.25,5.1,0.0,5.0,0.0,0.0,26.0,8.0,4.0,4.0,11.75,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18842593,0.18842593,0.28564814,5,50
12897.0,Jon Garland,2005 Live,Reserve,R,0.0,3.75,2.0,0.0,0.0,3.8,0.0,8.5,8.4,0.0,5.0,0.0,0.0,16.0,7.0,1.25,11.0,8.7,3.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2587963,0.2587963,0.42592594,0.0,2.0,-5.0,7.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,4.2,0.0,5.1,4.75,0.0,5.0,0.0,0.0,33.0,5.0,0.0,8.0,11.7,0.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.22916667,3,6
12898.0,Mark Buehrle,2005 Live,Starter,L,0.0,0.0,2.0,0.0,0.0,7.25,0.0,8.0,8.05,0.0,5.0,0.0,0.0,18.0,5.0,4.0,0.0,4.75,16.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24814814,0.24814814,0.34305555,2.0,2.0,-3.0,7.0,1.0,,#1WL-C,1.0,27.0,0.0,0.0,0.0,0.0,3.9,0.0,5.7,5.1,0.0,5.0,0.0,0.0,27.0,9.0,13.0,4.0,5.4,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15925926,0.15925926,0.19537038,2,10
12899.0,Freddy Garcia,2005 Live,Starter,R,0.0,1.25,2.0,0.0,0.0,3.4,0.0,5.95,5.8,0.0,5.0,0.0,0.0,21.0,11.0,3.75,7.0,11.65,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425927,0.18425927,0.27824074,1.0,18.0,-3.0,7.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,5.4,0.0,5.4,5.1,0.0,5.0,0.0,0.0,36.0,5.0,0.0,4.0,6.2,4.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962,0.17962962,0.2574074,3,0
12889.0,Jake Westbrook,2005 Live,Starter,R,0.0,0.0,3.0,0.0,0.0,4.6,0.0,7.2,7.05,0.0,5.0,0.0,0.0,14.0,11.0,9.0,4.0,12.2,1.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21157408,0.21157408,0.29583332,0.0,3.0,-3.0,6.0,1.0,,#1WR-C,1.0,27.0,3.3,0.0,0.0,0.0,3.2,0.0,4.5,4.25,0.0,5.0,0.0,0.0,42.0,4.0,2.7,4.0,5.3,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16435185,0.16435185,0.28564814,1,7
12890.0,Kevin Millwood,2005 Live,Starter,R,0.0,1.95,2.0,0.0,0.0,7.3,0.0,5.4,5.1,0.0,5.0,0.0,0.0,21.0,8.0,1.05,9.0,12.3,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21527778,0.21527778,0.36481482,0.0,2.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,3.0,0.0,0.0,3.7,0.0,3.3,4.5,0.0,5.0,0.0,0.0,42.0,8.0,0.0,4.0,5.0,0.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351852,0.14351852,0.21944444,4,0
12891.0,Kirk Saarloos,2005 Live,Starter,R,0.0,0.0,2.0,0.0,0.0,4.9,0.0,6.3,6.3,0.0,5.0,0.0,0.0,23.0,4.0,0.0,8.0,16.8,2.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19444445,0.19444445,0.26759258,0.0,1.0,-3.0,5.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,5.4,0.0,6.2,6.3,0.0,5.0,0.0,0.0,10.0,4.0,0.0,4.0,28.4,7.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19814815,0.19814815,0.27592593,1,10
12892.0,Dan Haren,2005 Live,MVP,R,0.0,0.0,2.0,0.0,0.0,2.6,0.0,4.25,4.25,0.0,5.0,0.0,0.0,38.0,4.0,9.0,5.0,4.15,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13518518,0.13518518,0.18703704,0.0,6.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,5.4,0.0,4.55,4.2,0.0,5.0,0.0,0.0,33.0,9.0,0.0,4.0,5.05,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16342592,0.16342592,0.24120371,3,14
12893.0,Joe Blanton,2005 Live,MVP,R,0.0,0.0,2.0,0.0,0.0,6.0,0.0,1.4,1.4,0.0,5.0,0.0,0.0,33.0,5.0,5.0,0.0,12.6,7.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.11388889,0.11388889,0.19722222,2.0,4.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,1.4,3.0,0.0,0.0,3.2,0.0,3.4,3.4,0.0,5.0,0.0,0.0,40.0,5.0,2.6,5.0,1.4,5.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1425926,0.1425926,0.25277779,4,8
12894.0,Jeremy Bonderman,2005 Live,MVP,R,0.0,1.5,4.0,0.0,0.0,0.0,8.35,4.25,0.0,4.25,5.0,0.0,0.0,42.0,0.0,0.15,4.0,4.75,0.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21157408,0.21157408,0.3861111,1.0,5.0,-3.0,7.0,1.0,,#1WR-C,3.0,27.0,0.0,2.0,0.0,0.0,2.35,0.0,4.15,4.25,0.0,5.0,0.0,0.0,45.0,9.0,0.0,4.0,2.5,0.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13194445,0.13194445,0.18148148,4,44
12895.0,Mike Maroth,2005 Live,Starter,L,0.0,1.05,2.0,0.0,0.0,2.7,0.0,5.9,5.8,0.0,5.0,0.0,0.0,17.0,6.0,1.95,4.0,11.4,16.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17546296,0.17546296,0.2574074,0.0,5.0,-5.0,6.0,1.0,,#1WL-C,2.0,27.0,1.2,3.0,0.0,0.0,4.5,0.0,8.2,8.2,0.0,5.0,0.0,0.0,16.0,6.0,7.8,4.0,8.3,6.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666,0.24166666,0.35833332,3,0
12896.0,Cliff Lee,2005 Live,Reserve,L,0.0,0.0,2.0,0.0,0.0,8.0,0.0,5.8,2.8,0.0,5.0,0.0,0.0,29.0,4.0,0.0,1.0,11.2,10.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18611111,0.18611111,0.28796297,0.0,4.0,-3.0,6.0,1.0,,#1WL-C,3.0,27.0,0.0,3.0,0.0,0.0,6.0,0.0,5.25,5.1,0.0,5.0,0.0,0.0,27.0,4.0,4.0,8.0,10.75,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18842593,0.18842593,0.28564814,5,50
12897.0,Jon Garland,2005 Live,Reserve,R,0.0,3.75,2.0,0.0,0.0,3.8,0.0,8.5,8.4,0.0,5.0,0.0,0.0,18.0,6.0,1.25,11.0,7.7,3.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2587963,0.2587963,0.42592594,0.0,2.0,-5.0,7.0,1.0,,#1WR-C,1.0,27.0,0.0,2.0,0.0,0.0,4.2,0.0,5.1,4.75,0.0,5.0,0.0,0.0,37.0,5.0,0.0,8.0,7.7,0.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.22916667,3,6
12898.0,Mark Buehrle,2005 Live,Starter,L,0.0,0.0,2.0,0.0,0.0,7.25,0.0,8.0,8.05,0.0,5.0,0.0,0.0,17.0,6.0,4.0,0.0,4.75,16.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24814814,0.24814814,0.34305555,2.0,2.0,-3.0,7.0,1.0,,#1WL-C,1.0,27.0,0.0,0.0,0.0,0.0,3.9,0.0,5.7,5.1,0.0,5.0,0.0,0.0,31.0,10.0,13.0,4.0,0.4,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15925926,0.15925926,0.19537038,2,10
12899.0,Freddy Garcia,2005 Live,Starter,R,0.0,1.25,2.0,0.0,0.0,3.4,0.0,5.95,5.8,0.0,5.0,0.0,0.0,27.0,11.0,3.75,1.0,11.65,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425927,0.18425927,0.27824074,1.0,18.0,-3.0,7.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,5.4,0.0,5.4,5.1,0.0,5.0,0.0,0.0,36.0,5.0,0.0,4.0,6.2,4.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17962962,0.17962962,0.2574074,3,0
12900.0,Jose Contreras,2005 Live,MVP,R,0.0,0.0,3.0,0.0,0.0,2.2,0.0,4.5,4.25,0.0,5.0,0.0,0.0,31.0,4.0,12.0,4.0,3.3,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13842593,0.13842593,0.20046297,2.0,20.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,0.0,1.0,0.0,0.0,6.2,0.0,3.2,3.2,0.0,5.0,0.0,0.0,43.0,5.0,0.0,5.0,2.6,4.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14444445,0.14444445,0.21574074,3,16
12901.0,Runelvys Hernandez,2005 Live,Reserve,R,0.0,0.0,2.0,0.0,0.0,8.1,0.0,4.4,3.9,0.0,5.0,0.0,0.0,24.0,4.0,5.0,10.0,6.5,6.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425927,0.18425927,0.28703704,0.0,5.0,-3.0,5.0,1.0,,#1WR-C,2.0,27.0,1.1,5.0,0.0,0.0,4.25,0.0,5.85,5.9,0.0,5.0,0.0,0.0,24.0,4.0,0.9,9.0,13.9,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20462963,0.20462963,0.34398147,4,40
12901.0,Runelvys Hernandez,2005 Live,Reserve,R,0.0,0.0,2.0,0.0,0.0,8.1,0.0,4.4,3.9,0.0,5.0,0.0,0.0,29.0,4.0,5.0,5.0,6.5,6.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.18425927,0.18425927,0.28703704,0.0,5.0,-3.0,5.0,1.0,,#1WR-C,2.0,27.0,1.1,5.0,0.0,0.0,4.25,0.0,5.85,5.9,0.0,5.0,0.0,0.0,23.0,4.0,0.9,13.0,10.9,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20462963,0.20462963,0.34398147,4,40
12902.0,Esteban Loaiza,2005 Live,Reserve,R,0.0,0.0,1.0,0.0,0.0,6.7,0.0,5.7,5.4,0.0,5.0,0.0,0.0,38.0,4.0,0.0,0.0,12.6,0.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19259259,0.19259259,0.2685185,0.0,6.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,3.7,2.0,0.0,0.0,3.9,0.0,4.5,4.25,0.0,5.0,0.0,0.0,36.0,4.0,0.3,5.0,5.6,4.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1837963,0.1837963,0.35046297,3,6
12903.0,Livan Hernandez,2005 Live,Replacement,R,0.0,1.2,2.0,0.0,0.0,6.0,0.0,9.1,9.5,0.0,5.0,0.0,0.0,17.0,6.0,2.8,5.0,10.9,4.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2712963,0.2712963,0.38796297,2.0,2.0,-3.0,7.0,1.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,6.3,0.0,6.6,6.6,0.0,5.0,0.0,0.0,21.0,4.0,0.0,5.0,17.1,5.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21296297,0.21296297,0.29907408,2,4
12904.0,Dontrelle Willis,2005 Live,MVP,L,0.0,0.0,2.0,0.0,0.0,1.9,0.0,6.0,5.8,0.0,5.0,0.0,0.0,28.0,8.0,0.0,4.0,12.1,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15925926,0.15925926,0.20462963,1.0,2.0,-5.0,7.0,1.0,,#1WL-C,2.0,27.0,0.0,1.0,0.0,0.0,5.6,0.0,3.9,3.9,0.0,5.0,0.0,0.0,38.0,4.0,0.0,4.0,11.5,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185,0.15185185,0.2175926,3,18
12904.0,Dontrelle Willis,2005 Live,MVP,L,0.0,0.0,2.0,0.0,0.0,1.9,0.0,6.0,5.8,0.0,5.0,0.0,0.0,28.0,5.0,0.0,8.0,11.1,6.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15925926,0.15925926,0.20462963,1.0,2.0,-5.0,7.0,1.0,,#1WL-C,2.0,27.0,0.0,1.0,0.0,0.0,5.6,0.0,3.9,3.9,0.0,5.0,0.0,0.0,38.0,4.0,0.0,4.0,11.5,2.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.15185185,0.15185185,0.2175926,3,18
12905.0,Chan Ho Park,2005 Live,Replacement,R,0.0,1.0,2.0,0.0,0.0,7.0,0.0,9.3,9.1,0.0,5.0,0.0,0.0,17.0,5.0,0.0,1.0,17.7,4.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.27685186,0.27685186,0.39722222,0.0,5.0,-3.0,4.0,1.0,,#1WR-C,3.0,27.0,0.0,2.0,0.0,0.0,6.2,0.0,7.2,7.05,0.0,5.0,0.0,0.0,39.0,5.0,0.0,4.0,1.6,1.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22175926,0.22175926,0.30694443,1,6
12906.0,Jeff Weaver,2005 Live,Starter,R,0.0,1.5,3.0,1.2,0.0,5.1,0.0,5.4,5.4,0.0,5.0,0.0,0.0,18.0,0.0,8.5,5.0,10.3,10.6,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20925926,0.20925926,0.36203703,0.0,2.0,-3.0,7.0,1.0,,#1WR-C,2.0,27.0,0.0,3.0,0.0,0.0,4.1,0.0,3.9,2.7,0.0,5.0,0.0,0.0,35.0,4.0,0.0,5.0,9.0,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13611111,0.13611111,0.21574074,4,15
12907.0,Derek Lowe,2005 Live,Starter,R,0.0,2.1,2.0,0.0,0.0,4.5,0.0,7.75,8.05,0.0,5.0,0.0,0.0,27.0,5.0,0.9,1.0,13.75,1.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23981482,0.23981482,0.3675926,2.0,3.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,2.4,0.0,0.0,0.0,3.25,0.0,3.15,3.25,0.0,5.0,0.0,0.0,33.0,5.0,1.6,4.0,16.6,1.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13472222,0.13472222,0.23148148,1,4
12907.0,Derek Lowe,2005 Live,Starter,R,0.0,2.1,2.0,0.0,0.0,4.5,0.0,7.75,8.05,0.0,5.0,0.0,0.0,31.0,4.0,0.9,1.0,10.75,1.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23981482,0.23981482,0.3675926,2.0,3.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,2.4,0.0,0.0,0.0,3.25,0.0,3.15,3.25,0.0,5.0,0.0,0.0,37.0,5.0,1.6,4.0,12.6,1.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.13472222,0.13472222,0.23148148,1,4
12908.0,Johan Santana,2005 Live,All-Star,L,0.0,0.0,2.0,0.0,0.0,8.9,0.0,4.2,4.2,0.0,5.0,0.0,0.0,35.0,4.0,4.0,0.0,9.9,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19259259,0.19259259,0.30277777,0.0,7.0,-3.0,7.0,1.0,,#1WL-C,2.0,27.0,0.0,1.0,0.0,0.0,5.1,0.0,0.9,1.9,0.0,5.0,0.0,0.0,41.0,4.0,5.0,8.0,6.0,1.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.10092592,0.10092592,0.16203703,4,15
12909.0,Joel Pineiro,2005 Live,Reserve,R,0.0,1.3,2.0,0.0,0.0,6.2,0.0,7.35,7.3,0.0,5.0,0.0,0.0,16.0,3.0,4.7,6.0,13.45,6.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2375,0.2375,0.3587963,1.0,7.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,2.35,2.0,0.0,0.0,3.2,0.0,6.5,6.5,0.0,5.0,0.0,0.0,21.0,4.0,1.65,5.0,12.3,9.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416667,0.20416667,0.32685184,3,7
12909.0,Joel Pineiro,2005 Live,Reserve,R,0.0,1.3,2.0,0.0,0.0,6.2,0.0,7.35,7.3,0.0,5.0,0.0,0.0,17.0,2.0,4.7,6.0,13.45,6.7,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.2375,0.2375,0.3587963,1.0,7.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,2.35,2.0,0.0,0.0,3.2,0.0,6.5,6.5,0.0,5.0,0.0,0.0,21.0,4.0,1.65,5.0,12.3,9.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.20416667,0.20416667,0.32685184,3,7
12910.0,Ryan Franklin,2005 Live,Starter,R,0.0,0.0,2.0,0.0,0.0,4.25,0.0,5.6,5.1,0.0,5.0,0.0,0.0,21.0,5.0,5.0,10.0,15.15,0.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.17083333,0.17083333,0.23796296,1.0,3.0,-3.0,6.0,1.0,,#1WR-C,1.0,27.0,0.0,3.0,0.0,0.0,4.6,0.0,8.9,9.2,0.0,5.0,0.0,0.0,17.0,4.0,4.0,7.0,5.5,10.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24722221,0.24722221,0.3314815,4,0
12911.0,Gil Meche,2005 Live,Starter,R,0.0,1.4,3.0,0.0,0.0,1.9,0.0,4.1,4.25,0.0,5.0,0.0,0.0,32.0,5.0,2.6,9.0,5.0,5.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1449074,0.1449074,0.24305555,0.0,6.0,-3.0,5.0,4.0,,#1WR-C,2.0,27.0,0.0,2.0,0.0,0.0,9.05,0.0,5.7,5.7,0.0,5.0,0.0,0.0,27.0,5.0,4.0,1.0,7.25,7.3,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22175926,0.22175926,0.33333334,3,10
12912.0,Rich Harden,2005 Live,Hall of Fame,R,0.0,0.0,2.0,0.0,0.0,1.4,0.0,2.6,2.2,0.0,5.0,0.0,0.0,46.0,4.0,0.0,5.0,9.0,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.08981481,0.08981481,0.13055556,0.0,9.0,-3.0,6.0,5.0,,#1WR-C,2.0,27.0,1.1,2.0,0.0,0.0,1.65,0.0,3.75,3.75,0.0,5.0,0.0,0.0,35.0,6.0,0.9,4.0,10.6,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.12731482,0.12731482,0.20092593,4,14
@ -6796,8 +6796,8 @@ player_id,player_name,cardset_name,rarity,hand,variant,homerun_vl,bp_homerun_vl,
12914.0,Randy Johnson,2005 Live,Starter,L,0.0,0.0,1.0,0.0,0.0,3.75,0.0,5.5,5.9,0.0,5.0,0.0,0.0,36.0,8.0,0.0,4.0,9.75,0.1,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16805555,0.16805555,0.21666667,1.0,3.0,-2.0,7.0,1.0,,#1WL-C,3.0,27.0,2.7,2.0,0.0,0.0,5.7,0.0,7.7,7.6,0.0,5.0,0.0,0.0,23.0,8.0,0.3,4.0,10.6,2.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.25185186,0.25185186,0.4074074,4,20
12915.0,Mike Mussina,2005 Live,Reserve,R,0.0,1.1,3.0,0.0,0.0,3.4,0.0,6.0,6.1,0.0,5.0,0.0,0.0,27.0,4.0,0.9,9.0,9.6,3.9,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.19074073,0.19074073,0.29444444,0.0,2.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,3.0,0.0,0.0,5.8,0.0,8.1,8.05,0.0,5.0,0.0,0.0,22.0,4.0,0.0,5.0,16.1,1.95,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24027778,0.24027778,0.33564815,3,33
12916.0,Sidney Ponson,2005 Live,Replacement,R,0.0,0.0,3.0,0.0,0.0,7.5,0.0,7.3,7.2,0.0,5.0,0.0,0.0,16.0,11.0,5.0,5.0,10.2,1.8,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24074075,0.24074075,0.35185185,0.0,15.0,-3.0,6.0,1.0,,#1WR-C,3.0,27.0,2.6,2.0,0.0,0.0,6.9,0.0,6.7,6.75,0.0,5.0,0.0,0.0,21.0,4.0,1.4,1.0,15.4,6.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24490741,0.24490741,0.4087963,3,20
12917.0,Erik Bedard,2005 Live,All-Star,L,0.0,0.0,0.0,0.0,0.0,3.4,0.0,4.8,4.8,0.0,5.0,0.0,0.0,36.0,5.0,0.0,4.0,14.8,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351852,0.14351852,0.175,1.0,6.0,-3.0,6.0,1.0,,#1WL-C,2.0,27.0,0.0,0.0,0.0,0.0,6.0,0.0,7.5,7.8,0.0,5.0,0.0,0.0,29.0,4.0,9.0,4.0,5.5,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22037037,0.22037037,0.27592593,3,10
12918.0,Rodrigo Lopez,2005 Live,Starter,R,0.0,0.0,3.0,0.0,0.0,3.75,0.0,4.5,4.5,0.0,5.0,0.0,0.0,26.0,4.0,5.0,5.0,7.75,10.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1550926,0.1550926,0.23148148,1.0,5.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,4.0,0.0,0.0,6.75,0.0,3.15,3.25,0.0,5.0,0.0,0.0,31.0,4.0,4.0,5.0,6.1,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16342592,0.16342592,0.28148147,3,16
12917.0,Erik Bedard,2005 Live,All-Star,L,0.0,0.0,0.0,0.0,0.0,3.4,0.0,4.8,4.8,0.0,5.0,0.0,0.0,36.0,5.0,0.0,4.0,14.8,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.14351852,0.14351852,0.175,1.0,6.0,-3.0,6.0,1.0,,#1WL-C,2.0,27.0,0.0,0.0,0.0,0.0,6.0,0.0,7.5,7.8,0.0,5.0,0.0,0.0,29.0,5.0,9.0,4.0,4.5,1.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22037037,0.22037037,0.27592593,3,10
12918.0,Rodrigo Lopez,2005 Live,Starter,R,0.0,0.0,3.0,0.0,0.0,3.75,0.0,4.5,4.5,0.0,5.0,0.0,0.0,32.0,4.0,5.0,5.0,1.75,10.5,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1550926,0.1550926,0.23148148,1.0,5.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,4.0,0.0,0.0,6.75,0.0,3.15,3.25,0.0,5.0,0.0,0.0,37.0,4.0,4.0,5.0,0.1,6.75,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.16342592,0.16342592,0.28148147,3,16
12919.0,Dewon Brazelton,2005 Live,Replacement,R,0.0,0.0,4.0,0.0,0.0,8.4,0.0,6.6,6.6,0.0,5.0,0.0,0.0,23.0,9.0,0.0,5.0,10.0,1.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.24166666,0.24166666,0.375,0.0,14.0,-2.0,4.0,3.0,,#1WR-C,2.0,27.0,1.1,5.0,0.0,0.0,0.0,6.1,6.8,0.0,6.8,5.0,0.0,0.0,21.0,4.0,4.8,6.0,6.2,5.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.23888889,0.23888889,0.39537036,3,31
12920.0,Gustavo Chacin,2005 Live,All-Star,L,0.0,0.0,0.0,0.0,0.0,3.65,0.0,5.6,5.8,0.0,5.0,0.0,0.0,27.0,1.0,4.0,5.0,16.75,5.2,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1625,0.1625,0.19629629,0.0,3.0,-3.0,6.0,1.0,,#1WL-C,2.0,27.0,1.6,3.0,0.0,0.0,4.8,0.0,5.1,4.75,0.0,5.0,0.0,0.0,27.0,4.0,8.4,4.0,6.1,5.25,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.1875,0.1875,0.31805557,3,15
12921.0,Josh Towers,2005 Live,Replacement,R,0.0,0.0,1.0,0.0,0.0,8.0,0.0,5.8,6.0,0.0,5.0,0.0,0.0,28.0,4.0,0.0,8.0,6.2,7.0,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.21111111,0.21111111,0.29907408,1.0,1.0,-3.0,6.0,1.0,,#1WR-C,2.0,27.0,0.0,3.0,0.0,0.0,5.5,0.0,7.5,7.6,0.0,5.0,0.0,0.0,19.0,8.0,0.0,4.0,12.0,7.4,1.0,3.0,2.0,6.0,3.0,7.0,2.0,3.0,2.0,0.22777778,0.22777778,0.32037038,2,0

Can't render this file because it is too large.