Compare commits
No commits in common. "main" and "feature/skyscan-rssi" have entirely different histories.
main
...
feature/sk
3081 changed files with 9 additions and 109721 deletions
7
.gitattributes
vendored
7
.gitattributes
vendored
|
|
@ -1,7 +0,0 @@
|
|||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpg filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
||||
*.svg filter=lfs diff=lfs merge=lfs -text
|
||||
*.step filter=lfs diff=lfs merge=lfs -text
|
||||
*.wrl filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -11,9 +11,6 @@ build/
|
|||
*.so
|
||||
.ruff_cache/
|
||||
|
||||
# Documentation site (separate repo: warehack.ing/birdcage-docs)
|
||||
site/
|
||||
|
||||
# PlatformIO
|
||||
.pio/
|
||||
.pioenvs/
|
||||
|
|
|
|||
167
CLAUDE.md
167
CLAUDE.md
|
|
@ -688,170 +688,3 @@ Last resort only. 5/16" socket + 6" extension into auxiliary drive hole. Turn cl
|
|||
## Testing
|
||||
|
||||
No hardware-in-the-loop tests yet. Protocol implementations can be mocked for unit testing — `FirmwareProtocol` is an ABC with clear method contracts.
|
||||
|
||||
## Documentation Site
|
||||
|
||||
| Property | Value |
|
||||
|----------|-------|
|
||||
| Repo | `git@git.supported.systems:warehack.ing/birdcage-docs.git` |
|
||||
| Local path | `site/` (separate git repo, not a subtree) |
|
||||
| Framework | Astro + Starlight |
|
||||
| Domain | `birdcage.warehack.ing` |
|
||||
| Server | `warehack-ing@warehack.ing:~/birdcage-docs/` |
|
||||
| Container | `birdcage-docs` (caddy:2-alpine serving static files) |
|
||||
|
||||
### Workflow
|
||||
|
||||
```bash
|
||||
cd site/
|
||||
|
||||
# Local development with HMR
|
||||
make dev # Sets APP_ENV=dev, starts Astro dev server on :4321
|
||||
|
||||
# Production build + deploy
|
||||
make prod # Sets APP_ENV=prod, builds static site, serves via Caddy on :80
|
||||
|
||||
# Other commands
|
||||
make logs # Tail container logs
|
||||
make rebuild # Down + up with fresh build
|
||||
make clean # Remove containers + images
|
||||
```
|
||||
|
||||
### Make Targets
|
||||
|
||||
| Target | Description |
|
||||
|--------|-------------|
|
||||
| `up` | Build and start container |
|
||||
| `down` | Stop container |
|
||||
| `logs` | Tail container logs |
|
||||
| `rebuild` | Down + up with fresh build |
|
||||
| `dev` | Switch to dev mode (Astro dev server + HMR) |
|
||||
| `prod` | Switch to prod mode (static build + Caddy) |
|
||||
| `clean` | Remove containers, images, and volumes |
|
||||
|
||||
### Deploying Updates
|
||||
|
||||
```bash
|
||||
cd site/
|
||||
git add . && git commit -m "description"
|
||||
git push origin main
|
||||
ssh -A warehack-ing@warehack.ing "cd birdcage-docs && git pull && make prod"
|
||||
```
|
||||
|
||||
TLS is automatic via caddy-docker-proxy (ACME + Vultr DNS challenge). New subdomains take ~2 minutes for certificate issuance.
|
||||
|
||||
### Screenshots
|
||||
|
||||
TUI screenshots live in `site/public/screenshots/` (the site repo, not the main repo).
|
||||
An automated capture script uses Textual's Pilot API to render each screen in demo mode.
|
||||
|
||||
**Regenerating all screenshots:**
|
||||
|
||||
```bash
|
||||
cd tui && uv run python scripts/capture_screenshots.py
|
||||
```
|
||||
|
||||
This captures 8 SVG + 8 PNG screenshots plus a 2×3 collage:
|
||||
- `tui-dashboard` — F1 action cards
|
||||
- `tui-control` — F2 Manual mode with compass rose
|
||||
- `tui-craft-search` — F2 Craft mode with satellite search results
|
||||
- `tui-craft-tracking` — F2 Craft mode tracking the Moon
|
||||
- `tui-signal` — F3 Monitor mode with RSSI gauge and receiver info
|
||||
- `tui-system` — F4 Hardware mode with firmware ID and A3981 diagnostics
|
||||
- `tui-console` — F5 overlay with serial console
|
||||
- `tui-camera` — F6 overlay with capture triggers
|
||||
- `tui-collage` — 2×3 montage of 6 main screens (via ImageMagick `montage`)
|
||||
|
||||
**Dependencies:** `rsvg-convert` (SVG→PNG), `montage` (collage).
|
||||
|
||||
**When to regenerate:** After any UI change that affects widget layout, button labels,
|
||||
or screen content. The script populates Craft search results and tracking state
|
||||
directly via widget API for deterministic screenshots.
|
||||
|
||||
## TUI
|
||||
|
||||
| Property | Value |
|
||||
|----------|-------|
|
||||
| PyPI | [`birdcage-tui`](https://pypi.org/project/birdcage-tui/) |
|
||||
| Source | `tui/src/birdcage_tui/` |
|
||||
| Entry point | `birdcage_tui.app:main` |
|
||||
| Framework | [Textual](https://textual.textualize.io/) |
|
||||
| Screens | Dashboard (F1), Control (F2), Signal (F3), System (F4), Console (F5), Camera (F6) |
|
||||
|
||||
### Running
|
||||
|
||||
```bash
|
||||
# Published package (from PyPI) — no clone needed
|
||||
uvx birdcage-tui --demo # demo mode, base install
|
||||
uvx birdcage-tui # hardware mode (needs serial port)
|
||||
|
||||
# With camera capture support (Pillow + astropy)
|
||||
uvx --with 'birdcage-tui[camera]' birdcage-tui --demo
|
||||
|
||||
# Local development
|
||||
uv run --directory tui birdcage-tui --demo
|
||||
```
|
||||
|
||||
### Extras
|
||||
|
||||
| Extra | Install | Packages | Purpose |
|
||||
|-------|---------|----------|---------|
|
||||
| *(base)* | `uvx birdcage-tui` | `winegard-birdcage`, `textual` | Full TUI, all screens, demo mode |
|
||||
| `camera` | `uvx --with 'birdcage-tui[camera]' birdcage-tui` | `Pillow>=10.0`, `astropy>=6.0` | F6 camera overlay: JPEG capture frames with annotated demo images (Pillow), FITS export for radio astronomy pipelines (astropy) |
|
||||
|
||||
**Graceful degradation:** The camera screen (F6) works without the `camera` extra — it
|
||||
falls back to writing minimal JPEG headers directly. Pillow adds annotated demo frames
|
||||
and proper image processing; astropy adds FITS file export for integration with DS9,
|
||||
CASA, and other radio astronomy tools.
|
||||
|
||||
## MCP Server
|
||||
|
||||
| Property | Value |
|
||||
|----------|-------|
|
||||
| PyPI | [`mcbirdcage`](https://pypi.org/project/mcbirdcage/) |
|
||||
| Source | `mcp/src/mcbirdcage/` |
|
||||
| Entry point | `mcbirdcage.server:main` |
|
||||
| Tools | 36 (connection, movement, signal, system, satellite, console) |
|
||||
| Resources | 5 (`birdcage://config`, `position`, `firmware`, `motor-dynamics`, `el-limits`) |
|
||||
| Prompts | 3 (`setup_wizard`, `satellite_tracking_guide`, `rf_sweep_guide`) |
|
||||
| Tests | `mcp/tests/` — 49 tests against DemoDevice via `run_server_async` |
|
||||
|
||||
### Running
|
||||
|
||||
```bash
|
||||
# Published package (from PyPI) — no clone needed
|
||||
uvx mcbirdcage # demo mode auto-detected
|
||||
BIRDCAGE_DEMO=1 uvx mcbirdcage # explicit demo mode
|
||||
|
||||
# Local development (from repo)
|
||||
BIRDCAGE_DEMO=1 uv run --directory mcp mcbirdcage
|
||||
|
||||
# Hardware mode
|
||||
BIRDCAGE_PORT=/dev/ttyUSB2 uv run --directory mcp mcbirdcage
|
||||
```
|
||||
|
||||
### Adding to Claude Code
|
||||
|
||||
```bash
|
||||
# Published package (recommended)
|
||||
claude mcp add mcbirdcage -- uvx mcbirdcage
|
||||
|
||||
# Local development
|
||||
claude mcp add mcbirdcage -- env BIRDCAGE_DEMO=1 uv run --directory mcp mcbirdcage
|
||||
```
|
||||
|
||||
### Environment Variables
|
||||
|
||||
| Variable | Default | Purpose |
|
||||
|----------|---------|---------|
|
||||
| `BIRDCAGE_DEMO` | `false` | Enable demo mode (DemoDevice + DemoCraftClient) |
|
||||
| `BIRDCAGE_PORT` | `/dev/ttyUSB0` | Serial port for hardware mode |
|
||||
| `BIRDCAGE_FIRMWARE` | `g2` | Firmware variant (`g2`, `hal205`, etc.) |
|
||||
| `BIRDCAGE_CRAFT_URL` | `https://space.warehack.ing` | Orbital prediction API |
|
||||
|
||||
### Testing
|
||||
|
||||
```bash
|
||||
cd mcp && uv run pytest tests/ # 49 tests via FastMCP run_server_async
|
||||
uv run ruff check mcp/src/ # Lint
|
||||
```
|
||||
|
|
|
|||
72
README.md
72
README.md
|
|
@ -1,72 +0,0 @@
|
|||
# winegard-birdcage
|
||||
|
||||
Serial control library for Winegard motorized satellite dishes, repurposed for amateur radio satellite tracking.
|
||||
|
||||
Turns surplus RV/marine satellite TV antennas into steerable ground station dishes via RS-485 or RS-422.
|
||||
|
||||
## Install
|
||||
|
||||
```bash
|
||||
pip install winegard-birdcage
|
||||
```
|
||||
|
||||
## CLI Tools
|
||||
|
||||
Two entry points are included:
|
||||
|
||||
**birdcage** -- antenna control and rotctld server:
|
||||
|
||||
```bash
|
||||
birdcage init --port /dev/ttyUSB0 --firmware hal205
|
||||
birdcage pos
|
||||
birdcage move --az 180.0 --el 45.0
|
||||
birdcage serve --host 127.0.0.1 --port 4533 # rotctld for Gpredict
|
||||
```
|
||||
|
||||
**console-probe** -- automated firmware exploration:
|
||||
|
||||
```bash
|
||||
console-probe --port /dev/ttyUSB0 --baud 115200 --discover-only --json report.json
|
||||
console-probe --port /dev/ttyUSB0 --baud 115200 --deep --wordlist wordlist.txt
|
||||
```
|
||||
|
||||
## Supported Hardware
|
||||
|
||||
| Variant | Connection | Baud | Motor Command |
|
||||
|---------|-----------|------|---------------|
|
||||
| Trav'ler (HAL 0.0.00) | RS-485 / RJ-25 | 57600 | `a <id> <deg>` |
|
||||
| Trav'ler (HAL 2.05) | RS-485 / RJ-25 | 57600 | `a <id> <deg>` |
|
||||
| Trav'ler Pro | USB A-to-A | 57600 | `a <id> <deg>` |
|
||||
| Carryout | RS-485 / RJ-25 | 57600 | `g <az> <el>` |
|
||||
| Carryout G2 | RS-422 / RJ-12 | 115200 | `a <id> <deg>` |
|
||||
|
||||
## Architecture
|
||||
|
||||
```
|
||||
protocol.py -- FirmwareProtocol ABC + per-variant subclasses (HAL205, HAL000, G2)
|
||||
leapfrog.py -- Predictive overshoot compensation for mechanical motor lag
|
||||
antenna.py -- BirdcageAntenna: high-level control wrapping protocol + leapfrog
|
||||
rotctld.py -- Hamlib rotctld TCP server (p/P/S/_/q) for Gpredict integration
|
||||
cli.py -- Click CLI: init / serve / pos / move
|
||||
```
|
||||
|
||||
## Related Packages
|
||||
|
||||
| Package | Description |
|
||||
|---------|-------------|
|
||||
| [birdcage-tui](https://pypi.org/project/birdcage-tui/) | Six-screen terminal UI for dish control |
|
||||
| [mcbirdcage](https://pypi.org/project/mcbirdcage/) | MCP server for AI-assisted dish operations |
|
||||
|
||||
## Documentation
|
||||
|
||||
Full hardware details, wiring guides, firmware command reference, and NVS tables:
|
||||
**[birdcage.warehack.ing](https://birdcage.warehack.ing)**
|
||||
|
||||
## Credits
|
||||
|
||||
- **Gabe Emerson (KL1FI / [saveitforparts](https://github.com/saveitforparts))** -- original Trav'ler, Trav'ler Pro, and Carryout rotor scripts
|
||||
- **Chris Davidson ([cdavidson0522](https://github.com/cdavidson0522))** -- Carryout G2 sky scan and rotator control
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd9cedc2cbfc6a71e96465f11d9db50e255a5e9d304132917bbb2a8abd738424
|
||||
size 3015781
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1abe057153426f67db165b066dd95cb7a798a9d95ac8d5100b6b602da469daf5
|
||||
size 1779724
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f986dfa294bad686bad098aa7e66c961a97dcb4c3c6bab70141eb57602281f7e
|
||||
size 156604
|
||||
|
|
@ -1,231 +0,0 @@
|
|||
(kicad_symbol_lib
|
||||
(version 20211014)
|
||||
(generator https://github.com/uPesy/easyeda2kicad.py)
|
||||
(symbol "A3981KLPTR-T"
|
||||
(in_bom yes)
|
||||
(on_board yes)
|
||||
(property
|
||||
"Reference"
|
||||
"U"
|
||||
(id 0)
|
||||
(at 0 24.13 0)
|
||||
(effects (font (size 1.27 1.27) ) )
|
||||
)
|
||||
(property
|
||||
"Value"
|
||||
"A3981KLPTR-T"
|
||||
(id 1)
|
||||
(at 0 -21.59 0)
|
||||
(effects (font (size 1.27 1.27) ) )
|
||||
)
|
||||
(property
|
||||
"Footprint"
|
||||
"A3981-ecad:TSSOP-28_L9.7-W4.4-P0.65-LS6.4-BL-EP-1"
|
||||
(id 2)
|
||||
(at 0 -24.13 0)
|
||||
(effects (font (size 1.27 1.27) ) hide)
|
||||
)
|
||||
(property
|
||||
"Datasheet"
|
||||
"https://lcsc.com/product-detail/Motor-Drivers_ALLEGRO_A3981KLPTR-T_A3981KLPTR-T_C163315.html"
|
||||
(id 3)
|
||||
(at 0 -26.67 0)
|
||||
(effects (font (size 1.27 1.27) ) hide)
|
||||
)
|
||||
(property
|
||||
"LCSC Part"
|
||||
"C163315"
|
||||
(id 5)
|
||||
(at 0 -29.21 0)
|
||||
(effects (font (size 1.27 1.27) ) hide)
|
||||
)
|
||||
(symbol "A3981KLPTR-T_0_1"
|
||||
(rectangle
|
||||
(start -12.70 21.59)
|
||||
(end 12.70 -19.05)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type background))
|
||||
)
|
||||
(circle
|
||||
(center -11.43 20.32)
|
||||
(radius 0.38)
|
||||
(stroke (width 0) (type default) (color 0 0 0 0))
|
||||
(fill (type none))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 16.51 0)
|
||||
(length 2.54)
|
||||
(name "SENSA" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 13.97 0)
|
||||
(length 2.54)
|
||||
(name "STRn" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 11.43 0)
|
||||
(length 2.54)
|
||||
(name "DIR" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 8.89 0)
|
||||
(length 2.54)
|
||||
(name "OAP" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 6.35 0)
|
||||
(length 2.54)
|
||||
(name "OSC" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 3.81 0)
|
||||
(length 2.54)
|
||||
(name "SDI" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 1.27 0)
|
||||
(length 2.54)
|
||||
(name "AGND" (effects (font (size 1.27 1.27))))
|
||||
(number "7" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -1.27 0)
|
||||
(length 2.54)
|
||||
(name "REF" (effects (font (size 1.27 1.27))))
|
||||
(number "8" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -3.81 0)
|
||||
(length 2.54)
|
||||
(name "SCK" (effects (font (size 1.27 1.27))))
|
||||
(number "9" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -6.35 0)
|
||||
(length 2.54)
|
||||
(name "VDD" (effects (font (size 1.27 1.27))))
|
||||
(number "10" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -8.89 0)
|
||||
(length 2.54)
|
||||
(name "OBP" (effects (font (size 1.27 1.27))))
|
||||
(number "11" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -11.43 0)
|
||||
(length 2.54)
|
||||
(name "MS1" (effects (font (size 1.27 1.27))))
|
||||
(number "12" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -13.97 0)
|
||||
(length 2.54)
|
||||
(name "MS0" (effects (font (size 1.27 1.27))))
|
||||
(number "13" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at -15.24 -16.51 0)
|
||||
(length 2.54)
|
||||
(name "SENSB" (effects (font (size 1.27 1.27))))
|
||||
(number "14" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -16.51 180)
|
||||
(length 2.54)
|
||||
(name "VBBB" (effects (font (size 1.27 1.27))))
|
||||
(number "15" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -13.97 180)
|
||||
(length 2.54)
|
||||
(name "DIAG" (effects (font (size 1.27 1.27))))
|
||||
(number "16" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -11.43 180)
|
||||
(length 2.54)
|
||||
(name "SDO" (effects (font (size 1.27 1.27))))
|
||||
(number "17" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -8.89 180)
|
||||
(length 2.54)
|
||||
(name "OBM" (effects (font (size 1.27 1.27))))
|
||||
(number "18" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -6.35 180)
|
||||
(length 2.54)
|
||||
(name "STEP" (effects (font (size 1.27 1.27))))
|
||||
(number "19" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -3.81 180)
|
||||
(length 2.54)
|
||||
(name "VREG" (effects (font (size 1.27 1.27))))
|
||||
(number "20" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 -1.27 180)
|
||||
(length 2.54)
|
||||
(name "PGND" (effects (font (size 1.27 1.27))))
|
||||
(number "21" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 1.27 180)
|
||||
(length 2.54)
|
||||
(name "VCP" (effects (font (size 1.27 1.27))))
|
||||
(number "22" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 3.81 180)
|
||||
(length 2.54)
|
||||
(name "CP1" (effects (font (size 1.27 1.27))))
|
||||
(number "23" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 6.35 180)
|
||||
(length 2.54)
|
||||
(name "CP2" (effects (font (size 1.27 1.27))))
|
||||
(number "24" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 8.89 180)
|
||||
(length 2.54)
|
||||
(name "OAM" (effects (font (size 1.27 1.27))))
|
||||
(number "25" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 11.43 180)
|
||||
(length 2.54)
|
||||
(name "ENABLE" (effects (font (size 1.27 1.27))))
|
||||
(number "26" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 13.97 180)
|
||||
(length 2.54)
|
||||
(name "RESETn" (effects (font (size 1.27 1.27))))
|
||||
(number "27" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 16.51 180)
|
||||
(length 2.54)
|
||||
(name "VBBA" (effects (font (size 1.27 1.27))))
|
||||
(number "28" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin unspecified line
|
||||
(at 15.24 19.05 180)
|
||||
(length 2.54)
|
||||
(name "EP" (effects (font (size 1.27 1.27))))
|
||||
(number "29" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
(module easyeda2kicad:TSSOP-28_L9.7-W4.4-P0.65-LS6.4-BL-EP-1 (layer F.Cu) (tedit 5DC5F6A4)
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -6.87) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value TSSOP-28_L9.7-W4.4-P0.65-LS6.4-BL-EP-1 (at 0 6.87) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -4.92 1.77) (end -4.92 -1.77) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -4.92 -1.77) (end 4.93 -1.77) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 4.93 -1.77) (end 4.93 1.77) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 4.93 1.77) (end -4.92 1.77) (layer F.SilkS) (width 0.15))
|
||||
(pad 15 smd oval (at 4.23 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 16 smd oval (at 3.58 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 17 smd oval (at 2.93 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 18 smd oval (at 2.28 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 19 smd oval (at 1.63 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 20 smd oval (at 0.98 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 21 smd oval (at 0.33 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 22 smd oval (at -0.32 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 23 smd oval (at -0.98 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 24 smd oval (at -1.63 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 25 smd oval (at -2.28 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 26 smd oval (at -2.93 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 27 smd oval (at -3.58 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 28 smd oval (at -4.23 -2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 14 smd oval (at 4.23 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 13 smd oval (at 3.58 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 12 smd oval (at 2.93 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 11 smd oval (at 2.28 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 10 smd oval (at 1.63 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 9 smd oval (at 0.98 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 8 smd oval (at 0.33 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 7 smd oval (at -0.32 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 6 smd oval (at -0.98 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 5 smd oval (at -1.63 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 4 smd oval (at -2.28 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd oval (at -2.93 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd oval (at -3.58 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 1 smd oval (at -4.23 2.87 0.00) (size 0.34 1.75) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 29 smd rect (at 0.00 0.00 0.00) (size 5.50 3.00) (layers F.Cu F.Paste F.Mask))
|
||||
(fp_circle (center -4.85 3.20) (end -4.82 3.20) (layer F.Fab) (width 0.06))
|
||||
(fp_circle (center -4.23 3.60) (end -4.08 3.60) (layer Cmts.User) (width 0.30))
|
||||
(fp_circle (center -4.85 2.87) (end -4.70 2.87) (layer F.SilkS) (width 0.30))
|
||||
(fp_circle (center -4.23 1.02) (end -4.08 1.02) (layer F.SilkS) (width 0.30))
|
||||
(model "/A3981-ecad.3dshapes/TSSOP-28_L9.7-W4.4-P0.65-LS6.4-BL-EP-1.wrl"
|
||||
(offset (xyz 0.000 -0.000 -0.000))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2e9b96101be1552cd4a5d975404893559ad08c1744f144af4c950513e679fd51
|
||||
size 27648
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2676d83dd6852886da6bf3fe35b898727bcaf807a79f1e4a738aa36b88d8192
|
||||
size 47576
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:02f2363bc9d725dacd794ce5d35665dd4da212830633e210f58b5648b6f608ce
|
||||
size 50743
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78c2aed6da482cfde71d8521c498c91b0645c884dd2ffb169603d2e2ead11219
|
||||
size 164417
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e1747e45076865198de88691c399e24dec4222aa3a55a15fdfd0bfe9eea1479d
|
||||
size 95930
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e33238d5498a9f97c7f08ad23cb884013877f11b6c3d41d1e22c0af988ad4ee
|
||||
size 100485
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b56dc79967e397417aba87cd11e6d75708d9620d564fe7403e890cfeb7c6dab
|
||||
size 81693
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:35313af3c92304699554afb02c14e3dc635491f05668cc6c6fc4d3d6e6e87967
|
||||
size 15951
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2de400681b16d4076afa4a2ebb43f136d15b25cdd31415f8d7a26b106702abe7
|
||||
size 61645
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8414c2229e67918dbcbdf48f3742dd4dbb8c52d4a5873628cbede2bb272a0cfb
|
||||
size 300793
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dac27ae58994ec59ecbc90a234322cbaf0af40647b5b71a288b96d3ac5df3af4
|
||||
size 161948
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1400c3b2aa94d269044c9175e86635c3d3811fbfde5b9886098c61d2fff44545
|
||||
size 153318
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:27c1062f2988951dfe0f72c6362bb10917d0cb8c26c9b4fb598c353e94c2cd56
|
||||
size 161657
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26d98ce98191530c717d7fedb157becdb63f559ebe0d343294e52bcd1968433b
|
||||
size 158601
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:794ee3c2077a8031c6b43e217b7c7e80ac493e4ba4b42f2ba09bf38680cf6700
|
||||
size 183066
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e8619716c264f16d4f1440102f56c1603e57232d0ee8c592fc9af77d90d165a3
|
||||
size 177304
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a73235e0f13bec2c5c49e549985341833965f1b1af425c01591a2eb55ca3d0d8
|
||||
size 172526
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:358db7c4493d6916e43109f39c082e2d7fa5989b8b70850035d9874bda2e0fa3
|
||||
size 242137
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e44aba76ff9057e0ee546cf58caff7b6cf4faed9c39a4bc3bb8aec36317f83da
|
||||
size 150461
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a3b147ba1afb68747654aa9c425b8930467b9430ccb274d8d70c1d787650202
|
||||
size 116388
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32fd504a178f247c85ce9546bd2b7b2cb4c0cee5092a2c96eb87067ba816b67f
|
||||
size 177412
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e4a4669ffeedea599713c66d1683015fb48310b9cfc34d9fab69281a384a8564
|
||||
size 262592
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fcb0ae4f36aac3df443260312a8a3b424904f7297e3c428ecad2f6fe4b55849f
|
||||
size 238760
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b31b3c4921208655f193f4c2232aacad24c1f17577fe93289b4d529ff7774872
|
||||
size 286946
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55b85c1d70ebc929689601d5eff30ed7c974ccd3ebcd63e6dd0c26ea74d4721c
|
||||
size 395658
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b0cf7af9887bc82fc8c3fb44932807f5da3841d8ed5bbf8a5c314b510d454ed
|
||||
size 158399
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c3a2b3988a1841724886ca8e9b90c821c00fc1f5e86d500fad8c69fd7dab8d85
|
||||
size 366276
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b5f663e14afed612a36ab382725f0eca7ffed28921687eadc4dd004a2a9404e9
|
||||
size 316927
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3006c0effd8958bcd4505859d86b148efee8413b545d8216c2e59fc4f8b3e6a6
|
||||
size 186290
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eccf08369ef87360653741bb057eaea126e9dc4c180f5cfb3bb519efb25327c8
|
||||
size 169838
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:655ebb03b8679939c38643150d747117efd44223d0248282e1502fe4940b0127
|
||||
size 420666
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25168ffea1bb5f5e06227893b47b3bcbdc1d7ed754b483dd1a34aa4bb6cec968
|
||||
size 174903
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7f0d7258df06ab2250916c3795366787421a159494688aed4e5577aead744f8
|
||||
size 387238
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:850885c48eb2c3ff54c532f5341dafddf7e731cfe335c50641cbe45a55d0d0d6
|
||||
size 244580
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7bbf6eb20edaa8b9532bbe9fbe9587ee47f6fe514b83bccf94f52c0fadbaa5ee
|
||||
size 165641
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:462a2bb147b96bcc877b238d5ee6e16dcde73786e0c9c3a29629bbf87ae6a833
|
||||
size 165170
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:777b54d7955fea822b437c13d7c6c56817b59cfa99a106529980837d7dce58fc
|
||||
size 152790
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3388950220f19285d7cea07acb4230a1f8527fa9f9a65f2706bf6e4884980ca0
|
||||
size 197707
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:373cea6d4e3e087de82c9c6af4b358673de5c1b34bdd4b9f3097f23469942c02
|
||||
size 285690
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:66391feca1c937991b50c2f01d3543c091888743f99ab7154f2270a8da51aa93
|
||||
size 155219
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6455152ed7393cfac40fdef414d8adcc876e057a332a61b22cb18ba6661657f2
|
||||
size 215651
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:33f22f725523220e24db6283419564321264c5ee923afda922ded88fd5942c93
|
||||
size 197798
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc7c1b41685894bfaca6d902dae5cfb869da3ac98376fb730493e9ce334f7a36
|
||||
size 174231
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c2d77eccfffd69e0d9a7b5225e236545551d55b95e87951a319c9f0d6929d72
|
||||
size 151328
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:41b4e0e761398c259dd587287fb75cb9e21bc20c085beacf3f44df59d07bf9c6
|
||||
size 168301
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5a1915274c5de3463160357a5919a0b5751f1212fca78d207cfa267207a7a84b
|
||||
size 172919
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue