Skip to content
Commits on Source (16)
src/* linguist-vendored
proj.4/src/* linguist-vendored
nad2bin.c linguist-vendored
......@@ -4,20 +4,14 @@ nad2bin*
*.o
*.pyc
*.so
_proj.c
*.c*
!*.css
docs/doctrees/
.coverage
dist/
lib/pyproj.egg-info/
lib/pyproj/data/FL
lib/pyproj/data/MD
lib/pyproj/data/TN
lib/pyproj/data/WI
lib/pyproj/data/WO
lib/pyproj/data/alaska
lib/pyproj/data/conus
lib/pyproj/data/hawaii
lib/pyproj/data/null
lib/pyproj/data/prvi
lib/pyproj/data/stgeorge
lib/pyproj/data/stlrnc
lib/pyproj/data/stpaul
venv/
pyproj.egg-info/
pyproj/proj_dir/
pyproj/datadir.py.save
.idea/
.vscode/
......@@ -3,57 +3,92 @@ language: python
sudo: false
cache: pip
env:
global:
- PROJSOURCE=builtin
- CYTHON_COVERAGE=True
- PROJSOURCE=6.0.0
# Following generated with
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
# Following generated by
# travis encrypt -r jswhit/pyproj WHEELHOUSE_UPLOADER_SECRET=<api key>
- secure: "IoTBjr6e/eBQWtGleP1X36SpocljQxsmJZ+EcVGhJ4v3GZaECLLklKtrWf8DyygFNPFIZ5Tri/C5rPTbuioG6gWtrL8QPgXOK9MI1QZqmfx/kNi0tmH0g9BxL0jlhP8SInZFsfO4m8qJkYJwh3DqBudQhmbDabnMbX2h7hKKTSA="
# External version of PROJ.4 installed:
# * 4.9.2 is installed due to it having easy binary install on
# Ubuntu Linux 16.04 Long Term Support (LTS) (April 2016).
# * git repository test for future compatibility changes to PROJ.4 may
# be caught early.
matrix:
include:
- language: cpp
os: osx
env:
- PYTHON=3.6
- PROJSOURCE=6.0.0
- python: 2.7
- python: 3.4
env:
- PROJSOURCE=4.9.2
- PROJSOURCE=6.0.0
- python: 3.5
env:
- PROJSOURCE=6.0.0
- python: 3.6
env:
- PROJSOURCE=6.0.0
- python: 3.7
dist: xenial
sudo: true
env:
- PROJSOURCE=6.0.0
- python: "nightly"
env:
- PROJSOURCE=git
allow_failures:
- python: "nightly"
- env: PROJSOURCE=git
before_install:
- pip install -r requirements-dev.txt
- echo "PROJSOURCE is $PROJSOURCE"
- pwd
# Download external PROJ.4 version and compile
- |
if [[ $PROJSOURCE == "git" || $PROJSOURCE =~ "4."* ]]; then
ci/travis/proj-dl-and-compile "$PROJSOURCE"
export PROJ_DIR="/tmp/proj_dl_install"
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update
brew install sqlite3 wget openssl readline
# from https://pythonhosted.org/CodeChat/.travis.yml.html
brew outdated pyenv || brew upgrade pyenv
# virtualenv doesn't work without pyenv knowledge. venv in Python 3.3
# doesn't provide Pip by default. So, use `pyenv-virtualenv <https://github.com/yyuu/pyenv-virtualenv/blob/master/README.md>`_.
brew install pyenv-virtualenv
pyenv install $PYTHON
# I would expect something like ``pyenv init; pyenv local $PYTHON`` or
# ``pyenv shell $PYTHON`` would work, but ``pyenv init`` doesn't seem to
# modify the Bash environment. ??? So, I hand-set the variables instead.
export PYENV_VERSION=$PYTHON
export PATH="/Users/travis/.pyenv/shims:${PATH}"
pyenv-virtualenv venv
source venv/bin/activate
# A manual check that the correct version of Python is running.
python --version
else
sudo apt-get install -qq sqlite3 libsqlite3-dev
fi
# add line to the top of _proj.pyx enabling coverage for Cython code
- ./ci/travis/add_line_proj_pyx.sh
- echo "PROJSOURCE is $PROJSOURCE"
# Download external PROJ.4 version and compile
- export PROJ_DIR=/tmp/proj_dl_install
- ci/travis/proj-dl-and-compile "$PROJSOURCE"
- export PROJ_LIB=$PROJ_DIR/share/proj
install:
# coverage report requires a local install
- pip install "pip>=10.0.1"
- PYPROJ_FULL_COVERAGE=YES pip install -e .
- pip install -r requirements-dev.txt
script:
- python -c "import pyproj; pyproj.Proj(init='epsg:4269')"
- nose2 -v
after_success:
# Build manylinux wheels & upload to Rackspace container
- |
if [ "$TRAVIS_OS_NAME" != "osx" ] && [ "$TRAVIS_TAG" == "$TRAVIS_BRANCH" ]; then
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh ${PROJSOURCE} ${TRAVIS_PYTHON_VERSION}
pip install wheelhouse-uploader
python -m wheelhouse_uploader upload --local-folder ${TRAVIS_BUILD_DIR}/wheelhouse/ --no-update-index wheels
fi
notifications:
email: false
2.0.0
* Update to PROJ.4 version 6.0.0 & removed support for older PROJ.4 versions.
* Added pyproj.CRS class.
* Updated pyproj.Proj & pyproj.transform to accept any input from CRS.from_user_input.
* Removed internal PROJ.4 source code.
* Changed default for preserve_units to be True in pyproj.Proj class initialization.
* Modified logic for searching for the PROJ.4 data directory to not conflict with older versions of PROJ.4.
* Added pyproject.toml.
1.9.6
* fix segfault when inverse projection not defined (issue #43, pull request
#44).
......@@ -41,7 +49,7 @@
* allow 'EPSG' init (as well as 'epsg'). This only worked on case-insensitive
filesystems previously. Fixes issue 6.
* added inverse to Hammer projection.
* updated src/pj_mutex.c from proj4 svn to fix a threading issue on windows
* updated proj.4/src/pj_mutex.c from proj4 svn to fix a threading issue on windows
(issue 25). Windows binary installers updated (version 1.8.8-1), courtesy
Christoph Gohlke.
* if inputs are NaNs, return huge number (1.e30).
......
include README.md
include MANIFEST.in
include LICENSE_proj4
include pyproject.toml
include LICENSE
include Changelog
include create_docs.sh
include _proj.pyx
include _proj.c
include nad2bin.c
include src/*.c
include src/*.h
include src/*diff
include lib/pyproj/*py
include lib/pyproj/data/*
include datumgrid/*.lla
include pyproj/*.pyd
include pyproj/*.pyx
include pyproj/*.pxi
include test/test.py
include test/test2.py
include test/sample.out
......@@ -22,3 +16,6 @@ include test/geodtest.py
include test/test_datum.py
recursive-include docs *
recursive-include unittest *
prune proj.4/*
prune pyproj/proj_dir
prune */__pycache__/
pyproj
======
Installation
------------
* clone github repo or download source release at http://python.org/pypi/pyproj.
* If you clone the github repo, [Cython](http://cython.org/) is a dependency.
* python setup.py build
* python setup.py install (with sudo if necessary).
To use proj4 lib (and data files) that are already installed on the system,
set PROJ_DIR environment variable to point to location of proj4 installation
before running setup.py. If PROJ_DIR is not set, the bundled proj4
source code and data files are used.
Examples of how to set the PROJ_DIR environment variable:
* Windows - `C:\...> set PROJ_DIR=C:\OSGeo4W\`
* Linux/OS X on most shells- `$ export PROJ_DIR=/lib/`
Testing
-------
[nose2](https://github.com/nose-devs/nose2) is required to run some tests.
There are two testing suites: doctests and unittests. Doctests are located in
lib/pyproj/\__init\__.py. Unittests are located in unittest/.
[![Build Status](https://travis-ci.org/jswhit/pyproj.svg)](https://travis-ci.org/jswhit/pyproj)
To run all tests (add `-v` option to add verbose output):
```
nose2 [-v]
```
[![Build status](https://ci.appveyor.com/api/projects/status/8xkka4s97uwhkc64/branch/master?svg=true
)](https://ci.appveyor.com/project/jswhit/pyproj)
To run only the doctest:
```
python -c "import pyproj; pyproj.test()"
```
[![PyPI version](https://badge.fury.io/py/pyproj.svg)](https://badge.fury.io/py/pyproj)
To run only the unittests:
```
python unittest/test.py [-v]
OR:
nose2 unittest/test.py [-v]
```
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/pyproj/badges/version.svg)](https://anaconda.org/conda-forge/pyproj)
Code Coverage
-------------
nose2 will automatically produce coverage for python files. In order to
get coverage for the Cython code there are a couple extra steps needed.
Travis-CI should be set up to measure this automatically.
* Download pyproj source.
* Install Cython, and all other testing requirements
```
pip install -r requirements-dev.txt
```
Python interface to [PROJ.4](https://github.com/OSGeo/proj.4).
* Add this line to top of _proj.pyx
```
# cython: linetrace=True
```
* Set the environment variable PYPROJ_FULL_COVERAGE to any value. This
is only needed for installation. Most platforms `$ export PYPROJ_FULL_COVERGAGE=1`.
Windows: `C:...> set PYPROJ_FULL_COVERGAGE=1`,
* Install in editable/development mode (python setup.py uses the `--inplace` flag)
* Using pip, use `--upgrade` flag if pyproj is already installed.
```
pip install [--upgrade] --editable .
```
* Using python setup.py (this isn't well tested)
```
python setup.py build_ext --inplace
python setup.py install
```
[Installation](https://jswhit.github.io/pyproj/html/installation.html)
------------
Documentation
[Documentation](http://jswhit.github.io/pyproj)
-------------
Docs are at http://jswhit.github.io/pyproj.
Bugs/Questions
--------------
......
This diff is collapsed.
platform:
- x64
# This is based on file and files in ci/appveyor are from
# https://github.com/ogrisel/python-appveyor-demo
environment:
......@@ -12,58 +15,85 @@ environment:
# See: http://www.appveyor.com/docs/installed-software#python
# build is limited to 60 minutes, without caching each build takes 10-30 minutes
# with caching build takes less than 1 minute
# Python 2.6 will need to run this `pip install unittest2`
# - PYTHON: "C:\\Python26"
# PYTHON_VERSION: "2.6.x"
# PYTHON_ARCH: "32"
# - PYTHON: "C:\\Python26-x64"
# PYTHON_VERSION: "2.6.x"
# - PYTHON: "C:\\Python35-x64"
# PYTHON_VERSION: "3.5"
# PYTHON_ARCH: "64"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
# - PYTHON: "C:\\Python33"
# PYTHON_VERSION: "3.3.x"
# PYTHON_ARCH: "32"
- PYTHON: "C:\\Python33-x64"
PYTHON_VERSION: "3.3.x"
PYTHON_ARCH: "64"
# - PYTHON: "C:\\Python34"
# PYTHON_VERSION: "3.4.x"
# PYTHON_ARCH: "32"
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
# VS_VERSION: Visual Studio 14
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# PROJSOURCE: 6.0.0
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
VS_VERSION: Visual Studio 14
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
PROJSOURCE: 6.0.0
# - PYTHON: "C:\\Python37-x64"
# PYTHON_VERSION: "3.7"
# PYTHON_ARCH: "64"
# VS_VERSION: Visual Studio 14
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# PROJSOURCE: 6.0.0
# - PYTHON: "C:\\Python36-x64"
# PYTHON_VERSION: "3.6"
# PYTHON_ARCH: "64"
# VS_VERSION: Visual Studio 14
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# PROJSOURCE: git
matrix:
allow_failures:
- PROJSOURCE: git
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
shallow_clone: true
cache:
- C:\Users\appveyor\AppData\Local\pip\Cache\wheels
build_script:
# setup sqlite3
- vcpkg install sqlite3:"%platform%"-windows
- set SQLITE3_BIN=%APPVEYOR_BUILD_FOLDER%\sqlite3\bin
- mkdir %SQLITE3_BIN%
- copy c:\tools\vcpkg\installed\"%platform%"-windows\bin\sqlite3.dll %SQLITE3_BIN%
- ps: |
appveyor DownloadFile https://sqlite.org/2018/sqlite-tools-win32-x86-3250100.zip
7z x sqlite-tools-win32-x86-3250100.zip
- copy "%APPVEYOR_BUILD_FOLDER%"\sqlite-tools-win32-x86-3250100\sqlite3.exe %SQLITE3_BIN%
- set PATH=%PATH%;%SQLITE3_BIN%
# setup PROJ.4
- if "%PROJSOURCE%" == "git" git clone https://github.com/OSGeo/proj.4.git proj-git
- if not "%PROJSOURCE%" == "git" curl -o "proj-%PROJSOURCE:~0,5%.zip" "https://download.osgeo.org/proj/proj-%PROJSOURCE%.zip"
- if not "%PROJSOURCE%" == "git" 7z x -aoa -y "proj-%PROJSOURCE:~0,5%.zip"
- cd "%APPVEYOR_BUILD_FOLDER%\proj-%PROJSOURCE:~0,5%"
- if "%platform%" == "x64" SET VS_FULL=%VS_VERSION% Win64
- if "%platform%" == "x64" SET BUILD_LIBPROJ_SHARED=ON
- if "%platform%" == "x86" SET VS_FULL=%VS_VERSION%
- if "%platform%" == "x86" SET BUILD_LIBPROJ_SHARED=OFF
- echo "%VS_FULL%"
#
- mkdir build
- cd build
- set PROJ_DIR=%APPVEYOR_BUILD_FOLDER%\proj_dir
- cmake -G "%VS_FULL%" .. -DCMAKE_BUILD_TYPE=Release -DBUILD_LIBPROJ_SHARED="%BUILD_LIBPROJ_SHARED%" -DCMAKE_C_FLAGS="/WX" -DCMAKE_CXX_FLAGS="/WX" -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_INSTALL_PREFIX="%PROJ_DIR%"
- cmake --build . --config Release --target install
- set PATH=%PATH%;%PROJ_DIR%\bin
- set PROJ_LIB=%PROJ_DIR%\share\proj
- cd %PROJ_LIB%
- curl -O http://download.osgeo.org/proj/proj-datumgrid-1.8.zip
- 7z e -aoa -y proj-datumgrid-1.8.zip
- del proj-datumgrid-1.8.zip
- cd %APPVEYOR_BUILD_FOLDER%
- proj
# Build and install pyproj
- "%CMD_IN_ENV% pip install \"pip>=10.0.1\""
- set PYPROJ_FULL_COVERAGE=YES
- "%CMD_IN_ENV% pip install -e ."
- "%CMD_IN_ENV% pip install -r requirements-dev.txt"
install:
- ECHO "Filesystem root:"
- ps: "ls \"C:/\""
- ECHO "Installed SDKs:"
- ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
# Install Python (from the official .msi of http://python.org) and pip when
# not already installed.
# - ps: if (-not(Test-Path($env:PYTHON))) { & ci\appveyor\install.ps1 }
......@@ -82,35 +112,35 @@ install:
- "pip install --disable-pip-version-check --user --upgrade pip"
# install wheel, caching
- "pip install wheel"
# Install the build dependencies of the project. If some dependencies contain
# compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
- "%CMD_IN_ENV% pip install -r requirements-dev.txt"
build_script:
# Build and install pyproj
# - "%CMD_IN_ENV% python setup.py install"
- "%CMD_IN_ENV% pip install ."
- "%CMD_IN_ENV% pip install wheel"
test_script:
# Run the project tests
- "%CMD_IN_ENV% python lib/pyproj/__init__.py"
- "%CMD_IN_ENV% python -c \"import pyproj; pyproj.Proj(init='epsg:4269')\""
- "%CMD_IN_ENV% python unittest/test.py -v"
#after_test:
after_test:
# If tests are successful, create binary packages for the project.
# - "%CMD_IN_ENV% python setup.py bdist_wheel"
- mkdir pyproj\proj_dir\share\proj
- copy %PROJ_LIB%\* pyproj\proj_dir\share\proj
- mkdir pyproj\proj_dir\lib
- copy %PROJ_DIR%\lib\* pyproj\proj_dir\lib
- copy c:\tools\vcpkg\installed\"%platform%"-windows\bin\sqlite3.dll pyproj\proj_dir\lib
- set PROJ_LIBDIR=proj_dir\lib
- set PROJ_WHEEL=true
- "%CMD_IN_ENV% python setup.py bdist_wheel"
# - "%CMD_IN_ENV% python setup.py bdist_wininst"
# - "%CMD_IN_ENV% python setup.py bdist_msi"
# - ps: "ls dist"
#artifacts:
# test wheel
- pip install pyproj --ignore-installed --no-index -f dist
- python -c "import pyproj; pyproj.Proj(init='epsg:4269')"
# cleanup for test dir
- if %PROJSOURCE% == git del /F /Q dist\*
- ps: "ls dist"
artifacts:
# Archive the generated packages in the ci.appveyor.com build report.
# - path: dist\*
- path: dist\*
#on_success:
# - TODO: upload the content of dist/*.whl to a public wheelhouse
......
#!/bin/bash
# Run this command to build the wheels:
# docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh 6.0.0 36
set -e -x
# install updated auditwheel
/opt/python/cp36-cp36m/bin/pip install git+https://github.com/daa/auditwheel.git@c4b6339
# Install PROJ.4
yum install -y sqlite sqlite-devel zlib-devel
export PROJ_DIR=/io/pyproj/proj_dir
/io/ci/travis/proj-dl-and-compile $1
# Compile wheels
export PROJ_WHEEL=true
for PYBIN in /opt/python/cp${2//\./}*/bin; do
"${PYBIN}/pip" install -r /io/requirements-dev.txt
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
done
# Bundle external shared libraries into the wheels
for whl in wheelhouse/*.whl; do
auditwheel repair "$whl" -w /io/wheelhouse/
done
# Install packages and test
for PYBIN in /opt/python/cp${2//\./}*/bin/; do
"${PYBIN}/pip" install pyproj --no-index -f /io/wheelhouse
(cd "$HOME"; "${PYBIN}/python" -c "import pyproj; pyproj.Proj(init='epsg:4269')" )
done
#!/usr/bin/env bash
# adds this line to _proj.pyx to enable measuring Cython coverage
sed -i '1 i\# cython: linetrace=True' _proj.pyx
#!/bin/bash
echo "Building PROJ.4 $1 version from source..."
if [[ $1 == "git" ]]; then
git clone https://github.com/OSGeo/proj.4.git proj.4-git
git clone https://github.com/OSGeo/proj.4.git proj-git
else
wget https://github.com/OSGeo/proj.4/archive/$1.tar.gz
tar zxf $1.tar.gz
curl https://download.osgeo.org/proj/proj-$1.tar.gz > "proj-${1:0:5}.tar.gz"
tar zxf "proj-${1:0:5}.tar.gz"
fi
cd proj.4-$1
cd "proj-${1:0:5}"
# Download and extract grids
wget http://download.osgeo.org/proj/proj-datumgrid-1.5.zip
cd nad
unzip -o ../proj-datumgrid-1.5.zip
curl http://download.osgeo.org/proj/proj-datumgrid-1.8.zip > proj-datumgrid-1.8.zip
cd data
unzip -o ../proj-datumgrid-1.8.zip
rm ../proj-datumgrid-1.8.zip
cd ..
# could be installed to a cached location (probably not git version)
# seems to take only about 13 seconds of build time
cmake . -DCMAKE_INSTALL_PREFIX=/tmp/proj_dl_install
make -j3
# build using autotools
sh autogen.sh
./configure --prefix=$PROJ_DIR
make
make install
find /tmp/proj_dl_install
# export PROJ_DIR="/tmp/proj_git_install"
# build using cmake
#cmake . -DCMAKE_INSTALL_PREFIX=$PROJ_DIR
#cmake --build .
#make install
find $PROJ_DIR
# export PROJ_DIR="/tmp/proj_dl_install"
cd ..
# svn propset svn:mime-type text/html docs/*html
epydoc -v --exclude=_geod --exclude=datadir --exclude=_proj --no-frames --no-private --introspect-only -o docs pyproj
#!/bin/sh
pip install sphinx
cd sphinx && make html && cd ..
Florida - HP
33 33 1 -88.00000 .25000 24.00000 .25000
0: 7672 -6501 103 -773 125 -788 160 -817 200 -858 246 -914 294 -982 339 -1060
378 -1141 404 -1217 416 -1277 406 -1312 377 -1308 321 -1253 243 -1136 136 -946
6 -668 -154 -294 -347 194 -577 813 -837 1548 -1039 2280 -920 2603 -731 2767
-244 2680 366 2537 835 2117 545 1930 194 2344 152 2581 592 2449 1020 2189
1247 1948
1: 6754 -7120 8 -708 34 -720 68 -742 113 -778 164 -827 220 -889 276 -960
327 -1036 372 -1109 404 -1169 422 -1206 423 -1211 404 -1170 367 -1076 311 -915
234 -680 133 -352 -5 91 -206 694 -519 1526 -940 2565 -720 2708 -761 2904
-190 2656 556 2684 1384 1878 336 1391 -509 2300 -707 2530 249 2025 931 1499
1153 1093
2: 5839 -7757 -85 -643 -60 -651 -23 -668 24 -696 79 -738 141 -792 206 -856
269 -925 328 -992 380 -1048 420 -1085 448 -1093 461 -1060 462 -982 449 -845
426 -645 391 -367 339 8 246 530 22 1341 -727 2950 -300 2631 -817 2997 -63 2328
605 3088 2423 1864 -180 932 -1705 2673 -2090 2563 126 1350 1056 604 1092 80
3: 4931 -8407 -176 -580 -152 -582 -115 -593 -67 -613 -9 -648 57 -692 128 -747
200 -807 272 -865 339 -914 396 -946 446 -950 484 -919 511 -844 531 -719
544 -534 557 -282 575 57 603 521 666 1219 935 2462 -596 2881 -290 2556 533 1660
517 2766 2960 2565 -780 2955 -4000 3000 -3837 1859 682 18 1424 -535 929 -1087
4: 4040 -9062 -266 -517 -242 -515 -207 -517 -159 -531 -101 -555 -33 -590
42 -634 122 -683 201 -730 279 -768 350 -790 413 -785 466 -747 508 -664 540 -533
563 -344 583 -85 600 264 616 739 614 1405 484 2283 -488 2772 -579 2757 -245 2656
-1 3507 917 4006 -862 4197 -2155 2464 -1050 -2791 1050 -1209 1564 -1695
378 -2234
5: 3177 -9703 -353 -457 -331 -449 -299 -444 -253 -449 -196 -464 -128 -487
-51 -519 32 -556 117 -590 201 -614 281 -623 350 -604 410 -550 453 -452 480 -305
487 -97 471 180 425 544 331 1017 146 1614 -231 2286 -935 2790 -1308 3079
-1338 3409 -1044 4066 -165 4364 -98 3520 1098 -1747 317 -3205 1665 -2467
2276 -2277 -302 -2541
6: 2355 -10301 -436 -403 -419 -387 -389 -376 -348 -372 -294 -374 -228 -388
-152 -406 -67 -430 20 -449 108 -460 191 -452 264 -416 322 -343 359 -227
369 -58 345 170 276 464 147 829 -69 1271 -405 1783 -900 2313 -1540 2764
-2049 3120 -2302 3479 -1974 3796 -82 3346 1747 1598 3151 -3091 281 -2706
2719 -2294 352 -2797 200 -3163
7: 1590 -10819 -516 -357 -503 -335 -479 -316 -444 -301 -394 -293 -333 -294
-259 -301 -176 -310 -87 -315 3 -311 87 -287 161 -234 215 -144 244 -7 237 183
182 427 65 727 -132 1080 -432 1471 -848 1880 -1370 2263 -1925 2567 -2361 2769
-2645 2902 -2624 2933 286 1797 3755 -705 3171 -2773 1532 -1897 1118 -915
636 -2145 -185 -3134
8: 898 -11213 -591 -325 -585 -296 -567 -267 -540 -243 -498 -224 -442 -213
-372 -206 -291 -202 -202 -194 -111 -176 -24 -139 50 -71 103 35 127 188 109 393
37 650 -105 952 -335 1281 -668 1611 -1101 1905 -1581 2125 -1957 2219 -1968 2123
-1462 1769 -924 1518 -924 1495 3095 -2090 3298 -1453 2284 -1197 -736 -682
983 -1073 1002 -3205
9: 299 -11436 -663 -310 -663 -275 -655 -237 -637 -202 -604 -171 -556 -148
-490 -128 -412 -111 -322 -92 -229 -63 -138 -16 -59 61 -3 177 23 342 6 557
-64 823 -202 1125 -423 1433 -739 1703 -1151 1887 -1604 1941 -1908 1856
-1633 1562 -301 701 169 192 -158 600 1102 -1285 3892 -1075 734 -429 262 -858
248 -1211 1092 -2529
10: -192 -11437 -729 -320 -738 -277 -741 -230 -735 -183 -714 -141 -673 -104
-615 -71 -538 -42 -446 -14 -347 23 -249 75 -162 154 -95 273 -60 438 -62 660
-112 932 -217 1238 -388 1541 -637 1773 -980 1854 -1425 1726 -1884 1463
-1835 1296 626 440 839 696 -805 -950 675 -1036 4029 -688 210 -2089 1085 -24
-138 -838 328 -1417
11: -559 -11168 -788 -361 -808 -309 -826 -252 -835 -194 -827 -137 -798 -85
-745 -38 -668 2 -572 39 -464 79 -354 130 -252 203 -171 313 -117 470 -98 687
-115 961 -170 1281 -261 1604 -388 1849 -570 1874 -871 1503 -1453 663 -2290 -114
104 1078 789 -131 164 -22 1680 -765 4263 -160 -787 -1958 2609 -1886 -2732 873
-29 -276
12: -789 -10590 -839 -437 -873 -378 -909 -310 -935 -237 -945 -164 -929 -95
-883 -32 -806 21 -700 67 -578 106 -449 150 -328 208 -226 296 -151 432 -108 627
-92 893 -99 1224 -112 1599 -113 1941 -75 2099 -9 1802 -158 798 -2134 5 -660 884
-909 -1955 809 46 864 -927 1716 -1008 2936 -1094 -50 25 -1001 -540 148 -655
13: -874 -9674 -878 -556 -930 -488 -988 -408 -1038 -320 -1069 -227 -1070 -135
-1031 -52 -951 18 -832 73 -688 111 -533 142 -384 175 -257 229 -161 323 -97 479
-59 710 -37 1029 -17 1436 20 1898 103 2309 265 2370 583 1459 1923 -901 -2624 -38
-3346 -1930 102 16 663 379 973 -2392 1234 -868 -1191 942 187 -3809 909 1161
14: -810 -8403 -902 -723 -976 -647 -1061 -554 -1142 -445 -1201 -328 -1222 -209
-1193 -96 -1107 -3 -970 64 -794 104 -601 118 -416 118 -261 126 -143 164
-64 256 -12 422 22 678 42 1036 42 1490 -8 1932 -193 1847 -1030 -947 127 3077
-1734 645 -141 -1585 -1138 971 1611 5264 -608 -9267 85 -497 -917 -1288
796 1568 1477 278
15: -600 -6782 -906 -943 -1005 -858 -1124 -751 -1245 -620 -1342 -471 -1391 -314
-1374 -164 -1280 -36 -1115 54 -895 97 -651 95 -418 57 -228 10 -90 -17 -1 1
61 87 112 247 159 495 175 847 120 1293 38 1673 941 1936 -9941 -936 858 1039
-1295 -2639 3057 -804 2291 1821 1058 -1212 123 688 680 390 -440 1982 611 313
16: -255 -4835 -881 -1218 -1011 -1128 -1173 -1005 -1344 -848 -1492 -659
-1579 -453 -1580 -249 -1478 -73 -1274 52 -993 110 -676 93 -379 15 -146 -93
4 -185 92 -229 159 -205 246 -111 382 67 568 396 796 1097 1014 2461 0 2000
-8346 -5148 -6654 4148 2600 -4833 3503 1265 3163 2598 1837 870 -186 126
143 1015 -128 1314 205 670
17: 206 -2608 -821 -1550 -983 -1458 -1197 -1322 -1435 -1135 -1652 -897
-1793 -624 -1819 -349 -1707 -105 -1455 72 -1091 157 -670 133 -282 12 -3 -161
147 -315 206 -394 252 -378 366 -266 611 -48 1003 357 1540 1418 2577 5461
-501 -2255 5516 5948 -18845 -6837 0 -5107 2402 2555 4553 2700 1242 348
-368 554 15 637 -179 1340 -96 1049
18: 751 -169 -717 -1938 -909 -1851 -1183 -1706 -1510 -1488 -1820 -1188
-2035 -829 -2098 -459 -1978 -127 -1670 124 -1195 255 -625 237 -104 65 226 -193
346 -405 326 -493 294 -428 384 -196 713 217 1330 869 2070 1935 2277 3529
24 1272 7103 3967 -2782 -5390 -9810 -3597 -2867 1487 1170 -514 1204 -5
64 107 122 1081 -289 1400 -334 1205
19: 1334 2389 -561 -2377 -773 -2304 -1112 -2162 -1555 -1917 -1996 -1538
-2311 -1065 -2419 -573 -2295 -132 -1932 210 -1324 413 -533 419 190 188
576 -195 619 -483 443 -566 243 -436 202 -76 504 525 1285 1262 2419 1785
2861 1614 258 744 4600 5835 -1610 -5973 -5784 -751 -2652 -890 -2683 -1865
1273 57 733 862 74 1430 -445 1184 -488 1116
20: 1890 4955 -353 -2859 -553 -2813 -955 -2692 -1556 -2435 -2181 -1954
-2620 -1320 -2775 -676 -2644 -120 -2251 317 -1516 619 -396 687 657 403
1088 -190 986 -572 565 -644 110 -486 -190 -62 -107 705 599 1700 2151 2152
3558 1268 -1507 -983 42 152 1603 -2650 270 -1361 85 859 -7000 0 1798 903
-428 542 -32 1121 -308 1103 -438 1050
21: 2332 7397 -106 -3372 -236 -3370 -662 -3295 -1489 -3073 -2389 -2435
-2965 -1560 -3134 -725 -2964 -85 -2606 403 -1849 812 -234 1005 1373 728
1775 -181 1446 -645 703 -683 -10 -593 -617 -297 -874 462 -590 1868 727 2585
3088 850 -2719 -882 2463 -2273 1661 -1542 403 -247 -803 -600 -2808 2265
78 552 -268 754 -152 985 -266 998 -380 958
22: 2553 9565 128 -3909 183 -3962 -150 -3947 -1331 -3900 -2665 -2973 -3354 -1695
-3442 -625 -3088 7 -2864 391 -2448 853 -86 1168 2369 1054 2538 8 1923 -527
819 -504 24 -633 -783 -758 -1053 -507 -337 1109 1651 2823 536 -2240 1044 1122
946 -1948 -80 -814 -1704 2439 -1329 403 -1042 1100 -6 504 -44 770 -102 851
-225 850 -342 820
23: 2453 11303 233 -4478 625 -4610 730 -4564 -1058 -5090 -3119 -3498 -3769 -1546
-3669 -178 -2723 264 -2620 231 -3334 613 251 553 3000 0 3158 1966 2158 218
815 55 337 -390 -796 -933 -1254 -1571 -797 456 2435 -455 2771 1386 -827 3268
0 -3000 -510 -862 -2895 2167 -1703 1713 -892 982 151 593 90 586 -70 637
-225 654 -348 648
24: 2018 12480 20 -5106 779 -5482 2150 -4984 -657 -6960 -3918 -3730 -3983 -827
-3972 874 -1687 926 -1286 60 -3464 749 -716 2140 8510 -484 -1773 1318 954 978
1151 -16 1237 -44 -557 -171 -893 -1011 630 -1280 -303 -5857 2962 3371 -2993 5847
528 -1758 -1163 250 -3620 1297 -22 1275 144 1277 -37 420 -85 425 -185 475
-306 485 -413 474
25: 1482 13045 -595 -5698 -76 -7030 3555 -5891 -75 -9103 -4913 -2783 -2879 620
-4780 2466 -842 2224 -1877 150 899 5691 -4885 5468 9110 -4286 -849 -657
27 -1439 790 -1014 1344 195 -172 -280 -633 -726 369 -1130 22 -1009 -22 2187
-1000 0 -51 -252 -87 1011 -3027 403 -787 279 904 2090 38 1229 -150 767 -289 523
-419 392 -521 320
26: 1355 12925 -894 -5548 -930 -7327 -2531 -19050 1950 -360 -2950 -640
2000 2000 -4428 2801 -435 3572 -167 2638 386 3423 -965 1454 2797 9 519 847
-1666 -1917 1959 -4827 1000 3000 -886 -211 -1177 -2017 439 -905 749 -2342
-191 5903 406 2279 -2340 -8707 674 987 -4677 5266 -25 -1215 1305 2437 588 1784
-4 996 -354 519 -556 270 -669 146
27: 1459 11181 -1466 -7182 -2572 -10336 -3104 -11802 1118 -1032 3176 911
-611 4260 -2000 0 -619 3300 -2381 700 -1000 4000 0 -4000 2404 3094 5349 7048
1689 4151 -991 -3201 131 63 -2168 386 1542 242 -560 -3732 80 -2204 493 3164
1412 2599 318 -2751 -1207 -4294 -5222 -3431 -2270 3866 520 1894 163 1104
-327 566 -631 218 -792 16 -873 -88
28: 2203 10314 -830 -6011 -1373 -7303 -4130 -9160 -817 1919 3956 749 -1009 1492
221 -1684 2270 2426 -2873 3931 -2405 -482 2282 309 2655 2770 3130 5110
1455 3807 -535 -219 -587 -72 -1198 71 457 -475 -266 -2633 -86 -1848 222 551
326 205 -885 -2650 -2183 -2117 -1600 -1445 569 2262 -1413 425 -1219 69
-1107 -98 -1098 -227 -1110 -316 -1112 -365
29: 2716 10001 -644 -4332 -1204 -4602 -2281 -3934 -319 1881 2290 2592
-73 -1368 577 -1976 1226 678 -1193 2021 -1019 265 1543 1065 2171 2483 2097 3629
1087 2963 -136 972 -554 260 -736 -122 -151 -785 -284 -1841 -246 -1646 -177 -779
-348 -949 -1043 -1950 -1496 -1537 -785 -809 26 629 -1182 -51 -1483 -404
-1478 -541 -1425 -604 -1375 -633 -1328 -640
30: 3029 9940 -431 -2553 -758 -2281 -989 -1183 36 1426 1195 1655 548 -691
693 -1266 753 -73 -164 811 -55 576 1094 1158 1573 2020 1451 2592 814 2237
47 1191 -382 422 -535 -164 -382 -796 -399 -1427 -411 -1516 -453 -1290 -631 -1364
-965 -1632 -1085 -1356 -727 -853 -505 -282 -1099 -484 -1463 -716 -1581 -842
-1583 -891 -1541 -903 -1490 -894
31: 3263 9862 -143 -949 -274 -581 -241 203 289 1267 831 1191 750 -14 764 -535
696 -141 363 355 425 565 901 1014 1144 1543 1026 1844 608 1640 101 1035
-260 405 -438 -173 -461 -729 -496 -1199 -542 -1406 -614 -1430 -746 -1484
-908 -1531 -950 -1354 -827 -1061 -822 -811 -1145 -862 -1437 -992 -1593 -1084
-1643 -1128 -1633 -1136 -1596 -1125
32: 3476 9640 176 430 146 687 231 1079 513 1415 789 1190 837 486 835 38
769 55 633 269 646 489 808 801 876 1120 747 1278 449 1148 92 765 -203 287
-393 -203 -490 -673 -563 -1065 -630 -1312 -711 -1435 -809 -1506 -904 -1520
-946 -1426 -943 -1278 -1014 -1165 -1223 -1178 -1442 -1248 -1592 -1310
-1667 -1343 -1682 -1351 -1667 -1343
Maryland - HP
25 17 1 -80.00000 .25000 37.00000 .25000
0: 5107 -2502 -700 496 -656 468 -587 418 -481 347 -325 256 -111 152 166 50
493 -37 854 -96 1221 -118 1568 -125 1953 -143 2433 -195 2464 -281 2529 -395
1987 -729 447 -916 -3011 -1181 -5559 -406 -6094 541 -5714 1110 -5247 1289
-4993 1254 -4960 1151
1: 4757 -1695 -644 429 -627 411 -602 368 -555 299 -470 206 -328 96 -125 -15
126 -105 391 -146 634 -120 762 -58 911 -13 1583 -8 1049 -28 1451 123 1377 -464
907 -603 -4056 -1955 -6769 -485 -5797 929 -4254 1413 -3251 1295 -2871 993
-2899 724
2: 4413 -932 -563 355 -566 354 -582 322 -597 258 -579 164 -499 45 -341 -84
-127 -192 93 -234 288 -157 190 -25 -145 65 1065 74 -1087 -40 -877 1058 -994 18
1208 694 -5540 -3840 -7658 -332 -4130 1732 -1668 1786 -634 1127 -525 501
-856 110
3: 4055 -240 -456 271 -467 294 -520 279 -598 226 -652 137 -622 9 -469 -140
-216 -285 27 -362 263 -223 177 -13 -96 71 110 26 -1646 -1167 -6731 2306
-6507 1730 -6212 3695 -4277 -7455 -3522 570 519 3029 2116 1873 2259 459
1672 -383 871 -737
4: 3649 351 -332 164 -326 230 -409 235 -557 201 -693 131 -718 0 -535 -165
-101 -346 460 -493 33 -283 -1321 62 -1559 1 -5178 295 -5413 -3383 -1930 1443
-2892 564 -10423 1293 -5171 1702 -2535 2461 2932 4061 4566 750 4123 -1116
2992 -1715 1857 -1727
5: 3144 806 -212 20 -145 160 -245 172 -468 175 -706 151 -825 16 -677 -154
-182 -358 990 -703 -674 -285 -5937 730 -3063 -730 -2085 -867 -3581 281
-2334 586 -1865 759 -5614 1473 -3452 5821 -3401 5679 1428 2413 4628 -2496
4177 -3412 2947 -3078 1846 -2521
6: 2486 1092 -149 -192 58 93 -44 50 -322 127 -644 224 -873 34 -771 -149
-678 -275 1770 -1075 -356 -827 -5051 5 -7881 816 -1030 443 -515 634 -2144 1008
-1825 1030 -2498 1380 -732 4469 -286 5830 843 2970 3527 -3923 2622 -4302
1634 -3420 962 -2613
7: 1654 1205 -254 -546 221 60 99 -240 -127 38 -418 455 -728 36 -31 -311
-225 -355 -33 -358 -3518 -30 -4640 -954 -5000 1000 -1818 2806 1675 -346
-1857 1540 -225 -656 -1646 2284 2156 3127 2865 2526 3328 2398 1668 -4480
57 -3443 -249 -2495 -233 -1941
8: 774 1247 -684 -1157 78 -16 -159 -920 104 -45 117 1090 -906 205 695 -339
-472 -133 -1852 1212 -5751 619 -1944 -763 0 0 -1000 1000 0 2000 -781 1116
399 1285 -1441 1545 4580 1012 1900 -687 3393 1019 2580 -6254 -1198 -1689
-1158 -1160 -867 -1068
9: 286 1527 -1064 -1509 -1784 -1841 -1774 -1770 671 449 1944 1770 -864 986
-654 174 -459 -486 -3471 4225 -753 -3046 -1998 -493 920 1014 -194 1777
219 1456 -220 1705 -4805 4062 4000 -1000 1438 -738 1687 -1949 4875 -1313
137 -2862 1175 -2395 -88 -1276 -580 -789
10: 155 1275 -1109 -3207 -3642 -4791 -2359 752 -671 811 -127 1647 2394 2226
143 593 -1814 676 -2822 760 3 -1215 2849 -1527 273 2735 -238 2454 -152 3485
1117 -674 1000 0 -2868 944 -947 22 3163 1227 3618 -1203 2940 -5487 -80 -2667
-428 -1173 -531 -579
11: 210 2136 -191 -2212 -19 -4924 -671 974 -2112 719 -1798 471 60 914 304 1048
-2565 1609 -3875 184 1862 -2588 7166 1567 -242 2228 -1731 3121 2189 749
-4055 528 -454 -2297 -78 773 -1000 -1000 2289 1712 5097 -691 -167 -5244
240 -1551 -59 -589 -233 -314
12: 136 2158 79 -2113 870 -2292 -87 492 -1395 1041 -324 108 1093 15 -372 591
-3302 -1631 1228 1503 2274 -18 348 98 -548 48 3116 847 -2761 -369 -1636 4272
-1692 3024 -2566 -1109 3539 -5665 -2548 3660 4460 -4303 33 -1230 -83 -215
64 -282 7 -263
13: 437 2268 560 -1486 885 -1135 371 147 -233 547 243 42 679 -222 -336 -237
-1466 -996 550 564 492 316 -1347 86 -1522 -8 -3178 -134 3508 29 224 1615
-978 2218 111 -3614 1000 -1000 814 1143 -1762 1626 28 -784 -14 -140 274 -574
170 -385
14: 853 2381 888 -971 974 -638 715 -41 417 171 481 -79 441 -329 -174 -472
-704 -640 -236 -12 -607 49 -1686 -95 -2002 -238 -1988 -349 1822 -129 995 494
219 507 526 -1730 552 -212 170 1146 -1495 1850 -678 543 -301 275 -1 -88
30 -81
15: 1272 2398 1135 -612 1122 -398 955 -126 740 -45 598 -193 366 -390 -90 -527
-502 -568 -637 -337 -1047 -270 -1628 -342 -1734 -438 -1191 -480 655 -329
834 -53 575 -59 523 -598 291 234 -200 1168 -1032 1651 -848 1158 -561 799
-319 502 -228 413
16: 1671 2307 1341 -357 1280 -252 1127 -153 911 -156 671 -279 357 -439
-57 -566 -460 -614 -776 -555 -1133 -534 -1436 -571 -1391 -613 -871 -599
97 -470 476 -272 475 -136 364 -48 91 536 -331 1193 -799 1568 -849 1461 -725 1247
-579 1047 -498 951
Tennessee - HP
41 13 1 -91.00000 .25000 34.00000 .25000
0: 4428 -22007 -1493 4893 -1577 5555 -1600 6225 -1405 5086 -965 1594 -1701 -1996
-2039 -3629 -1741 -3344 -815 -1573 494 700 1259 1802 1435 1879 1325 1617
1153 1350 1009 1144 885 1001 778 868 707 653 744 389 841 191 927 57 931 -55
770 -133 351 -128 -257 -37 -607 -22 -737 -63 -743 -99 -678 -91 -560 -30
-416 38 -280 74 -175 66 -102 31 -54 -8 -26 -41 -11 -60 -5 -71 -6 -73 -10 -70
1: 3780 -18301 -1014 3344 -1198 4442 -1427 6806 -1330 6403 118 1384 -1798 -3653
-2337 -5100 -2065 -4288 -954 -1580 1037 1956 1772 2803 1591 2110 1187 1417
865 1022 694 810 561 754 431 767 300 564 399 238 602 75 797 25 926 -76 882 -173
432 -168 -496 49 -785 39 -800 -58 -737 -137 -642 -130 -489 -13 -301 104
-146 160 -46 133 7 73 30 15 39 -23 39 -41 32 -46 25 -45 15 -38
2: 3069 -14097 -393 1440 -561 2094 -1223 6705 -1961 7926 1706 1136 -2308 -5180
-2320 -5540 -2111 -4420 -1122 -1101 1818 3758 2256 3591 1515 1676 829 738
424 480 357 358 273 454 155 786 -183 562 41 35 350 -45 609 92 842 -20 992 -165
588 -224 -866 182 -861 84 -731 -82 -648 -214 -592 -222 -424 11 -164 201
11 278 89 207 108 101 102 26 89 -10 74 -20 60 -19 46 -10 34 0
3: 2036 -8580 276 277 983 -599 -510 2225 -1953 5028 -1355 918 -1485 -2621
-646 -2637 -1037 -2105 -236 1836 1439 3031 2063 2724 988 58 257 -375 -160 -55
89 -77 91 65 124 1042 -806 722 -215 -297 136 -170 329 352 528 121 879 -7
201 -18 -794 57 -492 2 -427 -117 -460 -287 -591 -403 -424 80 5 335 195 442
217 266 181 97 144 20 116 3 92 10 73 22 58 35 46 47
4: 287 -1924 -453 1080 -331 3 2355 -7518 -858 2359 -3610 -2302 575 3050
1411 1053 432 3839 -252 90 303 163 1142 119 774 -805 -8 -1014 -755 -120
-12 -73 46 -498 607 1411 -1622 1049 -8 -684 10 -208 0 821 -33 109 994 45
-23 190 -839 -183 -74 50 -109 73 -267 -134 -800 -764 -629 316 275 425 405 661
304 257 190 30 139 10 112 38 91 67 73 85 60 97 52 105
5: -865 3376 -382 913 -44 -261 1057 -3331 -508 -2245 742 -3452 775 -1825
-559 27 1784 1798 737 1534 -2211 1916 -525 -445 1059 -829 775 -1226 -946 -789
-613 1793 620 -328 564 -481 -1185 836 1279 836 -572 345 -171 501 -881 -280
962 -334 169 767 678 -1396 -1259 824 78 836 -143 828 -1381 -1522 -1321 1038
903 11 594 946 264 66 77 -98 79 60 86 143 74 176 64 182 56 178 53 174
6: -1343 6747 -88 292 232 -825 700 -2723 317 -3600 220 -3850 200 -1389
784 -730 1893 125 1140 212 -216 618 -3344 1373 -992 -463 1441 -1220 -673 -1585
592 -975 -498 836 816 1029 -122 1065 805 1213 67 777 -417 -867 -2156 -452
1484 229 295 930 833 -644 -135 -680 -38 1930 133 3340 -1820 -2259 -3171 2527
2553 -2627 483 1358 -55 -352 -228 -120 3 358 68 383 61 351 52 310 51 273
52 247
7: -1388 8391 183 -350 407 -1309 560 -2735 238 -3997 -42 -4199 71 -1137
986 -992 1896 -487 1923 -342 237 149 280 -714 -1945 -467 -1380 -467 -1011 -371
-834 -58 -158 -7 1730 2420 237 1669 164 -191 665 -772 723 -1413 -3157 345
324 726 329 497 1138 1010 -121 -133 -175 -268 -51 4070 2416 8621 -8245 -1489
5673 -10573 -529 1071 -827 490 -744 521 87 1194 130 721 64 551 45 439 48 362
56 311
8: -1226 8668 372 -864 552 -1607 648 -2768 398 -4734 -744 -9695 44 2104
907 915 2135 -112 1924 -870 990 963 66 -49 -1087 -39 -2185 14 -1731 115
-1028 -154 -294 -680 -1047 2008 2306 1785 1325 -1428 623 -2381 922 -799
-2498 1892 -1328 829 885 93 580 1349 576 1217 12 -1876 -97 104 -616 1461
-931 1274 641 -1811 -915 917 -299 -301 -1130 436 746 2382 319 748 68 663
38 517 51 417 62 354
9: -1031 7928 431 -1230 551 -1693 574 -2266 289 -3136 -774 -5420 881 -309
-40 209 2144 -2843 1906 -2731 630 3134 902 1630 -1538 739 -1788 -303 -2169 90
-968 -799 -248 349 -752 651 633 1763 1973 -1677 -241 -2784 761 1326 -1204 715
-841 2315 733 577 2318 604 1564 14 740 -2126 -2785 -760 -1562 2680 -259 -93
-254 487 -1576 -41 795 -1621 -2359 -288 1945 3980 577 -12 -18 710 15 520
53 425 71 367
10: -885 6528 377 -1487 428 -1749 404 -1817 238 -1402 -132 -1485 293 583
-1609 -1903 603 -5543 341 6911 -891 -1006 4153 -596 581 -549 -1636 -2262
-1235 290 -986 1249 -792 -297 691 542 87 2083 88 -194 793 190 -515 -726
-295 193 -168 1078 -910 1303 1418 698 1650 -729 -160 -1305 -3097 -1402
2044 1640 -870 -591 -202 171 -706 -189 817 -396 -1835 172 -131 615 2670 852
-539 476 -59 457 45 400 75 354
11: -792 4852 259 -1571 258 -1740 205 -1615 161 -93 -68 78 -214 222 -936 -1563
147 -2586 598 2672 188 1463 1970 688 681 371 -1504 -866 -222 708 -687 -1579
-6 -404 826 -952 -34 2378 -753 786 -287 433 -361 -358 -228 -75 -227 374
-444 519 710 -70 989 -1131 26 -1638 -986 -1436 841 556 -277 83 -228 258
-292 107 130 42 -820 165 -28 216 1382 525 99 410 16 381 51 349 78 321
12: -729 3220 132 -1351 115 -1285 70 -874 15 145 -134 465 -293 299 -469 -539
47 -619 440 1495 483 1720 994 1314 412 822 -565 50 -136 69 -190 -1194 167 -806
416 -572 -146 1121 -691 793 -600 383 -479 -159 -323 -266 -231 -229 -124 -363
458 -902 717 -1662 439 -2116 168 -1882 116 411 -205 548 -226 540 -208 421
-101 321 -326 275 64 248 641 360 262 339 120 317 96 296 99 278
Wisconsin - HP
33 25 1 -94.00000 .25000 42.00000 .25000
0: 1142 -2439 -9 236 -4 218 3 196 11 171 18 143 24 117 28 93 21 74 -7 64 -62 57
-151 10 -225 -154 -63 -403 -174 -312 -109 -375 719 -221 484 11 -544 454
778 199 399 -131 482 334 1322 -1332 466 -2511 25 -1372 -3555 -3448 -5228 -413
-4418 992 -3463 1547 -2945 1834 -2806 2036 -2895 2186 -3089 2289
1: 962 -2138 -21 236 -17 215 -14 188 -10 161 -8 137 -5 116 0 103 -4 101 -29 128
-94 195 -226 268 -450 166 77 -52 -177 185 -345 -67 1266 -30 758 66 -2237 666
637 96 -1126 -674 -787 1772 867 -1040 -715 -2820 291 1249 -5772 -5028 -5685 625
-2814 1117 -1412 1110 -1050 1180 -1186 1314 -1522 1455 -1903 1573
2: 789 -1853 -29 240 -26 212 -27 179 -29 147 -35 124 -38 108 -36 97 -39 91
-73 111 -155 193 -302 351 -899 28 -3 1571 93 396 809 1005 933 26 1061 901
-1277 -638 -1717 -289 -3934 -1909 816 1843 -2988 -654 9 -323 -4099 1350
-11582 532 -703 -565 1348 -475 1346 -154 837 167 207 447 -418 678 -972 858
3: 626 -1593 -31 249 -30 212 -30 169 -40 129 -57 109 -75 103 -74 102 -72 84
-145 61 -357 63 -715 360 -934 1755 -8 140 -147 130 2178 -1107 -475 3922
1496 1973 -977 -20 -2133 159 -3098 -1078 -853 -668 -1175 -182 -4471 305
-4241 5372 -11726 2321 1303 -2332 2775 -1960 2375 -1259 1651 -726 889 -329
178 -20 -427 215
4: 478 -1372 -30 268 -23 218 -22 158 -33 104 -67 88 -106 112 -103 149 -39 161
-71 165 -279 98 -723 336 -906 3204 -74 516 -1855 765 -982 1893 69 2079 3646 -888
-922 -15 -235 719 -2777 -1741 -1142 -103 -1804 86 -2956 1757 -1355 2255
-3134 1816 -3203 103 -128 -984 1112 -1213 1179 -1075 762 -814 214 -536
-302 -290
5: 348 -1202 -25 299 -11 235 4 147 4 62 -46 46 -130 114 -143 230 57 315 157 508
223 453 436 -126 -19 2708 -902 1099 -1702 1214 -1251 898 -1389 1090 -605 -59
-6 -31 900 1775 -64 -924 -1836 -851 -1235 -23 -1467 787 -522 1401 -1184 2449
-1736 1127 -501 -242 316 -968 467 -1169 234 -1078 -139 -864 -510 -635
6: 238 -1102 -22 346 1 271 43 145 83 -10 35 -43 -116 59 -232 271 114 384
163 885 -209 1025 -1048 -1897 -50 2666 1000 2000 1000 3000 -3204 899 -3657 -801
-255 -263 121 -887 -90 138 67 -175 48 913 15 357 30 1633 408 1889 -765 1792
-85 973 98 -205 19 -979 -185 -1264 -443 -1227 -704 -1042 -930 -825
7: 156 -1093 -27 409 -4 335 65 174 195 -109 205 -181 40 -99 -123 93 17 377
516 888 69 909 -2504 1753 -1605 -456 2000 4000 -1616 -315 -2672 -664 -3712 -1021
1785 209 846 -379 -473 1235 714 -95 983 1023 1307 762 1190 1830 1358 2334
-710 2081 1700 772 669 -488 -327 -1192 -905 -1387 -1204 -1290 -1358 -1081
-1438 -866
8: 114 -1197 -36 471 -38 418 11 270 246 -190 339 -236 156 -137 -83 56 -170 677
1969 2103 -321 3927 -6425 -228 238 -2934 -2825 -2596 -1107 1550 811 265
-666 123 -197 833 -16 -175 1144 678 1132 434 2328 1064 1755 1036 3196 1540
1493 2616 1952 2632 2169 1092 36 -792 -1226 -1434 -1792 -1434 -1980 -1216
-1982 -967 -1912 -760
9: 130 -1426 -28 508 -64 452 -90 282 -22 -35 144 -52 -13 211 -156 41 -1453 1063
719 1943 -896 4530 -6271 -1517 -104 -2066 1068 -925 -361 -53 -1982 -944
1379 -12 -952 965 -1070 -797 2239 624 1667 -203 4486 701 2870 1044 3892 1732
3191 2514 1811 2523 3311 1338 -956 -1332 -2114 -1570 -2499 -1269 -2540 -935
-2409 -686 -2221 -523
10: 206 -1747 15 555 -56 549 -244 443 -642 173 -1140 20 -960 1837 53 -952
-296 140 -5773 2701 -4163 -1719 -804 1949 2804 51 2534 -368 -355 -591 1447 -1726
334 650 -359 97 -3335 800 2697 -1044 1647 -4023 16184 4356 3962 2167 932 5018
-1556 -308 -158 91 1802 -533 -856 -1170 -1910 -1167 -2509 -752 -2635 -438
-2489 -275 -2262 -206
11: 317 -2136 114 611 127 731 52 866 -353 852 -1022 243 -1368 2721 -5443 12
-3424 100 -3449 1816 -3385 -2127 1752 -602 2884 -927 3992 -127 2172 904
1956 -66 -514 -1139 -720 -845 -371 -437 -412 836 1652 -861 10857 -5335
17344 -13635 39679 -18671 -40694 36552 -10007 7834 -814 -887 599 -2128
-621 -1143 -1919 -233 -2275 81 -2196 126 -2005 89
12: 380 -2585 181 602 339 824 723 1249 1377 1910 -107 1194 -5794 1662 -5583 1775
-1598 -658 -1308 901 -2569 176 3177 -2081 1537 -2218 468 -1548 2980 956
324 50 -723 -1427 -1159 -1287 2355 505 1492 309 -1213 814 -7803 -4600 5901 -6146
26567 -18529 -10372 21045 -4757 11552 862 651 1323 -3096 1006 -1396 -1264 193
-1632 412 -1591 355 -1490 258
13: 338 -3044 56 492 21 635 -43 831 130 1333 3437 5060 -4977 1084 -8092 2428
-529 -1856 2522 114 1587 392 4576 -1342 -83 -1159 -1736 865 4841 -2658
-1515 -1462 -2283 1122 -1734 -5519 1727 1103 -934 814 -787 -239 -8829 -2963
-10693 -3031 12771 2677 4136 3094 3693 2953 3333 -96 1733 -1087 1142 -586
-526 127 -684 291 -760 297 -829 250
14: 300 -3401 -37 454 -150 702 -367 1139 -720 1828 -1336 1531 -1339 5182
-2773 155 2106 -380 1087 -1387 3721 -1719 2310 32 456 -120 742 -16 1655 -160
-988 50 -1105 1159 -1133 -3569 4 -313 -2867 541 -3983 855 -11104 -3164
2270 -5082 7686 1598 2136 2220 1634 1412 1577 315 277 -22 829 34 -745 123
55 59 -61 122 -256 147
15: 325 -3665 -54 412 -133 738 -305 1282 -833 2233 -3111 4516 2527 7153
5200 -902 1671 -2632 -1102 -3172 -105 -1837 2154 -742 -1982 1391 625 158
244 -129 -160 -565 216 686 -334 -1090 -1269 90 -1522 56 -432 -627 2310 -7203
-1769 -1452 -673 2171 -764 2065 -903 1030 -390 -25 -340 -100 59 -6 -353 30
62 -6 127 24 25 54
16: 403 -3896 -56 315 -85 689 -102 1244 -72 1989 136 2611 1494 3958 2390 42
197 178 -481 -1145 1039 -106 -459 -919 435 -20 160 184 -27 -148 -260 -181
414 -492 35 -190 -1570 -225 406 434 2134 -370 6112 -2074 -1820 -4189 -7219 529
-1826 901 -1739 972 -631 9 -413 -143 -191 -96 -189 -61 38 -59 141 -40 117 -17
17: 520 -4172 -83 125 -123 511 -146 1010 -38 1486 676 1817 -821 1175 2015 3048
-175 373 -1334 480 3189 -750 172 48 478 -3 933 663 1404 138 -422 273 -506 -1238
-2394 -1351 -204 -1819 566 -693 -594 -1225 6646 2265 -307 -2024 -4556 -563
-2739 109 -1963 354 -1008 48 -564 -92 -304 -111 -165 -102 0 -98 100 -85
115 -70
18: 694 -4558 -109 -173 -174 252 -276 870 -421 1650 -542 2308 -90 845 3268 4894
-759 112 -629 -130 575 -159 2441 -41 934 67 977 -577 3696 1106 7694 2089
-12687 -4638 -8040 -3403 2997 -480 512 249 -344 -398 4851 1203 1431 -461
-1711 -421 -1978 -162 -1675 -13 -1007 28 -610 -54 -357 -100 -188 -117 -49 -121
38 -117 68 -111
19: 942 -5097 -104 -625 -138 -252 -175 314 -187 1120 -149 2147 -371 2824
-559 4060 9826 3350 -5878 -1630 -1718 -319 3515 -502 1111 1664 -688 -828
2873 1448 3923 1087 -6691 -2448 -5696 -3595 -80 -2854 -323 -100 165 145
2528 648 1427 52 -327 -163 -1042 -153 -1121 -98 -840 -51 -572 -76 -368 -109
-217 -129 -102 -140 -30 -144 4 -142
20: 1238 -5750 -94 -1191 -95 -969 -76 -682 -15 -418 64 -332 -144 -155 -1857 5519
1958 4101 148 2169 597 1518 3682 2085 2109 2553 -1401 -1172 736 1535 1344 -16
-3061 -1900 -3399 -2921 -1191 -2567 -557 -882 170 -149 1273 224 1011 85
153 -61 -437 -115 -654 -114 -605 -100 -475 -110 -345 -130 -235 -148 -150 -160
-94 -168 -66 -171
21: 1548 -6408 -116 -1732 -116 -1605 -112 -1432 -122 -1215 -222 -834 -614 353
-1365 3851 104 4149 556 3567 560 3306 2935 2120 2372 2503 169 597 334 987
239 -83 -1513 -1348 -1955 -2107 -1167 -1985 -566 -1111 48 -463 640 -104
639 -44 251 -84 -131 -119 -347 -133 -401 -136 -368 -144 -305 -157 -241 -172
-189 -184 -152 -193 -134 -198
22: 1852 -6980 -177 -2161 -192 -2040 -224 -1824 -298 -1451 -459 -746 -744 632
-963 2795 -278 3694 368 3792 849 3565 2047 2766 1926 2465 861 1445 455 995
70 133 -745 -788 -1082 -1380 -828 -1426 -444 -1023 -24 -596 326 -305 391 -184
224 -157 -3 -160 -173 -168 -258 -172 -278 -179 -267 -189 -242 -200 -219 -211
-203 -220 -196 -226
23: 2146 -7440 -260 -2464 -291 -2299 -346 -1990 -436 -1469 -568 -623 -711 650
-706 2178 -281 3154 280 3541 832 3481 1481 3025 1518 2570 1027 1852 612 1219
211 467 -261 -261 -515 -767 -467 -929 -268 -801 -20 -578 184 -389 247 -278
174 -230 41 -215 -84 -211 -169 -213 -217 -217 -236 -224 -243 -231 -244 -241
-246 -248 -249 -254
24: 2438 -7814 -354 -2672 -393 -2447 -449 -2055 -522 -1446 -599 -573 -635 553
-537 1758 -211 2673 242 3174 711 3277 1127 3050 1224 2659 1012 2096 719 1487
404 830 88 214 -113 -248 -153 -490 -82 -532 38 -471 140 -385 176 -320 136 -282
51 -266 -40 -257 -119 -256 -176 -257 -217 -260 -244 -265 -266 -272 -282 -278
-297 -285
Washington - Oregon - HP
37 37 1 -125.00000 .25000 41.00000 .25000
0: 21787 -14100 -1545 -660 -1593 -125 -1424 653 -1185 1188 -1424 644 -1448 264
-1228 283 -946 601 -741 1113 -627 1500 -442 1503 -369 1374 -528 1151 -665 929
-849 774 -1071 783 -1276 870 -1125 855 -747 746 -425 548 -202 218 56 -54
244 -107 263 -196 201 -421 103 -535 -18 -665 -170 -591 -279 -297 -313 198
-214 817 169 1323 342 1652 362 1584 338 1433 316 1336
1: 15553 -7641 -1186 -1309 -1399 -682 -1135 598 -450 1871 -1348 181 -1479 -481
-1141 -377 -745 71 -547 884 -495 1449 -25 1135 209 935 -150 647 -210 411
-414 214 -743 355 -1325 667 -1108 694 -501 630 -175 504 -119 18 187 -372
429 -176 346 -156 219 -590 94 -603 -49 -928 -283 -861 -421 -522 -461 98
-460 993 390 1621 571 2155 509 1785 436 1460 388 1311
2: 9304 -960 -697 -1990 -1317 -1536 -1106 271 1079 3748 -1601 -967 -1634 -1456
-1077 -970 -509 -429 -557 853 -716 1712 545 345 1094 290 21 41 364 -46 201 -402
-136 -118 -1625 603 -1175 489 -71 476 200 621 -221 -195 235 -917 645 -143
347 104 186 -980 77 -462 -57 -1299 -490 -1122 -603 -789 -463 -106 -1053 1254
869 1834 865 2974 655 1885 536 1412 461 1274
3: 2957 6169 209 -2374 -1163 -2575 -2003 -1220 3870 7220 -2410 -3715 -1607 -2244
-1090 -1121 94 -606 -1612 1237 -1631 2539 1803 -1923 2554 -797 -549 -686
1193 -85 1139 -862 1034 -707 -2243 854 -1303 -31 642 147 750 1007 -619 -373
68 -1652 813 -4 162 663 105 -1902 145 80 7 -1860 -990 -1127 -1070 -1049
344 -421 -2065 1625 1392 1694 1154 4138 850 1713 685 1383 549 1315
4: -3925 13709 1975 -1733 324 -2204 -2905 -2053 2052 2327 460 -3287 -588 -1674
-2585 -1319 3966 1261 -9104 2788 -1964 3207 6046 -7829 3305 -2997 -2057 -1196
2031 905 3494 174 1232 -1806 -1157 1489 -1430 -1783 1007 73 823 948 -31 -838
-889 -147 -24 -778 37 -82 6 -1314 868 -1037 9 -1571 -2057 -275 -3306 -1641
3047 231 713 724 -3373 2728 2573 2668 1592 2400 964 1873 637 1550
5: -12666 20545 3843 -419 3000 -696 -4259 -1703 -1092 -3843 4296 -1540
1277 -2701 -1924 -1118 -1385 1298 -3090 1177 692 1529 3975 -7198 2700 -4986
-1242 -1680 1944 -1574 1840 -317 1526 -736 603 241 -38 -279 1000 0 1222 682
-35 141 -1568 874 -351 -986 -278 -846 -30 -845 91 -766 105 -284 -1381 -131
-1984 -1184 2354 -1520 1476 1283 -253 3118 -1380 2299 1202 1660 764 1738
520 1519
6: -24642 24838 3316 261 2035 -356 -1834 -4110 3031 -4739 4516 -2593 2167 -2076
-667 -691 -847 577 -270 -1452 1893 -1660 3175 -4131 2084 -3282 -353 -3054
93 -1241 1411 -263 1843 -939 511 -546 1538 457 2741 -72 1531 -459 155 -87
-1540 319 114 990 -1037 -395 -266 -409 -438 49 -464 -414 -796 -325 0 803
188 444 -315 535 -1071 1100 2265 1617 594 1202 301 1232 273 1205
7: -38069 25452 2538 -239 2531 -1213 817 -5786 3090 -3032 7642 -2607 2258 -1793
190 1851 2630 -2548 656 -3374 1865 -2186 3609 -2323 1760 -2873 -13 -2193
-337 -1000 1420 -1241 1197 -1364 592 -1689 2771 -1024 4961 1067 3892 115
999 -1232 -3964 824 88 2914 -1180 362 -703 41 -374 348 -665 -229 -233 -109
114 467 773 1611 768 990 1215 890 -1248 871 -642 695 -133 768 101 863
8: -50842 22647 1270 -1512 1247 -2122 8260 -3292 5207 -3327 7780 -3643
5049 -2313 -406 -589 3614 -2031 2087 -2089 1290 -1086 2433 -1141 1795 -1347
-89 -1520 -109 -927 729 -1033 1640 -1950 -191 -2703 6891 -609 4634 448
5756 -758 -639 4333 -1965 2038 -401 85 -1892 -481 -955 116 -682 501 -488 -749
-370 88 744 800 1561 1326 303 1403 -1122 310 -1660 1223 -254 529 90 525
171 645
9: -60026 17708 2782 -3010 4619 -3693 7578 -2258 7619 -2858 8905 -2177
6678 -1940 -155 -772 1605 -1166 2376 -682 2932 -358 368 -1232 2956 -1329
-137 -131 430 -448 -1250 -2237 657 -197 3408 1371 5004 287 3376 1322 2834 2953
573 1943 52 -1850 766 -1455 -544 -1512 401 -396 -1186 -490 284 -1127 -201 1024
8 1168 733 707 3230 3507 -5021 -1994 -1867 1275 -22 449 200 475 184 572
10: -66461 12267 3821 -3476 6021 -4007 8619 -3784 8962 -2813 3725 2285
7195 -1944 3273 -174 4118 -1341 2563 425 2407 -490 2337 887 3197 -5346
-1424 1423 -205 1829 -977 -381 3298 2069 4609 3636 2044 -1086 782 -634
548 41 2061 -366 2501 -93 774 -1848 620 -1458 592 -1621 -1768 890 2768 -890
-469 2588 537 1792 -1543 -1123 -526 157 -3795 2418 -265 158 22 91 7 480
30 561
11: -70595 6783 3854 -3128 6111 -3300 9803 -3554 14590 -3660 -754 1374
5737 -2536 3847 -3226 4390 8 2064 1206 2652 2658 4365 -431 1098 534 1611 1857
2641 470 -414 2945 4867 924 4488 2188 -293 -978 -872 -1583 1215 -1735 88 -3265
2231 1520 1159 100 2117 -171 -1684 -975 -501 889 -169 1201 1679 3064 3892 3526
-2753 -494 -4030 -2238 -1773 50 -656 -32 48 92 -21 389 -97 469
12: -72112 936 2875 -2593 4004 -2082 5999 -1700 8234 -3561 8895 -2873
9125 -1260 6243 -1255 821 -636 1458 -155 8143 3887 2315 2292 2948 715 1993 947
839 -128 3220 1466 7859 3292 6759 1778 -4710 -2415 -3716 -2524 4035 572
-1593 -1854 -387 1085 682 -15 1682 67 -86 6 4 803 1415 2251 12 1079 296 3413
-3336 1338 -2397 -1965 -1523 -912 913 49 -347 271 -340 263 -306 319
13: -69937 -5749 2234 -2946 2614 -2714 4483 -3452 13195 -9238 8782 760
6000 3082 6157 2977 615 747 623 -1802 1728 -2279 4485 2343 11977 4969 6586 3390
-1154 2644 1608 -311 7675 3102 15359 -1247 -11875 -4418 -10444 -9781 6256 8078
-2221 2731 9 3089 -856 79 451 -38 700 -1 1742 874 241 1465 -395 1706 -591 1711
-5765 456 -1228 -78 -27 -155 973 1006 282 -184 -148 -67 -335 146
14: -63499 -12814 2818 -3940 3313 -4184 5284 -4967 9906 -6096 11082 1310
4661 5020 -549 1524 3453 3095 541 1403 3094 1712 5519 -1726 6038 427 6249 582
1004 9728 959 712 2453 -728 6226 -579 17726 1955 -47813 14220 16410 -7263
6825 -6891 2314 455 11 32 957 672 715 91 964 915 2031 653 2028 4644 1382 1400
-11349 -1158 -2484 -324 2502 -602 -545 962 48 196 -200 99 -416 218
15: -53556 -19083 4048 -4708 4451 -4891 5639 -4536 7573 -2004 7752 3888
4451 4630 851 1771 -95 1028 -346 1850 -814 3446 4772 -447 1841 -343 8995 3416
1973 4849 1566 1317 1606 -296 2035 -632 6569 942 -7701 2228 1280 -85 119 517
988 64 170 -302 693 105 843 160 2336 2384 1705 1089 3379 583 2044 1643 -15903 -166
490 -34 404 1319 -145 348 369 -114 -300 229 -559 383
16: -41475 -23536 5455 -4947 5476 -5082 5474 -4763 5070 -2672 4242 10035
368 3857 1170 1322 220 1786 -794 2101 4294 1856 -3423 529 -2151 2449 14886 2156
-1510 893 2380 1227 1549 701 900 1228 1585 1006 663 1154 621 700 589 259
-1658 527 -319 291 1042 376 1983 -473 4076 3481 1715 -189 1344 -7246 -1411 10298
-3523 -197 -5318 -4348 -2668 3230 -852 991 791 217 -677 620 -742 584
17: -28742 -25576 6870 -4395 6517 -3829 5647 -1944 3833 2075 -850 4577
-921 3198 -2354 -106 940 2622 -517 2286 55 996 -233 731 1626 -525 3148 4096
5219 -1117 2051 1936 1587 493 8 2786 1121 1800 2101 1928 53 669 -2673 1984
-16427 9085 -2076 12532 27517 8764 -4554 -29183 1162 491 1659 2562 1316 869
-298 1725 -11388 7066 -8259 -5474 8201 -3897 16 -256 -506 958 -998 178
-687 434
18: -16811 -25318 8142 -3711 7381 -3101 5452 -1422 2036 1482 -2243 4629
-2106 3637 -2583 -8 -2860 1177 -408 2635 -1717 3153 -1486 3737 4858 -1961
2471 1129 2972 -189 1522 930 309 39 74 1424 1085 1790 1987 912 1007 -700
-3351 2829 -11348 6148 828 5857 13992 -956 -1465 -6260 714 474 1584 864
1984 -1215 5038 -1568 -4639 1977 -1973 -744 -3471 1073 -3714 220 -2300 994
-1103 152 -660 513
19: -6977 -22933 9263 -2946 8382 -2683 5682 -1549 393 1454 -5174 4786
-3881 2536 -2903 822 -2286 955 -1499 -442 -1684 4068 -7316 2932 -1103 3052
1062 -1496 6206 -3571 8304 1249 -955 485 546 2176 816 214 1089 894 194 890
-636 881 -4221 1701 -167 1634 2286 -271 1718 1408 1423 501 -52 452 1719 -1201
459 457 -2490 -1751 1838 6070 -4041 -234 -5155 -1404 72 6 -941 886 -475 665
20: -406 -18627 10038 -1836 9627 -2126 7317 -2636 1088 -2536 -10930 10601
-6455 -503 -2970 -421 -1819 1285 -3817 -277 -12457 5735 -966 -2555 -1126 -148
6877 -544 10735 -4040 5941 -242 -986 1830 -763 6279 -736 943 1063 -129
-267 32 -1055 1057 -1036 949 -690 533 -59 1212 847 867 170 612 -1165 1685
1637 -1755 -1294 -982 -1209 -372 -750 923 -2039 1141 -1585 2626 -820 1242
-10 366 110 566
21: 1966 -12898 9789 34 9929 367 8705 1337 3611 3160 -19465 -1922 -6535 -3078
-3298 -259 -4156 -3872 -3076 -5160 -9099 8803 3180 -4703 1459 1209 8974 1518
12520 -468 -2370 741 -1312 1499 178 2692 -699 1287 1070 -179 -1049 119
-1427 863 -956 871 -939 -961 1000 888 226 1071 295 528 -1352 382 -1081 -116
-1897 41 639 127 -1084 -712 -878 844 -2952 2582 -347 2477 609 1029 913 511
22: 45 -7012 7989 1605 7729 1761 5295 1782 -1226 1303 -5404 -714 -8221 2752
-803 -9453 -11306 -4342 -1233 -11 3789 -2553 -14190 -2317 6536 1199 9562 1995
12609 -177 3103 965 -3090 2904 2801 27 1549 -329 -1514 1456 -3136 37 -115 187
-317 772 -452 -837 94 -30 -241 796 56 249 -1368 -569 -1541 -57 -994 386
371 495 -377 730 -284 1380 -4278 3696 -546 1432 773 581 1498 144
23: -4884 -1962 5559 2734 5743 2458 4664 1300 76 -802 -11158 272 7610 -3883
-5436 -3346 -20671 4465 7472 8543 -76 -17457 -3479 421 -8674 -3937 4481 -1051
10682 2962 15165 -2249 2132 905 6833 1374 -58 275 -2373 517 -695 -475 -1676 -116
-36 71 854 -36 -624 -186 -2138 -92 -384 -524 -2031 564 240 693 -3 -423 1109 1255
-1169 953 -1062 1937 -1563 2685 -867 1061 687 408 2051 -156
24: -11046 1594 2750 3538 3647 3105 4458 1325 191 -2562 2551 -1691 449 -309
-7045 -1409 -6775 -1656 -1093 1301 -2177 -1163 -3507 -1759 29500 -6082
-18710 -3191 -3246 15487 9665 -13544 4798 -1320 11488 4203 3102 1133 -3915 -1302
-2095 -3624 -1119 -1002 108 -122 685 -82 -1685 -679 -1714 -55 -1384 -413
-1804 -758 1963 1092 357 -6 1346 10 -2670 2101 -766 1140 -39 1659 -597 2037
1302 770 3204 -398
25: -16237 3193 -42 3865 1727 3354 7488 567 1769 -3123 1669 -2983 -418 -1243
-3098 -2711 -1165 259 -1742 3440 -2951 382 0 2000 0 2000 9205 -9906 2076 -5315
-1764 -4576 12607 5377 8440 -278 455 985 -1602 -1549 -2810 -1220 -2108 -497
-673 -1128 -880 -755 -844 -164 -45 -791 -313 -895 -2721 -1259 238 1196
1687 1777 -574 843 -684 937 -2690 218 1321 1893 802 2088 3200 323 5363 -1207
26: -18107 2782 -2092 3698 -1342 3856 12267 120 -467 -678 2741 -3778 183 -1145
-1215 -1039 -823 -1 899 324 -44 1861 0 1000 375 2218 1625 782 9005 -3530
1876 -3709 5210 -426 5592 -838 1924 -3352 -1432 -1674 -1963 -1266 -304 -2643
-3141 -1020 -2018 -512 -1068 -1965 -322 -921 -44 -163 -689 -169 -666 1995
235 1211 1480 297 111 1929 -3528 568 -86 795 1809 1483 6000 -1119 8352 -2725
27: -15027 798 -177 2510 1012 3787 7493 1218 -774 -1947 1216 -2468 -1174 -223
-742 -71 163 -586 2010 -18 2000 2000 0 2000 807 1254 437 826 4584 -2860
2921 -1198 2641 -314 5331 -1483 3298 -2594 -1457 -2265 -1076 -1615 -297 -1419
-3157 -1123 -4032 -2209 27 -2043 920 -969 46 -980 -1257 -392 -4734 7912
4438 -3887 -2893 1162 5360 2169 -1943 -2573 -1507 1810 2403 1821 9566 -3199
11636 -4570
28: -10662 -998 292 1038 -5265 4989 12447 987 -3140 -3750 2032 -585 -3574 331
258 -73 -279 61 2616 -786 2218 65 2604 1664 4423 1513 -2109 -1336 -152 -2651
3348 971 1615 440 3139 -516 2132 -1643 -192 -1855 -574 -1737 -1410 -1874
-2753 -1818 -3087 1527 -2097 -4769 89 -280 2211 -15 -1306 547 -10824 6553
8051 -5806 5525 4111 2686 3060 -5071 464 1576 -1936 7370 -2501 12466 -4954
14097 -5891
29: -6637 -584 2539 1277 -748 -32 823 -459 -1194 -894 1568 229 -1390 1597
2432 67 23 -944 -416 -257 0 -3000 -2720 1989 6776 -899 4794 763 9713 2153
-8324 -2071 -1239 65 1307 244 1041 -818 960 -1870 -1308 -1556 -1000 -1000
-2185 -1117 -1024 -1002 -1883 -2075 72 -636 1904 -18 1072 473 -1776 1960
48 -472 1127 2283 -1057 3613 -3384 752 5575 -2670 13440 -5605 16367 -6914
16313 -7030
30: -4765 -453 3502 574 1146 -787 -562 -627 -1207 -172 1208 422 14 957
-431 -176 -2905 -1738 -257 -25 -3612 -1052 -1131 1077 7868 1735 4972 -806
-8162 -661 10660 -1726 -1497 2563 77 -158 1111 -909 2148 -1521 -2887 -115
-1216 -1509 -279 -918 -1694 -1846 1575 -1645 -185 38 656 662 537 2763 -3657 2254
1537 483 -1371 1915 -887 357 -835 -239 7016 -4174 20824 -9478 20584 -9116
17859 -7952
31: -4037 -459 4908 123 3039 -556 1267 -455 368 -12 332 438 -1625 691 -3348 211
-1530 -929 2893 225 -4267 -1277 -11272 3460 15427 -3101 -2386 -9155 2260 5334
2384 1169 -2646 3752 1233 -1459 2778 1523 532 -355 -2704 -980 -2461 -258
-1168 -465 -4709 -972 6883 2384 -1062 -486 1760 720 4325 -1752 -3096 1310
-2078 1331 -4778 1910 4035 -2336 -2350 1081 4834 -4809 33656 -15590 24122 -11029
17970 -8348
32: -3700 -293 6983 -19 5615 -316 4226 -248 3109 54 1736 354 -1661 474
-6979 249 -3154 162 47825 2583 12000 -2000 -72000 10000 13300 -7819 -7300 -28181
-9000 2000 9000 5000 0 17000 -1000 2000 9421 2789 -2291 190 -5130 21 15000 -3000
-16000 -2000 -9321 5195 33995 6522 326 -4717 11000 -11000 7000 -4000 -2863 1397
-35583 11400 -8875 1804 16321 -7601 -15753 6448 -1145 -4686 54898 -24762
23396 -11131 16559 -8236
33: -3432 85 9566 -34 8688 -154 7833 -97 7225 97 6862 306 6699 437 6965 484
-214 662 22959 1489 -197 -130 -42569 2278 -10653 -8997 -11106 -18666 -8905 -3700
1692 5835 524 12894 880 6497 5224 4249 360 1836 -145 520 7013 -1257 -5776 -154
329 3762 21344 3173 9613 -4220 9929 -8544 3962 -4270 -7800 1308 -25010 6861
-11444 1843 2984 -3349 -6067 434 6685 -7019 35519 -17747 25333 -12871
18689 -9920
34: -3189 620 12367 -14 11829 -61 11305 -19 10921 96 10661 226 10272 319
8870 367 4172 406 7815 377 -6104 -706 -25145 -1826 -17124 -7648 -13786 -11060
-9837 -3779 -3424 3880 -1222 8649 426 7021 2572 5087 1546 3091 1881 1609
4097 509 880 921 4974 2182 13638 1015 10489 -3045 7678 -5395 1489 -3301
-7621 310 -15807 2978 -10447 845 -2528 -2144 -851 -2964 8916 -7787 23029 -13247
22196 -12480 18886 -10904
35: -3007 1251 15149 -1 14752 -25 14266 -9 13699 36 12924 80 11578 84 9000 22
4740 -147 1549 -561 -7622 -1579 -17312 -3110 -16791 -5847 -14449 -6636
-10904 -2659 -6425 2424 -3361 5852 -1038 6107 873 5148 1555 3793 2440 2572
3677 1696 3734 1495 6269 1451 9734 273 8592 -1974 5542 -3268 376 -2391
-5845 -546 -10126 595 -8073 -490 -3286 -2533 1008 -4492 8255 -7812 16163 -10996
18128 -11604 17374 -11160
36: -2896 1928 17800 -7 17375 -34 16719 -55 15754 -79 14310 -124 12097 -223
8768 -404 4287 -714 -650 -1239 -7417 -2088 -13466 -3182 -15005 -4315 -14020 -4104
-11506 -1629 -8199 1669 -5191 4173 -2617 5040 -492 4823 1019 4070 2356 3196
3618 2435 4564 1900 6100 1330 7397 275 6507 -1115 3917 -1971 39 -1793 -4063 -1113
-6539 -852 -5667 -1693 -2533 -3295 1534 -5245 6850 -7679 11997 -9858 14529 -10862
15142 -11072
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.